Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-25 09:08:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and      /work/SRC/openSUSE:Factory/.lollypop.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lollypop"

Thu Oct 25 09:08:59 2018 rev:52 rq:643785 version:0.9.607

Changes:
--------
--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes        2018-10-22 
11:24:49.659066992 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-25 
09:09:04.854406830 +0200
@@ -1,0 +2,9 @@
+Mon Oct 22 18:05:16 UTC 2018 - [email protected]
+
+- Update to version 0.9.607:
+  * Fix playlists creation.
+  * Update translations.
+- Change from version 0.9.606:
+  * Fix a crash in radios.
+
+-------------------------------------------------------------------

Old:
----
  lollypop-0.9.605.tar.xz

New:
----
  lollypop-0.9.607.tar.xz

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

Other differences:
------------------
++++++ lollypop.spec ++++++
--- /var/tmp/diff_new_pack.lMQ5R9/_old  2018-10-25 09:09:05.330406546 +0200
+++ /var/tmp/diff_new_pack.lMQ5R9/_new  2018-10-25 09:09:05.334406543 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:           lollypop
-Version:        0.9.605
+Version:        0.9.607
 Release:        0
 Summary:        GNOME music playing application
 License:        GPL-3.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.lMQ5R9/_old  2018-10-25 09:09:05.358406529 +0200
+++ /var/tmp/diff_new_pack.lMQ5R9/_new  2018-10-25 09:09:05.358406529 +0200
@@ -1,7 +1,7 @@
 <services>
   <service mode="disabled" name="tar_scm">
     <param name="changesgenerate">enable</param>
-    <param name="revision">0.9.605</param>
+    <param name="revision">0.9.607</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.lMQ5R9/_old  2018-10-25 09:09:05.378406517 +0200
+++ /var/tmp/diff_new_pack.lMQ5R9/_new  2018-10-25 09:09:05.378406517 +0200
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://gitlab.gnome.org/World/lollypop.git</param>
-              <param 
name="changesrevision">8de4bde372292177638acb65816683aeffb02c6a</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">4bfcd1f0e7da754750096381b9c255ae8af19cd2</param></service></servicedata>
\ No newline at end of file

