Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-07-18 22:55:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and      /work/SRC/openSUSE:Factory/.lollypop.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lollypop"

Wed Jul 18 22:55:17 2018 rev:44 rq:623235 version:0.9.520

Changes:
--------
--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes        2018-07-09 
13:31:40.570450104 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-07-18 
22:55:55.790564954 +0200
@@ -1,0 +2,7 @@
+Mon Jul 16 09:53:25 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.520:
+  * Set menu initial state. Fix gl#World/lollypop#1467.
+  * Same fix for playback action.
+
+-------------------------------------------------------------------

Old:
----
  lollypop-0.9.519.tar.xz

New:
----
  lollypop-0.9.520.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ lollypop.spec ++++++
--- /var/tmp/diff_new_pack.rFbE59/_old  2018-07-18 22:55:56.286563309 +0200
+++ /var/tmp/diff_new_pack.rFbE59/_new  2018-07-18 22:55:56.286563309 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:           lollypop
-Version:        0.9.519
+Version:        0.9.520
 Release:        0
 Summary:        GNOME music playing application
 License:        GPL-3.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.rFbE59/_old  2018-07-18 22:55:56.310563229 +0200
+++ /var/tmp/diff_new_pack.rFbE59/_new  2018-07-18 22:55:56.310563229 +0200
@@ -1,7 +1,7 @@
 <services>
   <service mode="disabled" name="tar_scm">
     <param name="changesgenerate">enable</param>
-    <param name="revision">0.9.519</param>
+    <param name="revision">0.9.520</param>
     <param name="scm">git</param>
     <param name="url">https://gitlab.gnome.org/World/lollypop.git</param>
     <param name="versionformat">@PARENT_TAG@</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.rFbE59/_old  2018-07-18 22:55:56.326563176 +0200
+++ /var/tmp/diff_new_pack.rFbE59/_new  2018-07-18 22:55:56.330563163 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://gitlab.gnome.org/World/lollypop.git</param>
-              <param 
name="changesrevision">321c13a0312c08f3d82cb49eb115d7cf9225b19a</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">b8c9f4b193039226fc54a2b8129b49a320f4f274</param></service></servicedata>
\ No newline at end of file

++++++ lollypop-0.9.519.tar.xz -> lollypop-0.9.520.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.519/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.520/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.519/data/org.gnome.Lollypop.appdata.xml.in 2018-07-09 
06:58:46.000000000 +0200
+++ new/lollypop-0.9.520/data/org.gnome.Lollypop.appdata.xml.in 2018-07-16 
11:27:15.000000000 +0200
@@ -27,18 +27,10 @@
     </ul>
   </description>
   <releases>
-    <release version="0.9.519" date="2018-07-09">
+    <release version="0.9.520" date="2018-07-16">
       <description>
         <ul>
-          <li>Fix a crash in Tunein</li>
-          <li>Add a button for lyrics</li>
-        </ul>
-      </description>
-    </release>
-    <release version="0.9.518" date="2018-07-01">
-      <description>
-        <ul>
-          <li>Restore Next Popover</li>
+          <li>Fix shuffle menu</li>
         </ul>
       </description>
     </release>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.519/lollypop/toolbar_end.py 
new/lollypop-0.9.520/lollypop/toolbar_end.py
--- old/lollypop-0.9.519/lollypop/toolbar_end.py        2018-07-09 
06:58:46.000000000 +0200
+++ new/lollypop-0.9.520/lollypop/toolbar_end.py        2018-07-16 
11:27:15.000000000 +0200
@@ -44,12 +44,14 @@
             "shuffle",
             GLib.VariantType.new("s"),
             GLib.Variant("s", "none"))
+        self.__shuffle_action.set_state(App().settings.get_value("shuffle"))
         self.__shuffle_action.connect("change-state",
                                       self.__on_shuffle_change_state)
         self.__playback_action = Gio.SimpleAction.new_stateful(
             "playback",
             GLib.VariantType.new("s"),
             GLib.Variant("s", "none"))
+        self.__playback_action.set_state(App().settings.get_value("playback"))
         self.__playback_action.connect("change-state",
                                        self.__on_playback_change_state)
         App().add_action(self.__shuffle_action)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.519/meson.build 
new/lollypop-0.9.520/meson.build
--- old/lollypop-0.9.519/meson.build    2018-07-09 06:58:46.000000000 +0200
+++ new/lollypop-0.9.520/meson.build    2018-07-16 11:27:15.000000000 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '0.9.519',
+  version: '0.9.520',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.519/subprojects/po/ca.po 
new/lollypop-0.9.520/subprojects/po/ca.po
--- old/lollypop-0.9.519/subprojects/po/ca.po   2018-07-09 06:58:46.000000000 
+0200
+++ new/lollypop-0.9.520/subprojects/po/ca.po   2018-07-16 11:27:15.000000000 
+0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-29 18:04+0200\n"
-"PO-Revision-Date: 2018-07-05 06:35+0000\n"
+"PO-Revision-Date: 2018-07-14 08:35+0000\n"
 "Last-Translator: ferranroig <for...@ferranroig.com>\n"
 "Language-Team: Catalan <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "ca/>\n"