++++++ lollypop-0.9.605.tar.xz -> lollypop-0.9.607.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.605/lollypop/playlists.py 
new/lollypop-0.9.607/lollypop/playlists.py
--- old/lollypop-0.9.605/lollypop/playlists.py  2018-10-19 11:22:38.000000000 
+0200
+++ new/lollypop-0.9.607/lollypop/playlists.py  2018-10-21 22:19:13.000000000 
+0200
@@ -44,6 +44,7 @@
     __create_playlists = """CREATE TABLE playlists (
                             id INTEGER PRIMARY KEY,
                             name TEXT NOT NULL,
+                            synced INT NOT NULL DEFAULT 0,
                             mtime BIGINT NOT NULL)"""
 
     __create_tracks = """CREATE TABLE tracks (
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.605/lollypop/widgets_album.py 
new/lollypop-0.9.607/lollypop/widgets_album.py
--- old/lollypop-0.9.605/lollypop/widgets_album.py      2018-10-19 
11:22:38.000000000 +0200
+++ new/lollypop-0.9.607/lollypop/widgets_album.py      2018-10-21 
22:19:13.000000000 +0200
@@ -63,6 +63,13 @@
         self._show_overlay_func(set)
 
     @property
+    def is_populated(self):
+        """
+            True if album populated
+        """
+        return True
+
+    @property
     def filter(self):
         return ""
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.605/lollypop/widgets_album_simple.py 
new/lollypop-0.9.607/lollypop/widgets_album_simple.py
--- old/lollypop-0.9.605/lollypop/widgets_album_simple.py       2018-10-19 
11:22:38.000000000 +0200
+++ new/lollypop-0.9.607/lollypop/widgets_album_simple.py       2018-10-21 
22:19:13.000000000 +0200
@@ -99,13 +99,6 @@
         width = Gtk.FlowBoxChild.do_get_preferred_width(self)[0]
         return (width, width)
 
-    @property
-    def is_populated(self):
-        """
-            True if album populated
-        """
-        return True
-
 #######################
 # PROTECTED           #
 #######################
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.605/meson.build 
new/lollypop-0.9.607/meson.build
--- old/lollypop-0.9.605/meson.build    2018-10-19 11:22:38.000000000 +0200
+++ new/lollypop-0.9.607/meson.build    2018-10-21 22:19:13.000000000 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '0.9.605',
+  version: '0.9.607',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.605/subprojects/po/ca.po 
new/lollypop-0.9.607/subprojects/po/ca.po
--- old/lollypop-0.9.605/subprojects/po/ca.po   2018-10-19 11:22:38.000000000 
+0200
+++ new/lollypop-0.9.607/subprojects/po/ca.po   2018-10-21 22:19:13.000000000 
+0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-10-09 18:44+0200\n"
-"PO-Revision-Date: 2018-09-25 14:22+0000\n"
+"PO-Revision-Date: 2018-10-20 08:24+0000\n"
 "Last-Translator: ferranroig <[email protected]>\n"
 "Language-Team: Catalan <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "ca/>\n"
@@ -22,7 +22,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.2-dev\n"
+"X-Generator: Weblate 3.3-dev\n"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:28
 msgid "Window size"
@@ -200,7 +200,7 @@
 
 #: ../data/org.gnome.Lollypop.gschema.xml:188
 msgid "Disable scrobbling usage"
-msgstr ""
+msgstr "Desactivar l'ús de scrobbling"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:193
 msgid "Handle compilations"
@@ -406,8 +406,9 @@
 msgstr "Compatible amb TuneIn"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:33
+#, fuzzy
 msgid "Fix a crash in artist view"
-msgstr ""
+msgstr "Fixa una fallada dins la vista de l'artista"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:40
 msgid "Fix a freeze in playlists"
@@ -914,7 +915,7 @@
 #: ../data/Shortcuts.ui:170
 msgctxt "shortcut window"
 msgid "Enable/disable scrobbling"
-msgstr ""
+msgstr "Activa/desactiva el scrobbling"
 
 #: ../data/ToolbarEnd.ui:7
 msgid "Party mode"
@@ -958,11 +959,11 @@
 
 #: ../data/ToolbarEnd.ui:53
 msgid "Scrobbling"
-msgstr ""
+msgstr "Scrobbling"
 
 #: ../data/ToolbarEnd.ui:55
 msgid "Enable scrobbling"
-msgstr ""
+msgstr "Activa l'scrobbling"
 
 #: ../data/ToolbarEnd.ui:99
 msgid "Playback type"
@@ -1158,11 +1159,11 @@
 
 #: ../lollypop/pop_search.py:112
 msgid "<big>No results for this search</big>"
-msgstr ""
+msgstr "<big>La cerca no ha donar cap resultat</big>"
 
 #: ../lollypop/pop_search.py:119
 msgid "<big>Search for artists, albums and tracks</big>"
-msgstr ""
+msgstr "<big>Cerca artistes, àlbums i pistes</big>"
 
 #: ../lollypop/pop_tunein.py:92 ../lollypop/pop_tunein.py:401
 msgid "Can't connect to TuneIn…"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.605/subprojects/po/tr.po 
new/lollypop-0.9.607/subprojects/po/tr.po
--- old/lollypop-0.9.605/subprojects/po/tr.po   2018-10-19 11:22:38.000000000 
+0200
+++ new/lollypop-0.9.607/subprojects/po/tr.po   2018-10-21 22:19:13.000000000 
+0200
@@ -12,7 +12,7 @@
 "Project-Id-Version: Turkish (gnumdk)\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-10-09 18:44+0200\n"
-"PO-Revision-Date: 2018-10-07 15:37+0000\n"
+"PO-Revision-Date: 2018-10-20 11:40+0000\n"
 "Last-Translator: Emin Tufan Çetin <[email protected]>\n"
 "Language-Team: Turkish <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "tr/>\n"
@@ -21,7 +21,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.2\n"
+"X-Generator: Weblate 3.3-dev\n"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:28
 msgid "Window size"
@@ -198,7 +198,7 @@
 
 #: ../data/org.gnome.Lollypop.gschema.xml:188
 msgid "Disable scrobbling usage"
-msgstr ""
+msgstr "Skroplama kullanımını devre dışı bırak"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:193
 msgid "Handle compilations"
@@ -402,11 +402,11 @@
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:33
 msgid "Fix a crash in artist view"
-msgstr ""
+msgstr "Sanatçı görünümündeki bir bozulma giderildi"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:40
 msgid "Fix a freeze in playlists"
-msgstr ""
+msgstr "Çalma listesindeki donma giderildi"
 
 #: ../data/org.gnome.Lollypop.desktop.in:4
 msgid "Music Player"
@@ -910,7 +910,7 @@
 #: ../data/Shortcuts.ui:170
 msgctxt "shortcut window"
 msgid "Enable/disable scrobbling"
-msgstr ""
+msgstr "Skroplamayı etkinleştir/devre dışı bırak"
 
 #: ../data/ToolbarEnd.ui:7
 msgid "Party mode"
@@ -954,11 +954,11 @@
 
 #: ../data/ToolbarEnd.ui:53
 msgid "Scrobbling"
-msgstr ""
+msgstr "Skroplama"
 
 #: ../data/ToolbarEnd.ui:55
 msgid "Enable scrobbling"
-msgstr ""
+msgstr "Skroplamayı etkinleştir"
 
 #: ../data/ToolbarEnd.ui:99
 msgid "Playback type"


Reply via email to