@@ -439,15 +439,15 @@
 
 #: ../data/Appmenu.ui:7
 msgid "_Update music"
-msgstr "Act_ualitza la música"
+msgstr "Actualitza la _Música"
 
 #: ../data/Appmenu.ui:11
 msgid "_Fullscreen"
-msgstr "_Pantalla completa"
+msgstr "Pantalla _completa"
 
 #: ../data/Appmenu.ui:15
 msgid "_Sidebar"
-msgstr "Barra_Lateral"
+msgstr "Barra _Lateral"
 
 #: ../data/Appmenu.ui:21
 msgid "_Preferences"
@@ -586,7 +586,7 @@
 
 #: ../data/PlaylistView.ui:108
 msgid "Unsplit view"
-msgstr "Vista sense divisor"
+msgstr "Una columna"
 
 #: ../data/PlaylistView.ui:137 ../lollypop/view_playlists.py:208
 msgid "Save playlist"
@@ -1119,11 +1119,11 @@
 
 #: ../lollypop/pop_menu.py:174
 msgid "Remove from \"Not in party\""
-msgstr "Treu de \"No en festa\""
+msgstr "Treu de \"Exclosos en mode festa\""
 
 #: ../lollypop/pop_menu.py:179
 msgid "Add to \"Not in party\""
-msgstr "Afegeix a \"No en festa\""
+msgstr "Afegeix a \"Exclosos en mode festa\""
 
 #: ../lollypop/pop_menu.py:198
 #, python-format
@@ -1151,7 +1151,7 @@
 
 #: ../lollypop/pop_menu.py:357 ../lollypop/widgets_context.py:59
 msgid "Modify information"
-msgstr "Modifica la informació"
+msgstr "Modifica etiquetes"
 
 #: ../lollypop/pop_menu.py:403 ../lollypop/pop_menu.py:426
 msgid "Edit"
@@ -1219,7 +1219,7 @@
 
 #: ../lollypop/selectionlist.py:86
 msgid "Not in party"
-msgstr "No en festa"
+msgstr "Exclosos en mode festa"
 
 #: ../lollypop/selectionlist.py:116
 msgid "Default on startup"
@@ -1231,7 +1231,7 @@
 
 #: ../lollypop/selectionlist.py:141
 msgid "Shown"
-msgstr "Mostrat"
+msgstr "Visibles"
 
 #: ../lollypop/selectionlist.py:530
 msgid "Right click to configure"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.519/subprojects/po/da.po 
new/lollypop-0.9.520/subprojects/po/da.po
--- old/lollypop-0.9.519/subprojects/po/da.po   2018-07-09 06:58:46.000000000 
+0200
+++ new/lollypop-0.9.520/subprojects/po/da.po   2018-07-16 11:27:15.000000000 
+0200
@@ -10,15 +10,16 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-29 18:04+0200\n"
-"PO-Revision-Date: 2017-11-29 00:27+0000\n"
-"Last-Translator: scootergrisen\n"
-"Language-Team: Danish (http://www.transifex.com/gnumdk/lollypop/language/";
-"da/)\n"
+"PO-Revision-Date: 2018-07-14 11:37+0000\n"
+"Last-Translator: Rasmus Sæderup <ragnkin...@gmail.com>\n"
+"Language-Team: Danish <https://hosted.weblate.org/projects/gnumdk/lollypop/";
+"da/>\n"
 "Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.1-dev\n"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:28
 msgid "Window size"
@@ -58,7 +59,7 @@
 
 #: ../data/org.gnome.Lollypop.gschema.xml:63
 msgid "Allow user to donate to the project"
-msgstr ""
+msgstr "Tillad bruger at donere til projektet"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:68
 msgid "Allow using a cover per track"
@@ -94,7 +95,7 @@
 
 #: ../data/org.gnome.Lollypop.gschema.xml:98
 msgid "REMOVE ME LATER"
-msgstr ""
+msgstr "FJERN MIG SENERE"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:103
 msgid "Music URI"
@@ -187,7 +188,7 @@
 
 #: ../data/org.gnome.Lollypop.gschema.xml:178
 msgid "Show sidebar"
-msgstr ""
+msgstr "Vis sidemenu"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:183 ../data/SettingsDialog.ui:165
 #: ../data/SettingsDialog.ui:176
@@ -401,7 +402,7 @@
 
 #: ../data/org.gnome.Lollypop.desktop.in:4
 msgid "Music Player"
-msgstr ""
+msgstr "Musik afspiller"
 
 #: ../data/org.gnome.Lollypop.desktop.in:7
 msgid "org.gnome.Lollypop"
@@ -409,7 +410,7 @@
 
 #: ../data/org.gnome.Lollypop.desktop.in:19
 msgid "Play/Pause"
-msgstr ""
+msgstr "Afspil/Sæt på pause"
 
 #: ../data/org.gnome.Lollypop.desktop.in:23 ../data/ToolbarPlayback.ui:103
 #: ../lollypop/notification.py:39 ../lollypop/toolbar_end.py:240
@@ -460,7 +461,7 @@
 #: ../data/ArtistView.ui:117
 msgctxt "artist context"
 msgid "Add to current playlist"
-msgstr ""
+msgstr "Tilføj til nuværende playliste"
 
 #: ../data/ArtistView.ui:132 ../data/LastfmPopover.ui:60
 msgid "Similar artists"
@@ -566,7 +567,7 @@
 
 #: ../data/PlaylistView.ui:73
 msgid "Edit playlist"
-msgstr ""
+msgstr "Rediger playliste"
 
 #: ../data/PlaylistView.ui:108
 msgid "Unsplit view"
@@ -574,7 +575,7 @@
 
 #: ../data/PlaylistView.ui:137 ../lollypop/view_playlists.py:208
 msgid "Save playlist"
-msgstr ""
+msgstr "Gem playliste"
 
 #: ../data/QueuePopover.ui:37
 msgid "Clear queue"
@@ -623,7 +624,7 @@
 
 #: ../data/SearchPopover.ui:45 ../lollypop/pop_albums.py:43
 msgid "Create a new playlist"
-msgstr ""
+msgstr "Opret en ny playliste"
 
 #: ../data/SettingsDialog.ui:22 ../lollypop/settings.py:109
 #: ../lollypop/settings.py:112
@@ -842,7 +843,7 @@
 #: ../data/Shortcuts.ui:80
 msgctxt "shortcut window"
 msgid "Show lyrics"
-msgstr ""
+msgstr "Vis sangtekst"
 
 #: ../data/Shortcuts.ui:87
 msgctxt "shortcut window"
@@ -1004,7 +1005,7 @@
 
 #: ../lollypop/container.py:895
 msgid "New tracks available"
-msgstr ""
+msgstr "Nye numre tilgængelige"
 
 #: ../lollypop/container.py:896
 msgid "Refresh"
@@ -1113,7 +1114,7 @@
 
 #: ../lollypop/pop_menu.py:300
 msgid "Show lyrics"
-msgstr ""
+msgstr "Vis sangtekst"
 
 #: ../lollypop/pop_menu.py:301
 msgid "Lyrics"
@@ -1139,7 +1140,7 @@
 
 #: ../lollypop/pop_radio.py:87
 msgid "Image"
-msgstr ""
+msgstr "Billede"
 
 #: ../lollypop/pop_tunein.py:92 ../lollypop/pop_tunein.py:399
 msgid "Can't connect to TuneIn…"
@@ -1244,7 +1245,7 @@
 
 #: ../lollypop/toolbar_end.py:236
 msgid "All genres"
-msgstr ""
+msgstr "Alle genrer"
 
 #: ../lollypop/toolbar_end.py:407
 msgid "Playing playlists"
@@ -1285,19 +1286,19 @@
 
 #: ../lollypop/view_lyrics.py:57
 msgid "Loading…"
-msgstr ""
+msgstr "Indlæser…"
 
 #: ../lollypop/view_lyrics.py:220
 msgid "No lyrics found "
-msgstr ""
+msgstr "Der blev ikke fundet nogen sangtekster "
 
 #: ../lollypop/view_playlists.py:211
 msgid "Save"
-msgstr ""
+msgstr "Gem"
 
 #: ../lollypop/view_playlists.py:212
 msgid "Cancel"
-msgstr ""
+msgstr "Annuller"
 
 #: ../lollypop/view_playlists.py:278 ../lollypop/widgets_album_detailed.py:289
 #, python-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.519/subprojects/po/de.po 
new/lollypop-0.9.520/subprojects/po/de.po
--- old/lollypop-0.9.519/subprojects/po/de.po   2018-07-09 06:58:46.000000000 
+0200
+++ new/lollypop-0.9.520/subprojects/po/de.po   2018-07-16 11:27:15.000000000 
+0200
@@ -20,8 +20,8 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-29 18:04+0200\n"
-"PO-Revision-Date: 2018-06-30 16:38+0000\n"
-"Last-Translator: Philipp Wolfer <ph.wol...@gmail.com>\n"
+"PO-Revision-Date: 2018-07-12 12:38+0000\n"
+"Last-Translator: Vincent Bermel <willovi...@openmailbox.org>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "de/>\n"
 "Language: de\n"
@@ -981,7 +981,7 @@
 
 #: ../data/ToolbarEnd.ui:92
 msgid "Playback type"
-msgstr ""
+msgstr "Wiedergabetyp"
 
 #: ../data/TuneinPopover.ui:38
 msgid "Go back"


Reply via email to