commit lollypop for openSUSE:Factory

2020-10-26 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-10-26 16:20:41

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3463 (New)


Package is "lollypop"

Mon Oct 26 16:20:41 2020 rev:139 rq:843878 version:1.4.5

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-10-24 
15:19:08.468329852 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3463/lollypop.changes  
2020-10-26 16:21:47.959199879 +0100
@@ -1,0 +2,7 @@
+Sun Oct 25 09:39:14 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.5:
+  * Fix an issue with command line handler
+(glgo#World/lollypop#2590).
+
+---

Old:

  lollypop-1.4.4.tar.xz

New:

  lollypop-1.4.5.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.GG3kXz/_old  2020-10-26 16:21:49.371201015 +0100
+++ /var/tmp/diff_new_pack.GG3kXz/_new  2020-10-26 16:21:49.371201015 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.4.4
+Version:1.4.5
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.GG3kXz/_old  2020-10-26 16:21:49.403201041 +0100
+++ /var/tmp/diff_new_pack.GG3kXz/_new  2020-10-26 16:21:49.403201041 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.4.4
+1.4.5
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.GG3kXz/_old  2020-10-26 16:21:49.419201054 +0100
+++ /var/tmp/diff_new_pack.GG3kXz/_new  2020-10-26 16:21:49.423201057 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  91d0384e4547b21e48e7f36d5bcdd0c8d933d5ad
\ No newline at end of file
+  3b129c5986af15fc110009a957629c19fab8c09e
\ No newline at end of file

++ lollypop-1.4.4.tar.xz -> lollypop-1.4.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.4/bin/revision.sh 
new/lollypop-1.4.5/bin/revision.sh
--- old/lollypop-1.4.4/bin/revision.sh  2020-10-23 22:36:20.0 +0200
+++ new/lollypop-1.4.5/bin/revision.sh  2020-10-24 21:46:21.0 +0200
@@ -1,8 +1,2 @@
 #!/bin/sh
-VERSION="@VERSION@"
-if [[ $VERSION != "@VERSION@" ]]
-then
-   echo $VERSION
-else
-   git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
-fi
+git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.4.4/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.4.5/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.4.4/data/org.gnome.Lollypop.appdata.xml.in   2020-10-23 
22:36:20.0 +0200
+++ new/lollypop-1.4.5/data/org.gnome.Lollypop.appdata.xml.in   2020-10-24 
21:46:21.0 +0200
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.4/lollypop/application.py 
new/lollypop-1.4.5/lollypop/application.py
--- old/lollypop-1.4.4/lollypop/application.py  2020-10-23 22:36:20.0 
+0200
+++ new/lollypop-1.4.5/lollypop/application.py  2020-10-24 21:46:21.0 
+0200
@@ -24,12 +24,12 @@
 from threading import current_thread
 from pickle import dump
 from signal import signal, SIGINT, SIGTERM
-from urllib.parse import urlparse
 
-from lollypop.utils import init_proxy_from_gnome, emit_signal
+from lollypop.utils import init_proxy_from_gnome
 from lollypop.application_actions import ApplicationActions
-from lollypop.utils_file import get_file_type, install_youtube_dl
-from lollypop.define import LOLLYPOP_DATA_PATH, ScanType, StorageType, FileType
+from lollypop.application_cmdline import ApplicationCmdline
+from lollypop.utils_file import install_youtube_dl
+from lollypop.define import LOLLYPOP_DATA_PATH, StorageType
 from lollypop.database import Database
 from lollypop.player import Player
 from lollypop.inhibitor import Inhibitor
@@ -45,14 +45,12 @@
 from lollypop.database_tracks import TracksDatabase
 from lollypop.notification import NotificationManager
 from lollypop.playlists import Playlists
-from lollypop.objects_track import Track
-from lollypop.objects_album import Album
 from lollypop.helper_task import TaskHelper
 from lollypop.helper_art import ArtHelper
 from lollypop.collection_scanner import CollectionScanner
 
 
-class Application(Gtk.Application, ApplicationActions):
+class Application(Gtk.Application, ApplicationActions, 

commit lollypop for openSUSE:Factory

2020-10-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-10-24 15:18:42

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3463 (New)


Package is "lollypop"

Sat Oct 24 15:18:42 2020 rev:138 rq:843763 version:1.4.4

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-10-23 
12:24:07.112782637 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3463/lollypop.changes  
2020-10-24 15:19:08.468329852 +0200
@@ -1,0 +2,9 @@
+Sat Oct 24 11:00:58 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.4:
+  * Fix an issue with equalizer (glgo#World/lollypop#2588).
+  * Use relative path in .m3u files if possible
+(glgo#World/lollypop#2585).
+  * Fix duration for Last.FM searches.
+
+---

Old:

  lollypop-1.4.3.tar.xz

New:

  lollypop-1.4.4.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.CaFlvr/_old  2020-10-24 15:19:09.008330472 +0200
+++ /var/tmp/diff_new_pack.CaFlvr/_new  2020-10-24 15:19:09.008330472 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.4.3
+Version:1.4.4
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.CaFlvr/_old  2020-10-24 15:19:09.040330509 +0200
+++ /var/tmp/diff_new_pack.CaFlvr/_new  2020-10-24 15:19:09.044330514 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.4.3
+1.4.4
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.CaFlvr/_old  2020-10-24 15:19:09.060330532 +0200
+++ /var/tmp/diff_new_pack.CaFlvr/_new  2020-10-24 15:19:09.064330537 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e1d2d1f95fa0993acd045b53dd22f73d0fa61497
\ No newline at end of file
+  91d0384e4547b21e48e7f36d5bcdd0c8d933d5ad
\ No newline at end of file

++ lollypop-1.4.3.tar.xz -> lollypop-1.4.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.4.3/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.4.4/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.4.3/data/org.gnome.Lollypop.appdata.xml.in   2020-10-22 
13:45:07.0 +0200
+++ new/lollypop-1.4.4/data/org.gnome.Lollypop.appdata.xml.in   2020-10-23 
22:36:20.0 +0200
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.3/lollypop/helper_web_lastfm.py 
new/lollypop-1.4.4/lollypop/helper_web_lastfm.py
--- old/lollypop-1.4.3/lollypop/helper_web_lastfm.py2020-10-22 
13:45:07.0 +0200
+++ new/lollypop-1.4.4/lollypop/helper_web_lastfm.py2020-10-23 
22:36:20.0 +0200
@@ -178,7 +178,7 @@
 lollypop_payload["artists"] = payload["artist"]["name"]
 lollypop_payload["discnumber"] = "1"
 lollypop_payload["tracknumber"] = tracknumber
-lollypop_payload["duration"] = payload["duration"]
+lollypop_payload["duration"] = int(payload["duration"]) * 1000
 return lollypop_payload
 
 ###
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.3/lollypop/player_plugins.py 
new/lollypop-1.4.4/lollypop/player_plugins.py
--- old/lollypop-1.4.3/lollypop/player_plugins.py   2020-10-22 
13:45:07.0 +0200
+++ new/lollypop-1.4.4/lollypop/player_plugins.py   2020-10-23 
22:36:20.0 +0200
@@ -72,7 +72,26 @@
 if App().settings.get_value("equalizer-enabled"):
 self.__equalizer = Gst.ElementFactory.make("equalizer-nbands",
None)
-self.__equalizer.set_property("num-bands", 18)
+# GStreamer's GstIirEqualizerNBands sets up shelve filters for the first and
+# last bands as corner cases. That was causing the "inverted slider" bug.
+# As a workaround, we create two dummy bands at both ends of the spectrum.
+# This causes the actual first and last adjustable bands to be
+# implemented using band-pass filters.
+# Comment from Clementine source code, thanks Clementine devs!
+self.__equalizer.set_property("num-bands", 18 + 2)
+for idx in [0, 19]:
+band = self.__equalizer.get_child_by_index(idx)
+band.set_property("freq", 0)
+band.set_property("bandwidth", 0)
+ 

commit lollypop for openSUSE:Factory

2020-10-23 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-10-23 12:22:38

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3463 (New)


Package is "lollypop"

Fri Oct 23 12:22:38 2020 rev:137 rq:843479 version:1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-10-10 
19:04:56.344501776 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3463/lollypop.changes  
2020-10-23 12:24:07.112782637 +0200
@@ -1,0 +2,6 @@
+Thu Oct 22 17:18:33 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.3:
+  * Bug fixes.
+
+---

Old:

  lollypop-1.4.2.tar.xz

New:

  lollypop-1.4.3.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.staXbZ/_old  2020-10-23 12:24:09.024788120 +0200
+++ /var/tmp/diff_new_pack.staXbZ/_new  2020-10-23 12:24:09.028788132 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.4.2
+Version:1.4.3
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.staXbZ/_old  2020-10-23 12:24:09.060788223 +0200
+++ /var/tmp/diff_new_pack.staXbZ/_new  2020-10-23 12:24:09.060788223 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.4.2
+1.4.3
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.staXbZ/_old  2020-10-23 12:24:09.084788292 +0200
+++ /var/tmp/diff_new_pack.staXbZ/_new  2020-10-23 12:24:09.084788292 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  eac36db4a2b97d553461c1a5d48fda70cda5e6d8
\ No newline at end of file
+  e1d2d1f95fa0993acd045b53dd22f73d0fa61497
\ No newline at end of file

++ lollypop-1.4.2.tar.xz -> lollypop-1.4.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.4.2/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.4.3/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.4.2/data/org.gnome.Lollypop.appdata.xml.in   2020-10-09 
21:46:30.0 +0200
+++ new/lollypop-1.4.3/data/org.gnome.Lollypop.appdata.xml.in   2020-10-22 
13:45:07.0 +0200
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.2/lollypop/application.py 
new/lollypop-1.4.3/lollypop/application.py
--- old/lollypop-1.4.2/lollypop/application.py  2020-10-09 21:46:30.0 
+0200
+++ new/lollypop-1.4.3/lollypop/application.py  2020-10-22 13:45:07.0 
+0200
@@ -12,6 +12,7 @@
 
 import gi
 gi.require_version("Gst", "1.0")
+gi.require_version("Gtk", "3.0")
 gi.require_version("GstAudio", "1.0")
 gi.require_version("GstPbutils", "1.0")
 gi.require_version("TotemPlParser", "1.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.2/lollypop/database_tracks.py 
new/lollypop-1.4.3/lollypop/database_tracks.py
--- old/lollypop-1.4.2/lollypop/database_tracks.py  2020-10-09 
21:46:30.0 +0200
+++ new/lollypop-1.4.3/lollypop/database_tracks.py  2020-10-22 
13:45:07.0 +0200
@@ -634,8 +634,7 @@
 request += make_subrequest("album_artists.artist_id=?",
"OR",
len(artist_ids))
-request += "GROUP BY artists.rowid, tracks.album_id\
-ORDER BY artists.name"
+request += "ORDER BY artists.name"
 result = sql.execute(request, filters)
 return list(itertools.chain(*result))
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.2/lollypop/helper_passwords.py 
new/lollypop-1.4.3/lollypop/helper_passwords.py
--- old/lollypop-1.4.2/lollypop/helper_passwords.py 2020-10-09 
21:46:30.0 +0200
+++ new/lollypop-1.4.3/lollypop/helper_passwords.py 2020-10-22 
13:45:07.0 +0200
@@ -47,7 +47,8 @@
Secret.SchemaFlags.NONE,
SecretSchema)
 items = secret.search_sync(schema, SecretAttributes,
-   Secret.SearchFlags.ALL,
+   Secret.SearchFlags.UNLOCK |
+   Secret.SearchFlags.LOAD_SECRETS,
None)
 if items:
 

commit lollypop for openSUSE:Factory

2020-10-10 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-10-10 19:04:44

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4249 (New)


Package is "lollypop"

Sat Oct 10 19:04:44 2020 rev:136 rq:840486 version:1.4.2

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-10-05 
19:42:47.377766690 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4249/lollypop.changes  
2020-10-10 19:04:56.344501776 +0200
@@ -1,0 +2,7 @@
+Fri Oct 09 20:38:50 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.2:
+  * Bug fixes.
+  * Add information as a view.
+
+---

Old:

  lollypop-1.4.1.tar.xz

New:

  lollypop-1.4.2.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.TnedHl/_old  2020-10-10 19:04:58.504502904 +0200
+++ /var/tmp/diff_new_pack.TnedHl/_new  2020-10-10 19:04:58.508502905 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.4.1
+Version:1.4.2
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.TnedHl/_old  2020-10-10 19:04:58.544502925 +0200
+++ /var/tmp/diff_new_pack.TnedHl/_new  2020-10-10 19:04:58.544502925 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.4.1
+1.4.2
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.TnedHl/_old  2020-10-10 19:04:58.564502935 +0200
+++ /var/tmp/diff_new_pack.TnedHl/_new  2020-10-10 19:04:58.564502935 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  04dccfb37cb175c0ddb356080879f0049b054af7
\ No newline at end of file
+  eac36db4a2b97d553461c1a5d48fda70cda5e6d8
\ No newline at end of file

++ lollypop-1.4.1.tar.xz -> lollypop-1.4.2.tar.xz ++
 4966 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-10-05 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-10-05 19:40:48

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4249 (New)


Package is "lollypop"

Mon Oct  5 19:40:48 2020 rev:135 rq:839415 version:1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-09-24 
16:15:35.124979116 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4249/lollypop.changes  
2020-10-05 19:42:47.377766690 +0200
@@ -1,0 +2,6 @@
+Sun Oct 04 12:51:34 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.1:
+  * Bug fixes.
+
+---

Old:

  lollypop-1.4.0.tar.xz

New:

  lollypop-1.4.1.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.vdX1aU/_old  2020-10-05 19:42:48.021767319 +0200
+++ /var/tmp/diff_new_pack.vdX1aU/_new  2020-10-05 19:42:48.025767323 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.4.0
+Version:1.4.1
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.vdX1aU/_old  2020-10-05 19:42:48.069767366 +0200
+++ /var/tmp/diff_new_pack.vdX1aU/_new  2020-10-05 19:42:48.069767366 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.4.0
+1.4.1
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.vdX1aU/_old  2020-10-05 19:42:48.093767389 +0200
+++ /var/tmp/diff_new_pack.vdX1aU/_new  2020-10-05 19:42:48.097767394 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  1966233073764e8c2ab5807f521851b34e8a3224
+  04dccfb37cb175c0ddb356080879f0049b054af7
\ No newline at end of file

++ lollypop-1.4.0.tar.xz -> lollypop-1.4.1.tar.xz ++
 18131 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-09-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-09-24 16:15:13

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4249 (New)


Package is "lollypop"

Thu Sep 24 16:15:13 2020 rev:134 rq:836384 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-08-29 
20:42:18.633464168 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4249/lollypop.changes  
2020-09-24 16:15:35.124979116 +0200
@@ -1,0 +2,8 @@
+Wed Sep 23 17:03:35 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.0:
+  * New settings dialog.
+  * Move to libhandy.
+  * New artist view.
+
+---

Old:

  lollypop-1.3.6.tar.xz

New:

  lollypop-1.4.0.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.KzFTjB/_old  2020-09-24 16:15:36.192980184 +0200
+++ /var/tmp/diff_new_pack.KzFTjB/_new  2020-09-24 16:15:36.196980187 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.3.6
+Version:1.4.0
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.KzFTjB/_old  2020-09-24 16:15:36.256980248 +0200
+++ /var/tmp/diff_new_pack.KzFTjB/_new  2020-09-24 16:15:36.260980252 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.3.6
+1.4.0
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.KzFTjB/_old  2020-09-24 16:15:36.300980291 +0200
+++ /var/tmp/diff_new_pack.KzFTjB/_new  2020-09-24 16:15:36.304980296 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  93257dd39f10cb0c25ae03e51ee4f6107110fc91
\ No newline at end of file
+  1966233073764e8c2ab5807f521851b34e8a3224

++ lollypop-1.3.6.tar.xz -> lollypop-1.4.0.tar.xz ++
 69861 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-08-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-08-29 20:42:02

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3399 (New)


Package is "lollypop"

Sat Aug 29 20:42:02 2020 rev:133 rq:830346 version:1.3.6

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-08-12 
10:37:29.864321049 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3399/lollypop.changes  
2020-08-29 20:42:18.633464168 +0200
@@ -1,0 +2,15 @@
+Fri Aug 28 18:33:45 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.6:
+  * Bug fixes.
+
+---
+Thu Aug 27 22:00:30 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.5:
+  * Fix wrong lyrics displayed (glgo#World/lollypop#2517).
+  * Fix a crash (glgo#World/lollypop#2516).
+- Update meson dependency version.
+- Add missing dependency on python3-gst.
+
+---

Old:

  lollypop-1.3.4.tar.xz

New:

  lollypop-1.3.6.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.OJvgye/_old  2020-08-29 20:42:19.249464424 +0200
+++ /var/tmp/diff_new_pack.OJvgye/_new  2020-08-29 20:42:19.253464427 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.3.4
+Version:1.3.6
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -27,7 +27,7 @@
 BuildRequires:  desktop-file-utils
 BuildRequires:  intltool
 BuildRequires:  itstool
-BuildRequires:  meson >= 0.41
+BuildRequires:  meson >= 0.46
 BuildRequires:  pkgconfig
 BuildRequires:  python3-devel
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.35.0
@@ -43,6 +43,7 @@
 Requires:   python3-cairo
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
+Requires:   python3-gst
 Recommends: easytag
 Recommends: kid3-cli
 Recommends: youtube-dl
@@ -86,7 +87,7 @@
 
 %prep
 %autosetup -p1
-# Don't use env interpreter so that the rpm dependency detection work
+# Don't use env interpreter so that the rpm dependency detection works
 sed -i 's;/usr/bin/env python3;/usr/bin/python3;' lollypop.in 
search-provider/lollypop-sp.in
 
 %build

++ _service ++
--- /var/tmp/diff_new_pack.OJvgye/_old  2020-08-29 20:42:19.289464441 +0200
+++ /var/tmp/diff_new_pack.OJvgye/_new  2020-08-29 20:42:19.289464441 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.3.4
+1.3.6
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.OJvgye/_old  2020-08-29 20:42:19.309464450 +0200
+++ /var/tmp/diff_new_pack.OJvgye/_new  2020-08-29 20:42:19.309464450 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  ada1da2612a86aa7b43d2a3de1440f951368bff4
\ No newline at end of file
+  93257dd39f10cb0c25ae03e51ee4f6107110fc91
\ No newline at end of file

++ lollypop-1.3.4.tar.xz -> lollypop-1.3.6.tar.xz ++
 77958 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-08-12 10:34:28

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3399 (New)


Package is "lollypop"

Wed Aug 12 10:34:28 2020 rev:132 rq:825548 version:1.3.4

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-07-31 
16:05:34.576725217 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3399/lollypop.changes  
2020-08-12 10:37:29.864321049 +0200
@@ -1,0 +2,10 @@
+Mon Aug 10 18:03:12 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.4:
+  * Fix an issue with disc numbers (glgo#World/lollypop#2510).
+  * Fix party mode not being resumed on lollypop restart
+(glgo#World/lollypop#2512).
+  * Fix an issue which prevented tracks from being played from
+artist view (glgo#World/lollypop#2513).
+
+---

Old:

  lollypop-1.3.3.tar.xz

New:

  lollypop-1.3.4.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.ElXtQS/_old  2020-08-12 10:37:30.476321353 +0200
+++ /var/tmp/diff_new_pack.ElXtQS/_new  2020-08-12 10:37:30.480321355 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.3.3
+Version:1.3.4
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.ElXtQS/_old  2020-08-12 10:37:30.504321367 +0200
+++ /var/tmp/diff_new_pack.ElXtQS/_new  2020-08-12 10:37:30.508321369 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.3.3
+1.3.4
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.ElXtQS/_old  2020-08-12 10:37:30.528321379 +0200
+++ /var/tmp/diff_new_pack.ElXtQS/_new  2020-08-12 10:37:30.528321379 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e618b9f230ff9148e33e4a6b46abf3abf42b9b5b
\ No newline at end of file
+  ada1da2612a86aa7b43d2a3de1440f951368bff4
\ No newline at end of file

++ lollypop-1.3.3.tar.xz -> lollypop-1.3.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.3.3/data/application.css 
new/lollypop-1.3.4/data/application.css
--- old/lollypop-1.3.3/data/application.css 2020-07-30 12:30:11.0 
+0200
+++ new/lollypop-1.3.4/data/application.css 2020-08-10 13:23:07.0 
+0200
@@ -468,10 +468,10 @@
 }
 
 .album-banner {
-border: 1px solid shade(@theme_bg_color, 0.7);
+border: 1px solid shade(@theme_bg_color, 0.9);
 padding: 10px;
 border-radius: 4px;
-background-color: shade(@theme_bg_color, 0.99);
+background-color: shade(@theme_bg_color, 1.1);
 
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.3.3/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.3.4/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.3.3/data/org.gnome.Lollypop.appdata.xml.in   2020-07-30 
12:30:11.0 +0200
+++ new/lollypop-1.3.4/data/org.gnome.Lollypop.appdata.xml.in   2020-08-10 
13:23:07.0 +0200
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.3.3/lollypop/player.py 
new/lollypop-1.3.4/lollypop/player.py
--- old/lollypop-1.3.3/lollypop/player.py   2020-07-30 12:30:11.0 
+0200
+++ new/lollypop-1.3.4/lollypop/player.py   2020-08-10 13:23:07.0 
+0200
@@ -143,10 +143,11 @@
 if self._current_track.uri:
 if albums:
 if was_party:
+# Tips: prevents player from loading albums
+self._is_party = True
 App().lookup_action("party").change_state(
 GLib.Variant("b", True))
-else:
-self.set_albums(albums)
+self.set_albums(albums)
 # Load track from player albums
 index = self.album_ids.index(
 self._current_track.album.id)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.3.3/lollypop/player_shuffle.py 
new/lollypop-1.3.4/lollypop/player_shuffle.py
--- old/lollypop-1.3.3/lollypop/player_shuffle.py   2020-07-30 
12:30:11.0 +0200
+++ new/lollypop-1.3.4/lollypop/player_shuffle.py   2020-08-10 

commit lollypop for openSUSE:Factory

2020-07-31 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-07-31 15:56:16

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3592 (New)


Package is "lollypop"

Fri Jul 31 15:56:16 2020 rev:131 rq:823630 version:1.3.3

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-06-17 
14:54:19.729801189 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3592/lollypop.changes  
2020-07-31 16:05:34.576725217 +0200
@@ -1,0 +2,7 @@
+Thu Jul 30 19:26:31 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.3:
+  * Better cover handling in playlists view.
+  * Bug fixes.
+
+---

Old:

  lollypop-1.3.2.tar.xz

New:

  lollypop-1.3.3.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.2FnEHG/_old  2020-07-31 16:05:39.276728821 +0200
+++ /var/tmp/diff_new_pack.2FnEHG/_new  2020-07-31 16:05:39.276728821 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.3.2
+Version:1.3.3
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.2FnEHG/_old  2020-07-31 16:05:39.324728858 +0200
+++ /var/tmp/diff_new_pack.2FnEHG/_new  2020-07-31 16:05:39.324728858 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.3.2
+1.3.3
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.2FnEHG/_old  2020-07-31 16:05:39.356728882 +0200
+++ /var/tmp/diff_new_pack.2FnEHG/_new  2020-07-31 16:05:39.356728882 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  8916eeefe36d3294a080b9c1bc86792ed9306c0e
\ No newline at end of file
+  e618b9f230ff9148e33e4a6b46abf3abf42b9b5b
\ No newline at end of file

++ lollypop-1.3.2.tar.xz -> lollypop-1.3.3.tar.xz ++
 33376 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-06-17 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-06-17 14:53:22

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3606 (New)


Package is "lollypop"

Wed Jun 17 14:53:22 2020 rev:130 rq:815297 version:1.3.2

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-06-10 
00:54:28.559891672 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3606/lollypop.changes  
2020-06-17 14:54:19.729801189 +0200
@@ -1,0 +2,7 @@
+Tue Jun 16 16:03:13 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.2:
+  * Fix an issue with ListenBrainz.
+  * Fix Last.fm scrobbling (glgo#World/lollypop#2452).
+
+---

Old:

  lollypop-1.3.1.tar.xz

New:

  lollypop-1.3.2.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.qHGNK4/_old  2020-06-17 14:54:20.957805394 +0200
+++ /var/tmp/diff_new_pack.qHGNK4/_new  2020-06-17 14:54:20.957805394 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.3.1
+Version:1.3.2
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.qHGNK4/_old  2020-06-17 14:54:20.985805490 +0200
+++ /var/tmp/diff_new_pack.qHGNK4/_new  2020-06-17 14:54:20.985805490 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.3.1
+1.3.2
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.qHGNK4/_old  2020-06-17 14:54:21.001805545 +0200
+++ /var/tmp/diff_new_pack.qHGNK4/_new  2020-06-17 14:54:21.001805545 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  523bd2fe072689ae7361b01e170915cc0db4064b
\ No newline at end of file
+  8916eeefe36d3294a080b9c1bc86792ed9306c0e
\ No newline at end of file

++ lollypop-1.3.1.tar.xz -> lollypop-1.3.2.tar.xz ++
 2267 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-06-10 00:54:03

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3606 (New)


Package is "lollypop"

Wed Jun 10 00:54:03 2020 rev:129 rq:813034 version:1.3.1

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-05-28 
09:21:49.133485788 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3606/lollypop.changes  
2020-06-10 00:54:28.559891672 +0200
@@ -1,0 +2,9 @@
+Tue Jun 09 18:32:42 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.1:
+  * Fix a crash when playing a radio (glgo#World/lollypop#2459).
+  * Fix an issue with shuffle (glgo#World/lollypop#2453).
+  * Remove reference to meson deprecated python3 module.
+- Replace shebangs which use env interpreter.
+
+---

Old:

  lollypop-1.3.0.tar.xz

New:

  lollypop-1.3.1.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.fWHOHa/_old  2020-06-10 00:54:29.411893876 +0200
+++ /var/tmp/diff_new_pack.fWHOHa/_new  2020-06-10 00:54:29.415893887 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.3.0
+Version:1.3.1
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -86,6 +86,8 @@
 
 %prep
 %autosetup -p1
+# Don't use env interpreter so that the rpm dependency detection work
+sed -i 's;/usr/bin/env python3;/usr/bin/python3;' lollypop.in 
search-provider/lollypop-sp.in
 
 %build
 %meson

++ _service ++
--- /var/tmp/diff_new_pack.fWHOHa/_old  2020-06-10 00:54:29.447893969 +0200
+++ /var/tmp/diff_new_pack.fWHOHa/_new  2020-06-10 00:54:29.451893980 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.3.0
+1.3.1
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.fWHOHa/_old  2020-06-10 00:54:29.475894042 +0200
+++ /var/tmp/diff_new_pack.fWHOHa/_new  2020-06-10 00:54:29.475894042 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e11d7549ed4c99e16e515dd2946714fb2c0e89d8
\ No newline at end of file
+  523bd2fe072689ae7361b01e170915cc0db4064b
\ No newline at end of file

++ lollypop-1.3.0.tar.xz -> lollypop-1.3.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.3.0/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.3.1/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.3.0/data/org.gnome.Lollypop.appdata.xml.in   2020-05-27 
11:14:11.0 +0200
+++ new/lollypop-1.3.1/data/org.gnome.Lollypop.appdata.xml.in   2020-06-09 
17:10:47.0 +0200
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.3.0/lollypop/player_auto_similar.py 
new/lollypop-1.3.1/lollypop/player_auto_similar.py
--- old/lollypop-1.3.0/lollypop/player_auto_similar.py  2020-05-27 
11:14:11.0 +0200
+++ new/lollypop-1.3.1/lollypop/player_auto_similar.py  2020-06-09 
17:10:47.0 +0200
@@ -123,6 +123,17 @@
 albums = tracks_to_albums([Track(track_id) for track_id in track_ids])
 App().player.play_albums(albums)
 
+@property
+def radio_cancellable(self):
+"""
+Get cancellable
+@return Gio.Cancellable
+"""
+return self.__radio_cancellable
+
+###
+# PROTECTED   #
+###
 def _on_stream_start(self, bus, message):
 """
 Cancel radio loading if current not a web track
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.3.0/lollypop/player_shuffle.py 
new/lollypop-1.3.1/lollypop/player_shuffle.py
--- old/lollypop-1.3.0/lollypop/player_shuffle.py   2020-05-27 
11:14:11.0 +0200
+++ new/lollypop-1.3.1/lollypop/player_shuffle.py   2020-06-09 
17:10:47.0 +0200
@@ -194,6 +194,7 @@
 @param settings as Gio.Settings
 @param value as GLib.Variant
 """
+self.__on_playback_setted(self, self.albums)
 if self._current_track.id is not None:
 self.set_next()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.3.0/lollypop/view_albums_list.py 
new/lollypop-1.3.1/lollypop/view_albums_list.py
--- old/lollypop-1.3.0/lollypop/view_albums_list.py 2020-05-27 
11:14:11.0 +0200
+++ 

commit lollypop for openSUSE:Factory

2020-05-28 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-05-28 09:20:28

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3606 (New)


Package is "lollypop"

Thu May 28 09:20:28 2020 rev:128 rq:809680 version:1.3.0

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-04-18 
00:33:54.806485051 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3606/lollypop.changes  
2020-05-28 09:21:49.133485788 +0200
@@ -1,0 +2,9 @@
+Wed May 27 19:05:53 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.3.0:
+  * New search providers.
+  * New "Spotify like" radios.
+  * Removed legacy radio support.
+- Remove pylast from dependencies: Not required anymore.
+
+---

Old:

  lollypop-1.2.35.tar.xz

New:

  lollypop-1.3.0.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.uj9Xu5/_old  2020-05-28 09:21:49.965487623 +0200
+++ /var/tmp/diff_new_pack.uj9Xu5/_new  2020-05-28 09:21:49.965487623 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.35
+Version:1.3.0
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -43,7 +43,6 @@
 Requires:   python3-cairo
 Requires:   python3-gobject
 Requires:   python3-gobject-Gdk
-Requires:   python3-pylast
 Recommends: easytag
 Recommends: kid3-cli
 Recommends: youtube-dl

++ _service ++
--- /var/tmp/diff_new_pack.uj9Xu5/_old  2020-05-28 09:21:49.997487694 +0200
+++ /var/tmp/diff_new_pack.uj9Xu5/_new  2020-05-28 09:21:49.997487694 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.35
+1.3.0
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.uj9Xu5/_old  2020-05-28 09:21:50.017487738 +0200
+++ /var/tmp/diff_new_pack.uj9Xu5/_new  2020-05-28 09:21:50.017487738 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  279742c4ead01d4b66ee42778dca735ca0eb38ad
\ No newline at end of file
+  e11d7549ed4c99e16e515dd2946714fb2c0e89d8
\ No newline at end of file

++ lollypop-1.2.35.tar.xz -> lollypop-1.3.0.tar.xz ++
 87835 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-04-17 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-04-18 00:33:22

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2738 (New)


Package is "lollypop"

Sat Apr 18 00:33:22 2020 rev:127 rq:794984 version:1.2.35

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-04-07 
10:32:38.838602236 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2738/lollypop.changes  
2020-04-18 00:33:54.806485051 +0200
@@ -1,0 +2,11 @@
+Fri Apr 17 19:12:57 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.35:
+  * Fix an issue with smart playlists.
+  * Do not show genres without albums (glgo#World/lollypop#2301).
+  * Fix bug preventing deletion of empty playlist
+(glgo#World/lollypop#2299).
+  * Fix an issue with Ctrl+I filter in album view
+(glgo#World/lollypop#2291).
+
+---

Old:

  lollypop-1.2.34.tar.xz

New:

  lollypop-1.2.35.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.uKX1r6/_old  2020-04-18 00:33:55.666486832 +0200
+++ /var/tmp/diff_new_pack.uKX1r6/_new  2020-04-18 00:33:55.670486840 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.34
+Version:1.2.35
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.uKX1r6/_old  2020-04-18 00:33:55.702486906 +0200
+++ /var/tmp/diff_new_pack.uKX1r6/_new  2020-04-18 00:33:55.706486915 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.34
+1.2.35
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.uKX1r6/_old  2020-04-18 00:33:55.726486956 +0200
+++ /var/tmp/diff_new_pack.uKX1r6/_new  2020-04-18 00:33:55.726486956 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  f838d252985edcbeb4a3161b4163f0d5eb14d486
\ No newline at end of file
+  279742c4ead01d4b66ee42778dca735ca0eb38ad
\ No newline at end of file

++ lollypop-1.2.34.tar.xz -> lollypop-1.2.35.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.34/README.md 
new/lollypop-1.2.35/README.md
--- old/lollypop-1.2.34/README.md   2020-04-06 00:05:08.0 +0200
+++ new/lollypop-1.2.35/README.md   2020-04-17 09:58:08.0 +0200
@@ -43,6 +43,7 @@
 - `python-gobject`
 - `python-sqlite`
 - `python-pylast >= 1.0`
+- `beautifulsoup4`
 
 ## Building from Git
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.34/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.35/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.34/data/org.gnome.Lollypop.appdata.xml.in  2020-04-06 
00:05:08.0 +0200
+++ new/lollypop-1.2.35/data/org.gnome.Lollypop.appdata.xml.in  2020-04-17 
09:58:08.0 +0200
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.34/lollypop/database_genres.py 
new/lollypop-1.2.35/lollypop/database_genres.py
--- old/lollypop-1.2.34/lollypop/database_genres.py 2020-04-06 
00:05:08.0 +0200
+++ new/lollypop-1.2.35/lollypop/database_genres.py 2020-04-17 
09:58:08.0 +0200
@@ -122,13 +122,16 @@
 result = sql.execute("SELECT DISTINCT\
   genres.rowid, genres.name, genres.name\
   FROM genres\
-  WHERE genres.rowid IN (\
-SELECT album_genres.genre_id\
-FROM album_genres, albums\
-WHERE album_genres.album_id=albums.rowid\
-AND albums.mtime!=0)\
+  WHERE EXISTS (\
+SELECT *\
+FROM album_genres, album_artists\
+WHERE album_genres.album_id=\
+album_artists.album_id AND\
+album_artists.artist_id != ? AND\
+album_genres.genre_id=genres.rowid)\
   ORDER BY genres.name\
-  COLLATE NOCASE COLLATE LOCALIZED")
+  COLLATE NOCASE COLLATE LOCALIZED",
+

commit lollypop for openSUSE:Factory

2020-04-07 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-04-07 10:31:44

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3248 (New)


Package is "lollypop"

Tue Apr  7 10:31:44 2020 rev:126 rq:791841 version:1.2.34

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-04-05 
20:55:55.097337973 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3248/lollypop.changes  
2020-04-07 10:32:38.838602236 +0200
@@ -1,0 +2,6 @@
+Mon Apr 06 18:39:43 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.34:
+  * Fix an issue with YouTube cache.
+
+---

Old:

  lollypop-1.2.33.tar.xz

New:

  lollypop-1.2.34.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.SLsZ2v/_old  2020-04-07 10:32:39.434603013 +0200
+++ /var/tmp/diff_new_pack.SLsZ2v/_new  2020-04-07 10:32:39.438603018 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.33
+Version:1.2.34
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.SLsZ2v/_old  2020-04-07 10:32:39.474603065 +0200
+++ /var/tmp/diff_new_pack.SLsZ2v/_new  2020-04-07 10:32:39.474603065 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.33
+1.2.34
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.SLsZ2v/_old  2020-04-07 10:32:39.502603101 +0200
+++ /var/tmp/diff_new_pack.SLsZ2v/_new  2020-04-07 10:32:39.502603101 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  0c216534afd2934e21ba0d5275c8920a0c936abf
\ No newline at end of file
+  f838d252985edcbeb4a3161b4163f0d5eb14d486
\ No newline at end of file

++ lollypop-1.2.33.tar.xz -> lollypop-1.2.34.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.33/lollypop/helper_web.py 
new/lollypop-1.2.34/lollypop/helper_web.py
--- old/lollypop-1.2.33/lollypop/helper_web.py  2020-04-04 16:04:21.0 
+0200
+++ new/lollypop-1.2.34/lollypop/helper_web.py  2020-04-06 00:05:08.0 
+0200
@@ -123,8 +123,6 @@
 @param helper as BaseWebHelper
 @param uri as str
 """
-if uri:
-self.__save_to_cache(uri)
 emit_signal(self, "loaded", uri)
 
 def __on_uri_loaded(self, helper, uri):
@@ -135,5 +133,6 @@
 """
 if uri:
 self.__load_uri_content_with_helper(uri, helper)
+self.__save_to_cache(uri)
 else:
 emit_signal(self, "loaded", "")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.33/meson.build 
new/lollypop-1.2.34/meson.build
--- old/lollypop-1.2.33/meson.build 2020-04-04 16:04:21.0 +0200
+++ new/lollypop-1.2.34/meson.build 2020-04-06 00:05:08.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.2.33',
+  version: '1.2.34',
   meson_version: '>= 0.40.0'
 )
 revision = run_command('bin/revision.sh').stdout().strip()




commit lollypop for openSUSE:Factory

2020-04-05 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-04-05 20:55:47

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3248 (New)


Package is "lollypop"

Sun Apr  5 20:55:47 2020 rev:125 rq:791404 version:1.2.33

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-03-29 
14:26:19.758116953 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3248/lollypop.changes  
2020-04-05 20:55:55.097337973 +0200
@@ -1,0 +2,13 @@
+Sat Apr 04 14:41:41 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.33:
+  - Prevent loosing focus in search view
+(glgo#World/lollypop#2278).
+  - Ignore skipped tracks in smart playlists
+(glgo#World/lollypop#2277).
+  - Fix Vorbis encoding (glgo#World/lollypop#2285).
+  - Some playback list fixes (glgo#World/lollypop#2280). 
+  - Do not add Spotify tracks with no artist
+(glgo#World/lollypop#2282).
+
+---

Old:

  lollypop-1.2.32.tar.xz

New:

  lollypop-1.2.33.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.aWr0rY/_old  2020-04-05 20:55:55.737338660 +0200
+++ /var/tmp/diff_new_pack.aWr0rY/_new  2020-04-05 20:55:55.741338664 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.32
+Version:1.2.33
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.aWr0rY/_old  2020-04-05 20:55:55.777338703 +0200
+++ /var/tmp/diff_new_pack.aWr0rY/_new  2020-04-05 20:55:55.777338703 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.32
+1.2.33
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.aWr0rY/_old  2020-04-05 20:55:55.793338720 +0200
+++ /var/tmp/diff_new_pack.aWr0rY/_new  2020-04-05 20:55:55.793338720 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e266212b5daade3389b2a11ba7df7588a45d41fb
\ No newline at end of file
+  0c216534afd2934e21ba0d5275c8920a0c936abf
\ No newline at end of file

++ lollypop-1.2.32.tar.xz -> lollypop-1.2.33.tar.xz ++
 4062 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-03-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-03-29 14:26:05

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3160 (New)


Package is "lollypop"

Sun Mar 29 14:26:05 2020 rev:124 rq:789160 version:1.2.32

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-03-21 
00:02:23.753132059 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3160/lollypop.changes  
2020-03-29 14:26:19.758116953 +0200
@@ -1,0 +2,13 @@
+Fri Mar 27 23:01:43 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.32:
+  * Fix a crash in TunIn (glgo#World/lollypop#2269).
+  * Fix a crash in settings (glgo#World/lollypop#2276).
+  * Fix some UI nonsense.
+- Changes from version 1.2.31:
+  * Fix an issue with filtering.
+  * Fix an issue with random tracks (glgo#World/lollypop#2259).
+- Changes from version 1.2.30:
+  * Miscellaneous improvements and bug fixes.
+
+---

Old:

  lollypop-1.2.29.tar.xz

New:

  lollypop-1.2.32.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Hvfrvi/_old  2020-03-29 14:26:20.710117440 +0200
+++ /var/tmp/diff_new_pack.Hvfrvi/_new  2020-03-29 14:26:20.710117440 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.29
+Version:1.2.32
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Hvfrvi/_old  2020-03-29 14:26:20.738117454 +0200
+++ /var/tmp/diff_new_pack.Hvfrvi/_new  2020-03-29 14:26:20.738117454 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.29
+1.2.32
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Hvfrvi/_old  2020-03-29 14:26:20.754117462 +0200
+++ /var/tmp/diff_new_pack.Hvfrvi/_new  2020-03-29 14:26:20.754117462 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  78809181909d12d089112d70647292d1b329a7cd
\ No newline at end of file
+  e266212b5daade3389b2a11ba7df7588a45d41fb
\ No newline at end of file

++ lollypop-1.2.29.tar.xz -> lollypop-1.2.32.tar.xz ++
 25251 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-03-20 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-03-20 23:58:13

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3160 (New)


Package is "lollypop"

Fri Mar 20 23:58:13 2020 rev:123 rq:786993 version:1.2.29

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-03-11 
22:04:59.437998122 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3160/lollypop.changes  
2020-03-21 00:02:23.753132059 +0100
@@ -1,0 +2,24 @@
+Fri Mar 20 20:41:41 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.29:
+  * Fix an issue with crossfading (glgo#World/lollypop#2251).
+- Changes from version 1.2.28:
+  * Fix an issue with keyboard shortcuts in search view
+(glgo#World/lollypop#2216).
+
+---
+Fri Mar 20 18:50:20 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.27:
+  * Fix an issue between "Open With" and Dolphin
+(glgo#World/lollypop#2248).
+
+---
+Thu Mar 19 18:36:26 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.26:
+  * Fix a crash on drag and drop (glgo#World/lollypop#2247).
+  * Rework lyrics layout (glgo#World/lollypop#2239).
+  * Fix a crash in About dialog (glgo#World/lollypop#2238).
+
+---

Old:

  lollypop-1.2.25.tar.xz

New:

  lollypop-1.2.29.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.gt6cMG/_old  2020-03-21 00:02:25.025132756 +0100
+++ /var/tmp/diff_new_pack.gt6cMG/_new  2020-03-21 00:02:25.033132760 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.25
+Version:1.2.29
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.gt6cMG/_old  2020-03-21 00:02:25.089132791 +0100
+++ /var/tmp/diff_new_pack.gt6cMG/_new  2020-03-21 00:02:25.093132793 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.25
+1.2.29
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.gt6cMG/_old  2020-03-21 00:02:25.129132813 +0100
+++ /var/tmp/diff_new_pack.gt6cMG/_new  2020-03-21 00:02:25.133132815 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  efa9890e94ed66ba3b447eea8b2b8d7609455511
\ No newline at end of file
+  78809181909d12d089112d70647292d1b329a7cd
\ No newline at end of file

++ lollypop-1.2.25.tar.xz -> lollypop-1.2.29.tar.xz ++
 30249 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-03-11 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-03-11 22:03:56

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3160 (New)


Package is "lollypop"

Wed Mar 11 22:03:56 2020 rev:122 rq:784059 version:1.2.25

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-03-11 
18:54:27.819651201 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3160/lollypop.changes  
2020-03-11 22:04:59.437998122 +0100
@@ -1,0 +2,7 @@
+Wed Mar 11 19:26:28 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.25:
+  * Fix an issue with new "open with" dialog on Ubuntu
+(glgo#World/lollypop#287).
+
+---

Old:

  lollypop-1.2.24.tar.xz

New:

  lollypop-1.2.25.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.9JWXIa/_old  2020-03-11 22:05:00.009998441 +0100
+++ /var/tmp/diff_new_pack.9JWXIa/_new  2020-03-11 22:05:00.013998444 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.24
+Version:1.2.25
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.9JWXIa/_old  2020-03-11 22:05:00.033998455 +0100
+++ /var/tmp/diff_new_pack.9JWXIa/_new  2020-03-11 22:05:00.033998455 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.24
+1.2.25
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.9JWXIa/_old  2020-03-11 22:05:00.045998461 +0100
+++ /var/tmp/diff_new_pack.9JWXIa/_new  2020-03-11 22:05:00.045998461 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  79e24a72303e67836cfb93002ce8ab39bc115556
\ No newline at end of file
+  efa9890e94ed66ba3b447eea8b2b8d7609455511
\ No newline at end of file

++ lollypop-1.2.24.tar.xz -> lollypop-1.2.25.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.24/bin/revision.sh 
new/lollypop-1.2.25/bin/revision.sh
--- old/lollypop-1.2.24/bin/revision.sh 2020-03-10 18:12:40.0 +0100
+++ new/lollypop-1.2.25/bin/revision.sh 2020-03-11 16:25:40.0 +0100
@@ -1,2 +1,8 @@
 #!/bin/sh
-git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+VERSION="@VERSION@"
+if [[ $VERSION != "@VERSION@" ]]
+then
+   echo $VERSION
+else
+   git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.24/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.25/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.24/data/org.gnome.Lollypop.appdata.xml.in  2020-03-10 
18:12:40.0 +0100
+++ new/lollypop-1.2.25/data/org.gnome.Lollypop.appdata.xml.in  2020-03-11 
16:25:40.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.24/lollypop/dialog_apps.py 
new/lollypop-1.2.25/lollypop/dialog_apps.py
--- old/lollypop-1.2.24/lollypop/dialog_apps.py 2020-03-10 18:12:40.0 
+0100
+++ new/lollypop-1.2.25/lollypop/dialog_apps.py 2020-03-11 16:25:40.0 
+0100
@@ -63,7 +63,7 @@
 @param f as Gio.File
 """
 Gtk.Dialog.__init__(self)
-self.__executable = None
+self.__commandline = None
 self.__open_with = {}
 self.set_size_request(300, 300)
 self.set_transient_for(App().window)
@@ -116,12 +116,12 @@
 Logger.error("AppsDialog::__init__(): %s", e)
 
 @property
-def executable(self):
+def commandline(self):
 """
-Get current executable for dialog
+Get current commandline for dialog
 @return str/None
 """
-return self.__executable
+return self.__commandline
 
 ###
 # PRIVATE #
@@ -149,7 +149,7 @@
 @param row_b as AppListBoxRow
 @return bool
 """
-if row_b.app.get_executable() == self.__last_app:
+if row_b.app.get_commandline() == self.__last_app:
 return True
 return False
 
@@ -161,19 +161,19 @@
 @param content_type as str
 """
 if response_id == Gtk.ResponseType.OK:
-if dialog.executable is not None:
-self.__open_with[content_type] = dialog.executable
+if dialog.commandline is not None:
+

commit lollypop for openSUSE:Factory

2020-03-11 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-03-11 18:50:58

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.3160 (New)


Package is "lollypop"

Wed Mar 11 18:50:58 2020 rev:121 rq:783529 version:1.2.24

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-02-24 
15:52:45.411518683 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.3160/lollypop.changes  
2020-03-11 18:54:27.819651201 +0100
@@ -1,0 +2,7 @@
+Tue Mar 10 19:28:50 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.24:
+  * Faster search.
+  * Code refactoring.
+
+---

Old:

  lollypop-1.2.23.tar.xz

New:

  lollypop-1.2.24.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.qTZRxB/_old  2020-03-11 18:54:28.279651406 +0100
+++ /var/tmp/diff_new_pack.qTZRxB/_new  2020-03-11 18:54:28.279651406 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.23
+Version:1.2.24
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.qTZRxB/_old  2020-03-11 18:54:28.303651417 +0100
+++ /var/tmp/diff_new_pack.qTZRxB/_new  2020-03-11 18:54:28.303651417 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.23
+1.2.24
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.qTZRxB/_old  2020-03-11 18:54:28.319651424 +0100
+++ /var/tmp/diff_new_pack.qTZRxB/_new  2020-03-11 18:54:28.323651426 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  81d8132b2f6889f153b862b1d57d257e4436a5f9
\ No newline at end of file
+  79e24a72303e67836cfb93002ce8ab39bc115556
\ No newline at end of file

++ lollypop-1.2.23.tar.xz -> lollypop-1.2.24.tar.xz ++
 38359 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-02-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-02-24 15:51:56

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26092 (New)


Package is "lollypop"

Mon Feb 24 15:51:56 2020 rev:120 rq:778451 version:1.2.23

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-02-14 
16:39:52.459669332 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26092/lollypop.changes 
2020-02-24 15:52:45.411518683 +0100
@@ -1,0 +2,9 @@
+Sat Feb 22 19:41:14 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.23:
+  * Fix an issue with "Stop after" (glgo#World/lollypop#2200).
+  * Smarter "random" for albums (glgo#World/lollypop#2202).
+  * Fix issues with track duration (glgo#World/lollypop#2204,
+glgo#World/lollypop#2205).
+
+---

Old:

  lollypop-1.2.22.tar.xz

New:

  lollypop-1.2.23.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.j2xCGA/_old  2020-02-24 15:52:46.647521436 +0100
+++ /var/tmp/diff_new_pack.j2xCGA/_new  2020-02-24 15:52:46.651521444 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.22
+Version:1.2.23
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.j2xCGA/_old  2020-02-24 15:52:46.671521489 +0100
+++ /var/tmp/diff_new_pack.j2xCGA/_new  2020-02-24 15:52:46.671521489 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.22
+1.2.23
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.j2xCGA/_old  2020-02-24 15:52:46.691521534 +0100
+++ /var/tmp/diff_new_pack.j2xCGA/_new  2020-02-24 15:52:46.691521534 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  976ac12e724aea8c2d7aa83e4da2a795269ce814
\ No newline at end of file
+  81d8132b2f6889f153b862b1d57d257e4436a5f9
\ No newline at end of file

++ lollypop-1.2.22.tar.xz -> lollypop-1.2.23.tar.xz ++
 2576 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-02-14 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-02-14 16:39:49

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26092 (New)


Package is "lollypop"

Fri Feb 14 16:39:49 2020 rev:119 rq:774235 version:1.2.22

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-02-11 
22:25:49.171581186 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26092/lollypop.changes 
2020-02-14 16:39:52.459669332 +0100
@@ -1,0 +2,8 @@
+Thu Feb 13 19:58:57 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.22:
+  * Fix a crash in track menu (glgo#World/lollypop#2197).
+  * Fix timestamp reading (glgo#World/lollypop#2183,
+glgo#World/lollypop#2195).
+
+---

Old:

  lollypop-1.2.21.tar.xz

New:

  lollypop-1.2.22.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.A8iRuN/_old  2020-02-14 16:39:53.879670123 +0100
+++ /var/tmp/diff_new_pack.A8iRuN/_new  2020-02-14 16:39:53.883670125 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.21
+Version:1.2.22
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.A8iRuN/_old  2020-02-14 16:39:53.911670141 +0100
+++ /var/tmp/diff_new_pack.A8iRuN/_new  2020-02-14 16:39:53.911670141 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.21
+1.2.22
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.A8iRuN/_old  2020-02-14 16:39:53.927670150 +0100
+++ /var/tmp/diff_new_pack.A8iRuN/_new  2020-02-14 16:39:53.927670150 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  85b3fd61b30af0d97d71904e909417a712f2bfab
\ No newline at end of file
+  976ac12e724aea8c2d7aa83e4da2a795269ce814
\ No newline at end of file

++ lollypop-1.2.21.tar.xz -> lollypop-1.2.22.tar.xz ++
 3565 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-02-11 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-02-11 22:24:50

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26092 (New)


Package is "lollypop"

Tue Feb 11 22:24:50 2020 rev:118 rq:773312 version:1.2.21

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2020-01-22 
23:23:55.325702320 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26092/lollypop.changes 
2020-02-11 22:25:49.171581186 +0100
@@ -1,0 +2,15 @@
+Mon Feb 10 21:09:21 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.21:
+  * Convert DB duration to milliseconds.
+  * Reworks settings.
+  * Fix volume rate sync using Gsettings
+(glgo#World/lollypop#2194).
+  * Add a way to go to artist view from album banner
+(glgo#World/lollypop#2192).
+  * Fix flowbox alignment (glgo#World/lollypop#2193).
+  * Fix loved track from LastFM (glgo#World/lollypop#2189).
+  * Improve handling of skipped tracks (glgo#World/lollypop#2188).
+  * Sort albums released in same year (glgo#World/lollypop#2183).
+
+---

Old:

  lollypop-1.2.20.tar.xz

New:

  lollypop-1.2.21.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.wbWBeQ/_old  2020-02-11 22:25:49.939581607 +0100
+++ /var/tmp/diff_new_pack.wbWBeQ/_new  2020-02-11 22:25:49.943581609 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.20
+Version:1.2.21
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.wbWBeQ/_old  2020-02-11 22:25:49.971581625 +0100
+++ /var/tmp/diff_new_pack.wbWBeQ/_new  2020-02-11 22:25:49.971581625 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.20
+1.2.21
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.wbWBeQ/_old  2020-02-11 22:25:49.987581633 +0100
+++ /var/tmp/diff_new_pack.wbWBeQ/_new  2020-02-11 22:25:49.991581636 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  cd3f0c90045831a4f29c63da48d63ff0e714d602
\ No newline at end of file
+  85b3fd61b30af0d97d71904e909417a712f2bfab
\ No newline at end of file

++ lollypop-1.2.20.tar.xz -> lollypop-1.2.21.tar.xz ++
 41636 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2020-01-22 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2020-01-22 23:23:52

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26092 (New)


Package is "lollypop"

Wed Jan 22 23:23:52 2020 rev:117 rq:766409 version:1.2.20

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-12-29 
15:49:54.631182064 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26092/lollypop.changes 
2020-01-22 23:23:55.325702320 +0100
@@ -1,0 +2,7 @@
+Wed Jan 22 19:28:29 UTC 2020 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.20:
+  * New search view.
+  * Bug fixes.
+
+---

Old:

  lollypop-1.2.19.tar.xz

New:

  lollypop-1.2.20.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.VcoN5L/_old  2020-01-22 23:23:56.573702950 +0100
+++ /var/tmp/diff_new_pack.VcoN5L/_new  2020-01-22 23:23:56.585702956 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lollypop
 #
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.19
+Version:1.2.20
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.VcoN5L/_old  2020-01-22 23:23:56.633702980 +0100
+++ /var/tmp/diff_new_pack.VcoN5L/_new  2020-01-22 23:23:56.637702982 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.19
+1.2.20
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.VcoN5L/_old  2020-01-22 23:23:56.685703006 +0100
+++ /var/tmp/diff_new_pack.VcoN5L/_new  2020-01-22 23:23:56.689703008 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  cdb7cd3904bc2ae42d5a498aae8ba8fe1c33e82a
\ No newline at end of file
+  cd3f0c90045831a4f29c63da48d63ff0e714d602
\ No newline at end of file

++ lollypop-1.2.19.tar.xz -> lollypop-1.2.20.tar.xz ++
 36593 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-12-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-12-29 15:49:42

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.6675 (New)


Package is "lollypop"

Sun Dec 29 15:49:42 2019 rev:116 rq:759802 version:1.2.19

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-12-28 
13:40:59.702947379 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.6675/lollypop.changes  
2019-12-29 15:49:54.631182064 +0100
@@ -1,0 +2,6 @@
+Sat Dec 28 18:05:29 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.19:
+  * Fix an issue with party mode.
+
+---

Old:

  lollypop-1.2.18.tar.xz

New:

  lollypop-1.2.19.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.1oRKCv/_old  2019-12-29 15:49:56.027182700 +0100
+++ /var/tmp/diff_new_pack.1oRKCv/_new  2019-12-29 15:49:56.051182711 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.18
+Version:1.2.19
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.1oRKCv/_old  2019-12-29 15:49:56.079182724 +0100
+++ /var/tmp/diff_new_pack.1oRKCv/_new  2019-12-29 15:49:56.079182724 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.18
+1.2.19
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.1oRKCv/_old  2019-12-29 15:49:56.099182733 +0100
+++ /var/tmp/diff_new_pack.1oRKCv/_new  2019-12-29 15:49:56.099182733 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  084f016738c1e4d7cc51bfec326cc0d2cd9751d1
\ No newline at end of file
+  cdb7cd3904bc2ae42d5a498aae8ba8fe1c33e82a
\ No newline at end of file

++ lollypop-1.2.18.tar.xz -> lollypop-1.2.19.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.18/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.19/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.18/data/org.gnome.Lollypop.appdata.xml.in  2019-12-26 
23:45:10.0 +0100
+++ new/lollypop-1.2.19/data/org.gnome.Lollypop.appdata.xml.in  2019-12-28 
16:56:15.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.18/lollypop/toolbar_end.py 
new/lollypop-1.2.19/lollypop/toolbar_end.py
--- old/lollypop-1.2.18/lollypop/toolbar_end.py 2019-12-26 23:45:10.0 
+0100
+++ new/lollypop-1.2.19/lollypop/toolbar_end.py 2019-12-28 16:56:15.0 
+0100
@@ -232,7 +232,7 @@
 App().add_action(action)
 item = Gio.MenuItem.new(_("All genres"), "app.all_party_ids")
 self.__party_submenu.append_item(item)
-genres = App().artists.get()
+genres = App().genres.get()
 genres.append((Type.WEB, _("Web"), _("Web")))
 for (genre_id, name, sortname) in genres:
 in_party_ids = not party_ids or genre_id in party_ids
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.18/meson.build 
new/lollypop-1.2.19/meson.build
--- old/lollypop-1.2.18/meson.build 2019-12-26 23:45:10.0 +0100
+++ new/lollypop-1.2.19/meson.build 2019-12-28 16:56:15.0 +0100
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.2.18',
+  version: '1.2.19',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-12-28 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-12-28 13:40:49

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.6675 (New)


Package is "lollypop"

Sat Dec 28 13:40:49 2019 rev:115 rq:759772 version:1.2.18

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-27 
13:55:52.984285870 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.6675/lollypop.changes  
2019-12-28 13:40:59.702947379 +0100
@@ -1,0 +2,12 @@
+Sat Dec 28 09:38:20 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.18:
+  * Fix artists and albums appearing multiple times
+(glgo#World/lollypop#2155).
+- Changes from version 1.2.17:
+  * Fix an issue with album view (glgo#World/lollypop#2156).
+  * Fix a crash (glgo#World/lollypop#2150).
+  * Make "Playback options" menu faster (glgo#World/lollypop#2141).
+  * Fix a crash when editing tags (glgo#World/lollypop#2133).
+
+---

Old:

  lollypop-1.2.16.tar.xz

New:

  lollypop-1.2.18.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.n6C03U/_old  2019-12-28 13:41:00.790947928 +0100
+++ /var/tmp/diff_new_pack.n6C03U/_new  2019-12-28 13:41:00.802947934 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.16
+Version:1.2.18
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.n6C03U/_old  2019-12-28 13:41:00.862947965 +0100
+++ /var/tmp/diff_new_pack.n6C03U/_new  2019-12-28 13:41:00.866947966 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.16
+1.2.18
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.n6C03U/_old  2019-12-28 13:41:00.890947978 +0100
+++ /var/tmp/diff_new_pack.n6C03U/_new  2019-12-28 13:41:00.894947980 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  39beeb8b3f4d16fbb00ffd440d314e8bba315d7c
\ No newline at end of file
+  084f016738c1e4d7cc51bfec326cc0d2cd9751d1
\ No newline at end of file

++ lollypop-1.2.16.tar.xz -> lollypop-1.2.18.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.16/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.18/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.16/data/org.gnome.Lollypop.appdata.xml.in  2019-11-26 
12:51:41.0 +0100
+++ new/lollypop-1.2.18/data/org.gnome.Lollypop.appdata.xml.in  2019-12-26 
23:45:10.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.16/lollypop/art_album.py 
new/lollypop-1.2.18/lollypop/art_album.py
--- old/lollypop-1.2.16/lollypop/art_album.py   2019-11-26 12:51:41.0 
+0100
+++ new/lollypop-1.2.18/lollypop/art_album.py   2019-12-26 23:45:10.0 
+0100
@@ -486,10 +486,9 @@
 files = []
 for track in album.tracks:
 App().tracks.set_mtime(track.id, int(time()) + 10)
-filename = GLib.filename_from_uri(track.uri)[0]
-if filename is not None:
-files.append(filename)
-
+f = Gio.File.new_for_uri(track.uri)
+if f.query_exists():
+files.append(f.get_path())
 worked = False
 cover = "%s/lollypop_cover_tags.jpg" % CACHE_PATH
 arguments = [["kid3-cli", "-c", "set picture:'%s' ''" % cover],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.16/lollypop/collectionscanner.py 
new/lollypop-1.2.18/lollypop/collectionscanner.py
--- old/lollypop-1.2.16/lollypop/collectionscanner.py   2019-11-26 
12:51:41.0 +0100
+++ new/lollypop-1.2.18/lollypop/collectionscanner.py   2019-12-26 
23:45:10.0 +0100
@@ -23,7 +23,6 @@
 from gettext import gettext as _
 from time import time
 import json
-from multiprocessing import cpu_count
 
 from lollypop.inotify import Inotify
 from lollypop.define import App, ScanType, Type, StorageType, ScanUpdate
@@ -32,7 +31,7 @@
 from lollypop.logger import Logger
 from lollypop.database_history import History
 from lollypop.utils import is_audio, is_pls, get_mtime, profile, create_dir
-from lollypop.utils import split_list, emit_signal
+from lollypop.utils import emit_signal
 
 
 SCAN_QUERY_INFO = "{},{},{},{},{},{}".format(
@@ -66,7 +65,6 @@
 self.__history = History()
 

commit lollypop for openSUSE:Factory

2019-11-27 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-27 13:55:29

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26869 (New)


Package is "lollypop"

Wed Nov 27 13:55:29 2019 rev:114 rq:751140 version:1.2.16

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-25 
11:25:14.462095674 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26869/lollypop.changes 
2019-11-27 13:55:52.984285870 +0100
@@ -1,0 +2,7 @@
+Tue Nov 26 19:22:19 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.16:
+  * Fix a crash (glgo#World/lollypop#2106).
+  * Handle radios in lyrics view (glgo#World/lollypop#2131).
+
+---

Old:

  lollypop-1.2.15.tar.xz

New:

  lollypop-1.2.16.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.dkzKeH/_old  2019-11-27 13:55:53.724285558 +0100
+++ /var/tmp/diff_new_pack.dkzKeH/_new  2019-11-27 13:55:53.728285556 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.15
+Version:1.2.16
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.dkzKeH/_old  2019-11-27 13:55:53.760285543 +0100
+++ /var/tmp/diff_new_pack.dkzKeH/_new  2019-11-27 13:55:53.760285543 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.15
+1.2.16
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.dkzKeH/_old  2019-11-27 13:55:53.780285534 +0100
+++ /var/tmp/diff_new_pack.dkzKeH/_new  2019-11-27 13:55:53.780285534 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  4d3387cbbd786937a43fd217d6abde3b059cd5a8
\ No newline at end of file
+  39beeb8b3f4d16fbb00ffd440d314e8bba315d7c
\ No newline at end of file

++ lollypop-1.2.15.tar.xz -> lollypop-1.2.16.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.15/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.16/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.15/data/org.gnome.Lollypop.appdata.xml.in  2019-11-24 
13:10:53.0 +0100
+++ new/lollypop-1.2.16/data/org.gnome.Lollypop.appdata.xml.in  2019-11-26 
12:51:41.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.15/lollypop/objects_radio.py 
new/lollypop-1.2.16/lollypop/objects_radio.py
--- old/lollypop-1.2.15/lollypop/objects_radio.py   2019-11-24 
13:10:53.0 +0100
+++ new/lollypop-1.2.16/lollypop/objects_radio.py   2019-11-26 
12:51:41.0 +0100
@@ -28,6 +28,7 @@
 """
 self.id = radio.id
 self.name = radio.name
+self.storage_type = StorageType.COLLECTION
 self.artists = [_("Radio")]
 self.artist_ids = [Type.RADIOS]
 self.year = None
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.15/lollypop/view_lyrics.py 
new/lollypop-1.2.16/lollypop/view_lyrics.py
--- old/lollypop-1.2.15/lollypop/view_lyrics.py 2019-11-24 13:10:53.0 
+0100
+++ new/lollypop-1.2.16/lollypop/view_lyrics.py 2019-11-26 12:51:41.0 
+0100
@@ -18,6 +18,7 @@
 from lollypop.define import App, ViewType, AdaptiveSize
 from lollypop.define import StorageType
 from lollypop.logger import Logger
+from lollypop.objects_track import Track
 from lollypop.helper_lyrics import LyricsHelper
 from lollypop.helper_signals import SignalsHelper, signals_map
 from lollypop.widgets_banner_lyrics import LyricsBannerWidget
@@ -118,36 +119,37 @@
 if track.id is None:
 return
 self.__lyrics_label.set_text(_("Loading…"))
-self.__lyrics_helper.load(track)
-# First check synced lyrics
-if self.__lyrics_helper.available:
-if self.__lyrics_timeout_id is None:
-self.__lyrics_timeout_id = GLib.timeout_add(
-500, self.__show_sync_lyrics)
-return
-else:
-lyrics = ""
-if self.__lyrics_timeout_id is not None:
-GLib.source_remove(self.__lyrics_timeout_id)
-self.__lyrics_timeout_id = None
-if track.storage_type & StorageType.COLLECTION:
-from lollypop.tagreader import TagReader, Discoverer
-tagreader = TagReader()
-discoverer 

commit lollypop for openSUSE:Factory

2019-11-25 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-25 11:24:57

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26869 (New)


Package is "lollypop"

Mon Nov 25 11:24:57 2019 rev:113 rq:750530 version:1.2.15

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-17 
19:24:08.130841043 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26869/lollypop.changes 
2019-11-25 11:25:14.462095674 +0100
@@ -1,0 +2,8 @@
+Sun Nov 24 12:17:13 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.15:
+  * Fix crash in lyrics view (glgo#World/lollypop#2130).
+- Changes from version 1.2.14:
+  * Bug fixes.
+
+---

Old:

  lollypop-1.2.13.tar.xz

New:

  lollypop-1.2.15.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.XEk4Rh/_old  2019-11-25 11:25:15.806095434 +0100
+++ /var/tmp/diff_new_pack.XEk4Rh/_new  2019-11-25 11:25:15.806095434 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lollypop
 #
-# Copyright (c) 2019 SUSE LLC.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.13
+Version:1.2.15
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.XEk4Rh/_old  2019-11-25 11:25:15.830095429 +0100
+++ /var/tmp/diff_new_pack.XEk4Rh/_new  2019-11-25 11:25:15.830095429 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.13
+1.2.15
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.XEk4Rh/_old  2019-11-25 11:25:15.842095428 +0100
+++ /var/tmp/diff_new_pack.XEk4Rh/_new  2019-11-25 11:25:15.846095427 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  6b280daf339b1eb121ebecb6438f4ce4b3371d82
\ No newline at end of file
+  4d3387cbbd786937a43fd217d6abde3b059cd5a8
\ No newline at end of file

++ lollypop-1.2.13.tar.xz -> lollypop-1.2.15.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.13/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.15/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.13/data/org.gnome.Lollypop.appdata.xml.in  2019-11-17 
17:08:47.0 +0100
+++ new/lollypop-1.2.15/data/org.gnome.Lollypop.appdata.xml.in  2019-11-24 
13:10:53.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.13/lollypop/player_shuffle.py 
new/lollypop-1.2.15/lollypop/player_shuffle.py
--- old/lollypop-1.2.13/lollypop/player_shuffle.py  2019-11-17 
17:08:47.0 +0100
+++ new/lollypop-1.2.15/lollypop/player_shuffle.py  2019-11-24 
13:10:53.0 +0100
@@ -56,6 +56,8 @@
 track = self.__history.next.value
 elif self._albums:
 track = self.__get_next()
+else:
+track = Track()
 return track
 
 def prev(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.13/lollypop/widgets_banner_albums.py 
new/lollypop-1.2.15/lollypop/widgets_banner_albums.py
--- old/lollypop-1.2.13/lollypop/widgets_banner_albums.py   2019-11-17 
17:08:47.0 +0100
+++ new/lollypop-1.2.15/lollypop/widgets_banner_albums.py   2019-11-24 
13:10:53.0 +0100
@@ -82,6 +82,14 @@
 self.__title_label.set_markup("%s" %
   GLib.markup_escape_text(title_str))
 
+def update_for_width(self, width):
+"""
+Update banner internals for width, call this before showing banner
+@param width as int
+"""
+BannerWidget.update_for_width(self, width)
+self.__set_internal_size()
+
 @property
 def height(self):
 """
@@ -99,19 +107,25 @@
 @param allocation as Gtk.Allocation
 """
 if BannerWidget._handle_width_allocate(self, allocation):
-title_context = self.__title_label.get_style_context()
-for c in title_context.list_classes():
-title_context.remove_class(c)
-if self.width <= Size.MEDIUM:
-self.__title_label.get_style_context().add_class(
- 

commit lollypop for openSUSE:Factory

2019-11-17 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-17 19:24:04

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.26869 (New)


Package is "lollypop"

Sun Nov 17 19:24:04 2019 rev:112 rq:749130 version:1.2.13

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-11 
21:36:51.356569078 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.26869/lollypop.changes 
2019-11-17 19:24:08.130841043 +0100
@@ -1,0 +2,9 @@
+Sun Nov 17 16:29:13 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.13:
+  * Use a smaller welcome image (glgo#World/lollypop#2125).
+  * Fix lollypop not closing properly when launched with
+lollypop-sp (glgo#World/lollypop#2120).
+  * Fix a crash (glgo#World/lollypop#2124).
+
+---

Old:

  lollypop-1.2.12.tar.xz

New:

  lollypop-1.2.13.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.GGO1kQ/_old  2019-11-17 19:24:08.750840780 +0100
+++ /var/tmp/diff_new_pack.GGO1kQ/_new  2019-11-17 19:24:08.754840778 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lollypop
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,12 +17,12 @@
 
 
 Name:   lollypop
-Version:1.2.12
+Version:1.2.13
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
 Group:  Productivity/Multimedia/Sound/Players
-Url:https://wiki.gnome.org/Apps/Lollypop
+URL:https://wiki.gnome.org/Apps/Lollypop
 Source0:%{name}-%{version}.tar.xz
 BuildRequires:  desktop-file-utils
 BuildRequires:  intltool

++ _service ++
--- /var/tmp/diff_new_pack.GGO1kQ/_old  2019-11-17 19:24:08.770840771 +0100
+++ /var/tmp/diff_new_pack.GGO1kQ/_new  2019-11-17 19:24:08.774840769 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.12
+1.2.13
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.GGO1kQ/_old  2019-11-17 19:24:08.786840765 +0100
+++ /var/tmp/diff_new_pack.GGO1kQ/_new  2019-11-17 19:24:08.786840765 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  75f59f8e99c18dbe9ecc4fff6f41e397ade68aff
\ No newline at end of file
+  6b280daf339b1eb121ebecb6438f4ce4b3371d82
\ No newline at end of file

++ lollypop-1.2.12.tar.xz -> lollypop-1.2.13.tar.xz ++
 2248 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-11-11 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-11 21:36:46

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Mon Nov 11 21:36:46 2019 rev:111 rq:747368 version:1.2.12

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-10 
22:54:15.982619742 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-11-11 21:36:51.356569078 +0100
@@ -1,0 +2,10 @@
+Mon Nov 11 14:31:07 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.12:
+  * Fix a crash in album banner (glgo#World/lollypop#2117).
+- Changes from version 1.2.11:
+  * Fix banners when artwork is empty.
+- Changes from version 1.2.10:
+  * Fix a regression in lazy loading.
+
+---

Old:

  lollypop-1.2.9.tar.xz

New:

  lollypop-1.2.12.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.moyRGJ/_old  2019-11-11 21:36:54.280571977 +0100
+++ /var/tmp/diff_new_pack.moyRGJ/_new  2019-11-11 21:36:54.308572005 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.9
+Version:1.2.12
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.moyRGJ/_old  2019-11-11 21:36:54.440572135 +0100
+++ /var/tmp/diff_new_pack.moyRGJ/_new  2019-11-11 21:36:54.444572140 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.9
+1.2.12
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.moyRGJ/_old  2019-11-11 21:36:54.476572171 +0100
+++ /var/tmp/diff_new_pack.moyRGJ/_new  2019-11-11 21:36:54.476572171 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  b3952c52b5a4c0a61a5d9c2aca5f32af957f2193
\ No newline at end of file
+  75f59f8e99c18dbe9ecc4fff6f41e397ade68aff
\ No newline at end of file

++ lollypop-1.2.9.tar.xz -> lollypop-1.2.12.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.9/data/AlbumBannerWidget.ui 
new/lollypop-1.2.12/data/AlbumBannerWidget.ui
--- old/lollypop-1.2.9/data/AlbumBannerWidget.ui2019-11-10 
15:30:27.0 +0100
+++ new/lollypop-1.2.12/data/AlbumBannerWidget.ui   2019-11-11 
15:11:06.0 +0100
@@ -31,6 +31,7 @@
   
 True
 False
+end
 15
 
   
@@ -179,6 +180,7 @@
   
 True
 False
+start
 15
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.9/data/application.css 
new/lollypop-1.2.12/data/application.css
--- old/lollypop-1.2.9/data/application.css 2019-11-10 15:30:27.0 
+0100
+++ new/lollypop-1.2.12/data/application.css2019-11-11 15:11:06.0 
+0100
@@ -189,7 +189,7 @@
 }
 
 .text-xx-large {
-font-size: 40px;
+font-size: xx-large;
 }
 
 .text-x-large {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.9/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.12/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.9/data/org.gnome.Lollypop.appdata.xml.in   2019-11-10 
15:30:27.0 +0100
+++ new/lollypop-1.2.12/data/org.gnome.Lollypop.appdata.xml.in  2019-11-11 
15:11:06.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.9/lollypop/container_views.py 
new/lollypop-1.2.12/lollypop/container_views.py
--- old/lollypop-1.2.9/lollypop/container_views.py  2019-11-10 
15:30:27.0 +0100
+++ new/lollypop-1.2.12/lollypop/container_views.py 2019-11-11 
15:11:06.0 +0100
@@ -317,7 +317,7 @@
 """
 from lollypop.view_album import AlbumView
 view_type = ViewType.TWO_COLUMNS | ViewType.SCROLLED |\
-ViewType.OVERLAY
+ViewType.OVERLAY | ViewType.ALBUM
 view = AlbumView(album, view_type)
 view.populate()
 return view
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.9/lollypop/view_album.py 
new/lollypop-1.2.12/lollypop/view_album.py
--- old/lollypop-1.2.9/lollypop/view_album.py   2019-11-10 15:30:27.0 
+0100
+++ new/lollypop-1.2.12/lollypop/view_album.py  2019-11-11 15:11:06.0 
+0100
@@ -40,7 

commit lollypop for openSUSE:Factory

2019-11-10 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-10 22:54:14

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Sun Nov 10 22:54:14 2019 rev:110 rq:747227 version:1.2.9

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-07 
23:19:36.204734408 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-11-10 22:54:15.982619742 +0100
@@ -1,0 +2,13 @@
+Sun Nov 10 15:20:16 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.9:
+  * Update translations and AppData.
+- Update to version 1.2.8:
+  * Fix a playback order issue (glgo#World/lollypop#2114).
+  * Rework search view bottom buttons (glgo#World/lollypop#2094).
+  * Fix search through lists, such as the genre or artist lists
+(glgo#World/lollypop#2103).
+  * Rework sizing for phones (glgo#World/lollypop#2113).
+  * Fix some memory leaks.
+
+---

Old:

  lollypop-1.2.7.tar.xz

New:

  lollypop-1.2.9.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.hvtipm/_old  2019-11-10 22:54:17.126622159 +0100
+++ /var/tmp/diff_new_pack.hvtipm/_new  2019-11-10 22:54:17.130622167 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.7
+Version:1.2.9
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.hvtipm/_old  2019-11-10 22:54:17.150622210 +0100
+++ /var/tmp/diff_new_pack.hvtipm/_new  2019-11-10 22:54:17.150622210 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.7
+1.2.9
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.hvtipm/_old  2019-11-10 22:54:17.190622294 +0100
+++ /var/tmp/diff_new_pack.hvtipm/_new  2019-11-10 22:54:17.194622303 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  d049754a0afbcf6a093c6af1019bd1e8c995cb92
\ No newline at end of file
+  b3952c52b5a4c0a61a5d9c2aca5f32af957f2193
\ No newline at end of file

++ lollypop-1.2.7.tar.xz -> lollypop-1.2.9.tar.xz ++
 18727 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-11-07 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-07 23:19:19

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Thu Nov  7 23:19:19 2019 rev:109 rq:746082 version:1.2.7

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-06 
14:36:05.358671313 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-11-07 23:19:36.204734408 +0100
@@ -1,0 +2,9 @@
+Wed Nov 06 18:04:24 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.7:
+  * Fix a crash when adding a new playlist
+(glgo#World/lollypop#2112).
+  * Limit navigation items kept in memory to 4 views in order to
+try to reduce memory usage (glgo#World/lollypop#2111).
+
+---

Old:

  lollypop-1.2.6.tar.xz

New:

  lollypop-1.2.7.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.5O44xM/_old  2019-11-07 23:19:37.696736008 +0100
+++ /var/tmp/diff_new_pack.5O44xM/_new  2019-11-07 23:19:37.700736012 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.6
+Version:1.2.7
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.5O44xM/_old  2019-11-07 23:19:37.720736034 +0100
+++ /var/tmp/diff_new_pack.5O44xM/_new  2019-11-07 23:19:37.720736034 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.6
+1.2.7
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.5O44xM/_old  2019-11-07 23:19:37.736736051 +0100
+++ /var/tmp/diff_new_pack.5O44xM/_new  2019-11-07 23:19:37.736736051 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  96a81423423aaa8cf673ed84e16cd6485adb962e
\ No newline at end of file
+  d049754a0afbcf6a093c6af1019bd1e8c995cb92
\ No newline at end of file

++ lollypop-1.2.6.tar.xz -> lollypop-1.2.7.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.6/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.7/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.6/data/org.gnome.Lollypop.appdata.xml.in   2019-11-05 
09:21:50.0 +0100
+++ new/lollypop-1.2.7/data/org.gnome.Lollypop.appdata.xml.in   2019-11-06 
15:53:50.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.6/lollypop/adaptive.py 
new/lollypop-1.2.7/lollypop/adaptive.py
--- old/lollypop-1.2.6/lollypop/adaptive.py 2019-11-05 09:21:50.0 
+0100
+++ new/lollypop-1.2.7/lollypop/adaptive.py 2019-11-06 15:53:50.0 
+0100
@@ -87,7 +87,7 @@
 Offload old items and reload them on the fly
 """
 
-__MAX_HISTORY_ITEMS = 10
+__MAX_HISTORY_ITEMS = 4
 
 def __init__(self):
 """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.6/lollypop/view_playlists_manager.py 
new/lollypop-1.2.7/lollypop/view_playlists_manager.py
--- old/lollypop-1.2.6/lollypop/view_playlists_manager.py   2019-11-05 
09:21:50.0 +0100
+++ new/lollypop-1.2.7/lollypop/view_playlists_manager.py   2019-11-06 
15:53:50.0 +0100
@@ -59,14 +59,6 @@
 
 App().task_helper.run(load, callback=(on_load,))
 
-def add_value(self, item):
-"""
-Override FlowBox method to be compatible with SelectionList
-Needed by SelectionListMenu
-@param item as (int, str, str)
-"""
-FlowBoxView.add_value(self, item[0])
-
 @property
 def args(self):
 """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.6/meson.build 
new/lollypop-1.2.7/meson.build
--- old/lollypop-1.2.6/meson.build  2019-11-05 09:21:50.0 +0100
+++ new/lollypop-1.2.7/meson.build  2019-11-06 15:53:50.0 +0100
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.2.6',
+  version: '1.2.7',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.6/subprojects/po/it.po 
new/lollypop-1.2.7/subprojects/po/it.po
--- old/lollypop-1.2.6/subprojects/po/it.po 2019-11-05 09:21:50.0 
+0100
+++ new/lollypop-1.2.7/subprojects/po/it.po 2019-11-06 

commit lollypop for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-06 14:36:00

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Wed Nov  6 14:36:00 2019 rev:108 rq:745553 version:1.2.6

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-04 
17:15:53.324868943 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-11-06 14:36:05.358671313 +0100
@@ -1,0 +2,7 @@
+Tue Nov 05 18:24:18 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.6:
+  * Make ReplayGain option visible (glgo#World/lollypop#2105).
+  * Bug fixes.
+
+---

Old:

  lollypop-1.2.5.tar.xz

New:

  lollypop-1.2.6.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.QUDAzC/_old  2019-11-06 14:36:05.894671890 +0100
+++ /var/tmp/diff_new_pack.QUDAzC/_new  2019-11-06 14:36:05.902671899 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.5
+Version:1.2.6
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.QUDAzC/_old  2019-11-06 14:36:05.930671929 +0100
+++ /var/tmp/diff_new_pack.QUDAzC/_new  2019-11-06 14:36:05.930671929 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.5
+1.2.6
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.QUDAzC/_old  2019-11-06 14:36:05.946671946 +0100
+++ /var/tmp/diff_new_pack.QUDAzC/_new  2019-11-06 14:36:05.946671946 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  6f6c2ae124b055283c8b8fb6215385c4b025d446
\ No newline at end of file
+  96a81423423aaa8cf673ed84e16cd6485adb962e
\ No newline at end of file

++ lollypop-1.2.5.tar.xz -> lollypop-1.2.6.tar.xz ++
 25106 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-11-04 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-04 17:15:37

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Mon Nov  4 17:15:37 2019 rev:107 rq:745033 version:1.2.5

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-11-03 
12:16:18.740925503 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-11-04 17:15:53.324868943 +0100
@@ -1,0 +2,7 @@
+Sat Nov 02 21:09:26 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.5:
+  * Fix a crash when selecting a song from a playlist
+(glgo#World/lollypop#2106).
+
+---

Old:

  lollypop-1.2.4.tar.xz

New:

  lollypop-1.2.5.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.l3dT2A/_old  2019-11-04 17:15:54.108869780 +0100
+++ /var/tmp/diff_new_pack.l3dT2A/_new  2019-11-04 17:15:54.112869785 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.4
+Version:1.2.5
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.l3dT2A/_old  2019-11-04 17:15:54.144869819 +0100
+++ /var/tmp/diff_new_pack.l3dT2A/_new  2019-11-04 17:15:54.148869823 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.4
+1.2.5
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.l3dT2A/_old  2019-11-04 17:15:54.168869845 +0100
+++ /var/tmp/diff_new_pack.l3dT2A/_new  2019-11-04 17:15:54.168869845 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  eebbd079235de8fdd37a6c64b50f2eed83dde537
\ No newline at end of file
+  6f6c2ae124b055283c8b8fb6215385c4b025d446
\ No newline at end of file

++ lollypop-1.2.4.tar.xz -> lollypop-1.2.5.tar.xz ++
 13294 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-11-03 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-11-03 12:16:17

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Sun Nov  3 12:16:17 2019 rev:106 rq:744774 version:1.2.4

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-10-31 
22:23:16.512156588 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-11-03 12:16:18.740925503 +0100
@@ -1,0 +2,11 @@
+Fri Nov 01 15:18:51 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.4:
+  * Fix network unavailable message in lyrics view
+(glgo#World/lollypop#2100).
+  * Fix a crash when updating music database after moving files
+(glgo#World/lollypop#2102).
+  * Fix a crash upon drag and drop (glgo#World/lollypop#2101).
+  * Don't display empty discs (glgo#World/lollypop#2099).
+
+---

Old:

  lollypop-1.2.3.tar.xz

New:

  lollypop-1.2.4.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.SCn83t/_old  2019-11-03 12:16:20.500927673 +0100
+++ /var/tmp/diff_new_pack.SCn83t/_new  2019-11-03 12:16:20.548927732 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.3
+Version:1.2.4
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.SCn83t/_old  2019-11-03 12:16:20.748927979 +0100
+++ /var/tmp/diff_new_pack.SCn83t/_new  2019-11-03 12:16:20.760927993 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.3
+1.2.4
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.SCn83t/_old  2019-11-03 12:16:20.844928097 +0100
+++ /var/tmp/diff_new_pack.SCn83t/_new  2019-11-03 12:16:20.868928126 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  aea8d9b47c87ce8432806cbb0864da1e7fa39db8
\ No newline at end of file
+  eebbd079235de8fdd37a6c64b50f2eed83dde537
\ No newline at end of file

++ lollypop-1.2.3.tar.xz -> lollypop-1.2.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.3/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.4/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.3/data/org.gnome.Lollypop.appdata.xml.in   2019-10-30 
18:50:37.0 +0100
+++ new/lollypop-1.2.4/data/org.gnome.Lollypop.appdata.xml.in   2019-11-01 
15:43:12.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.3/lollypop/database_albums.py 
new/lollypop-1.2.4/lollypop/database_albums.py
--- old/lollypop-1.2.3/lollypop/database_albums.py  2019-10-30 
18:50:37.0 +0100
+++ new/lollypop-1.2.4/lollypop/database_albums.py  2019-11-01 
15:43:12.0 +0100
@@ -752,28 +752,18 @@
 result = sql.execute(request, filters)
 return list(itertools.chain(*result))
 
-def get_discs(self, album_id, genre_ids):
+def get_discs(self, album_id):
 """
 Get disc numbers
 @param album_id as int
-@param genre_ids as [int]
 @return [disc as int]
 """
-genre_ids = remove_static(genre_ids)
 with SqlCursor(App().db) as sql:
-filters = (album_id,)
-filters += tuple(genre_ids)
 request = "SELECT DISTINCT discnumber\
-   FROM tracks, track_genres\
+   FROM tracks\
WHERE tracks.album_id=?\
-   AND track_genres.track_id = tracks.rowid"
-if genre_ids:
-request += " AND ("
-for genre_id in genre_ids:
-request += "track_genres.genre_id=? OR "
-request += "1=0)"
-request += " ORDER BY discnumber"
-result = sql.execute(request, filters)
+   ORDER BY discnumber"
+result = sql.execute(request, (album_id,))
 return list(itertools.chain(*result))
 
 def get_track_uris(self, album_id):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.3/lollypop/helper_dnd.py 
new/lollypop-1.2.4/lollypop/helper_dnd.py
--- old/lollypop-1.2.3/lollypop/helper_dnd.py   2019-10-30 18:50:37.0 
+0100
+++ new/lollypop-1.2.4/lollypop/helper_dnd.py   2019-11-01 

commit lollypop for openSUSE:Factory

2019-10-31 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-10-31 22:23:14

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Thu Oct 31 22:23:14 2019 rev:105 rq:744299 version:1.2.3

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-10-27 
13:41:44.177319247 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-10-31 22:23:16.512156588 +0100
@@ -1,0 +2,13 @@
+Wed Oct 30 18:03:16 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.3:
+  * Improve style of playback time (glgo#World/lollypop#2079).
+  * Fix a crash when adding a playlist section
+(glgo#World/lollypop#2080).
+  * Fix several crashes in artist view (glgo#World/lollypop#2084,
+glgo#World/lollypop#2095).
+  * Fix minor issues in radio view (glgo#World/lollypop#2089).
+  * Fix an issue with automatic playback
+(glgo#World/lollypop#2092).
+
+---

Old:

  lollypop-1.2.2.tar.xz

New:

  lollypop-1.2.3.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.p6YVRq/_old  2019-10-31 22:23:17.816158345 +0100
+++ /var/tmp/diff_new_pack.p6YVRq/_new  2019-10-31 22:23:17.832158366 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.2
+Version:1.2.3
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.p6YVRq/_old  2019-10-31 22:23:17.920158485 +0100
+++ /var/tmp/diff_new_pack.p6YVRq/_new  2019-10-31 22:23:17.924158490 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.2
+1.2.3
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.p6YVRq/_old  2019-10-31 22:23:18.036158641 +0100
+++ /var/tmp/diff_new_pack.p6YVRq/_new  2019-10-31 22:23:18.036158641 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e537b9953e4e992519fd4306d978037aff797a09
\ No newline at end of file
+  aea8d9b47c87ce8432806cbb0864da1e7fa39db8
\ No newline at end of file

++ lollypop-1.2.2.tar.xz -> lollypop-1.2.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.2/data/TuneinPopover.ui 
new/lollypop-1.2.3/data/TuneinPopover.ui
--- old/lollypop-1.2.2/data/TuneinPopover.ui2019-10-25 22:05:36.0 
+0200
+++ new/lollypop-1.2.3/data/TuneinPopover.ui2019-10-30 18:50:37.0 
+0100
@@ -25,7 +25,7 @@
 True
 Go back
 start
-start
+center
 5
 1
 3
@@ -57,6 +57,7 @@
 True
 Go home
 start
+center
 1
 3
 True
@@ -73,6 +74,9 @@
   
 True
 True
+center
+5
+5
 edit-find-symbolic
 False
 False
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.2.2/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.2.3/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.2.2/data/org.gnome.Lollypop.appdata.xml.in   2019-10-25 
22:05:36.0 +0200
+++ new/lollypop-1.2.3/data/org.gnome.Lollypop.appdata.xml.in   2019-10-30 
18:50:37.0 +0100
@@ -17,7 +17,7 @@
 
   
   
-
+
   
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.2/lollypop/menu_edit.py 
new/lollypop-1.2.3/lollypop/menu_edit.py
--- old/lollypop-1.2.2/lollypop/menu_edit.py2019-10-25 22:05:36.0 
+0200
+++ new/lollypop-1.2.3/lollypop/menu_edit.py2019-10-30 18:50:37.0 
+0100
@@ -181,4 +181,4 @@
 "MenuPopover::__on_edit_tag_action_activate(): %s", e)
 if not worked:
 App().notify.send("Lollypop",
-  _("Please install Easytag or Kid3"))
+  _("Please install EasyTAG or Kid3"))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.2.2/lollypop/player_albums.py 
new/lollypop-1.2.3/lollypop/player_albums.py
--- old/lollypop-1.2.2/lollypop/player_albums.py2019-10-25 
22:05:36.0 +0200
+++ new/lollypop-1.2.3/lollypop/player_albums.py2019-10-30 
18:50:37.0 +0100
@@ -17,7 +17,7 @@
 from lollypop.logger import Logger
 from lollypop.objects_track import Track
 from lollypop.objects_album import Album
-from lollypop.define 

commit lollypop for openSUSE:Factory

2019-10-27 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-10-27 13:41:30

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2990 (New)


Package is "lollypop"

Sun Oct 27 13:41:30 2019 rev:104 rq:743081 version:1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-10-23 
15:51:45.946753978 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2990/lollypop.changes  
2019-10-27 13:41:44.177319247 +0100
@@ -1,0 +2,8 @@
+Sat Oct 26 06:49:50 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.2:
+  * Support popularity in smart playlists.
+  * Add "Little played albums" section (glgo#World/lollypop#2071).
+  * Bug fixes.
+
+---

Old:

  lollypop-1.2.1.tar.xz

New:

  lollypop-1.2.2.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.9DeMpL/_old  2019-10-27 13:41:45.969321408 +0100
+++ /var/tmp/diff_new_pack.9DeMpL/_new  2019-10-27 13:41:45.973321413 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.1
+Version:1.2.2
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.9DeMpL/_old  2019-10-27 13:41:46.009321456 +0100
+++ /var/tmp/diff_new_pack.9DeMpL/_new  2019-10-27 13:41:46.017321466 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.1
+1.2.2
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.9DeMpL/_old  2019-10-27 13:41:46.041321495 +0100
+++ /var/tmp/diff_new_pack.9DeMpL/_new  2019-10-27 13:41:46.041321495 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  f9ccd4c6c53afe39dc6b03e11085c20119784eac
\ No newline at end of file
+  e537b9953e4e992519fd4306d978037aff797a09
\ No newline at end of file

++ lollypop-1.2.1.tar.xz -> lollypop-1.2.2.tar.xz ++
 11311 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-10-23 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-10-23 15:51:41

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2352 (New)


Package is "lollypop"

Wed Oct 23 15:51:41 2019 rev:103 rq:741935 version:1.2.1

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-10-22 
15:45:16.481705025 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2352/lollypop.changes  
2019-10-23 15:51:45.946753978 +0200
@@ -1,0 +2,8 @@
+Tue Oct 22 20:54:38 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.1:
+  * Bugfixes.
+  * Allows to show album tracks in artist view (like in previous
+releases).
+
+---

Old:

  lollypop-1.2.0.tar.xz

New:

  lollypop-1.2.1.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.vl3oOI/_old  2019-10-23 15:51:46.954755068 +0200
+++ /var/tmp/diff_new_pack.vl3oOI/_new  2019-10-23 15:51:46.958755072 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.2.0
+Version:1.2.1
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.vl3oOI/_old  2019-10-23 15:51:46.986755102 +0200
+++ /var/tmp/diff_new_pack.vl3oOI/_new  2019-10-23 15:51:46.986755102 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.2.0
+1.2.1
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.vl3oOI/_old  2019-10-23 15:51:47.002755119 +0200
+++ /var/tmp/diff_new_pack.vl3oOI/_new  2019-10-23 15:51:47.002755119 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  1e80fbd9762860c824501eef0f5efc869594ac0e
\ No newline at end of file
+  f9ccd4c6c53afe39dc6b03e11085c20119784eac
\ No newline at end of file

++ lollypop-1.2.0.tar.xz -> lollypop-1.2.1.tar.xz ++
 21957 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-10-22 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-10-22 15:45:13

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2352 (New)


Package is "lollypop"

Tue Oct 22 15:45:13 2019 rev:102 rq:741618 version:1.2.0

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-10-21 
12:31:31.424173114 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2352/lollypop.changes  
2019-10-22 15:45:16.481705025 +0200
@@ -1,0 +2,11 @@
+Mon Oct 21 19:11:17 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.2.0:
+  * New sidebar.
+  * New banners.
+  * Better web tracks support.
+  * New suggestion view.
+- Update build dependencies according to meson.build.
+- Add man page to list of installed files.
+
+---

Old:

  lollypop-1.1.4.16.tar.xz

New:

  lollypop-1.2.0.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.csDk9w/_old  2019-10-22 15:45:17.229705877 +0200
+++ /var/tmp/diff_new_pack.csDk9w/_new  2019-10-22 15:45:17.241705891 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.16
+Version:1.2.0
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -30,8 +30,10 @@
 BuildRequires:  meson >= 0.41
 BuildRequires:  pkgconfig
 BuildRequires:  python3-devel
-BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.35.9
-BuildRequires:  pkgconfig(gtk+-3.0) >= 3.20
+BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.35.0
+BuildRequires:  pkgconfig(gtk+-3.0) >= 3.22
+BuildRequires:  pkgconfig(libsoup-2.4)
+BuildRequires:  pkgconfig(pygobject-3.0) >= 3.29.1
 # Can't migrate to GDBus, the server-side support is not implemented yet:
 # https://bugzilla.gnome.org/show_bug.cgi?id=656330
 Requires:   dbus-1-python3
@@ -73,7 +75,7 @@
 Group:  Productivity/Multimedia/Sound/Players
 Requires:   %{name} = %{version}
 Requires:   gnome-shell
-Supplements:packageand(%{name}:gnome-shell)
+Supplements:(%{name} and gnome-shell)
 
 %description -n gnome-shell-search-provider-lollypop
 Lollypop is a GNOME music playing application.
@@ -107,6 +109,7 @@
 %{_datadir}/applications/org.gnome.Lollypop.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.Lollypop.gschema.xml
 %{_datadir}/icons/hicolor/*/apps/org.gnome.Lollypop*
+%{_mandir}/man1/lollypop.1%{?ext_man}
 %{python3_sitelib}/lollypop/
 
 %files -n gnome-shell-search-provider-%{name}

++ _service ++
--- /var/tmp/diff_new_pack.csDk9w/_old  2019-10-22 15:45:17.321705982 +0200
+++ /var/tmp/diff_new_pack.csDk9w/_new  2019-10-22 15:45:17.321705982 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.16
+1.2.0
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.csDk9w/_old  2019-10-22 15:45:17.353706019 +0200
+++ /var/tmp/diff_new_pack.csDk9w/_new  2019-10-22 15:45:17.353706019 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  5bd7fc5beb24879957947fba0e61db048a27f885
\ No newline at end of file
+  1e80fbd9762860c824501eef0f5efc869594ac0e
\ No newline at end of file

++ lollypop-1.1.4.16.tar.xz -> lollypop-1.2.0.tar.xz ++
 154384 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-10-21 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-10-21 12:31:23

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.2352 (New)


Package is "lollypop"

Mon Oct 21 12:31:23 2019 rev:101 rq:741349 version:1.1.4.16

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-09-05 
12:34:56.207566049 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.2352/lollypop.changes  
2019-10-21 12:31:31.424173114 +0200
@@ -1,0 +2,5 @@
+Sun Oct 20 19:30:59 UTC 2019 - Bjørn Lie 
+
+- Add missing runtime Requires: python3-gobject-Gdk.
+
+---



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.gRZO1q/_old  2019-10-21 12:31:32.716174578 +0200
+++ /var/tmp/diff_new_pack.gRZO1q/_new  2019-10-21 12:31:32.720174583 +0200
@@ -40,6 +40,7 @@
 Requires:   python3-beautifulsoup4
 Requires:   python3-cairo
 Requires:   python3-gobject
+Requires:   python3-gobject-Gdk
 Requires:   python3-pylast
 Recommends: easytag
 Recommends: kid3-cli




commit lollypop for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-09-05 12:34:52

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.7948 (New)


Package is "lollypop"

Thu Sep  5 12:34:52 2019 rev:100 rq:728052 version:1.1.4.16

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-08-24 
18:47:28.301751127 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.7948/lollypop.changes  
2019-09-05 12:34:56.207566049 +0200
@@ -1,0 +2,6 @@
+Tue Sep 03 16:14:19 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.16:
+  * Do not crash if sidebar is disabled (glgo#World/lollypop#1987).
+
+---

Old:

  lollypop-1.1.4.15.tar.xz

New:

  lollypop-1.1.4.16.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.q6Y5TI/_old  2019-09-05 12:34:56.799565933 +0200
+++ /var/tmp/diff_new_pack.q6Y5TI/_new  2019-09-05 12:34:56.803565932 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.15
+Version:1.1.4.16
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.q6Y5TI/_old  2019-09-05 12:34:56.823565928 +0200
+++ /var/tmp/diff_new_pack.q6Y5TI/_new  2019-09-05 12:34:56.823565928 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.15
+1.1.4.16
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.q6Y5TI/_old  2019-09-05 12:34:56.839565925 +0200
+++ /var/tmp/diff_new_pack.q6Y5TI/_new  2019-09-05 12:34:56.839565925 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  47dcc4c5f5460a4062a5d9013feb75d77336816f
\ No newline at end of file
+  5bd7fc5beb24879957947fba0e61db048a27f885
\ No newline at end of file

++ lollypop-1.1.4.15.tar.xz -> lollypop-1.1.4.16.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.1.4.15/lollypop/widgets_settings_collections.py 
new/lollypop-1.1.4.16/lollypop/widgets_settings_collections.py
--- old/lollypop-1.1.4.15/lollypop/widgets_settings_collections.py  
2019-08-23 18:24:46.0 +0200
+++ new/lollypop-1.1.4.16/lollypop/widgets_settings_collections.py  
2019-09-03 17:56:13.0 +0200
@@ -234,7 +234,8 @@
 App().player.stop()
 App().db.drop_db()
 App().db = Database()
-App().window.container.list_two.hide()
+if App().window.container.list_two is not None:
+App().window.container.list_two.hide()
 App().window.container.stack.destroy_children()
 App().window.container.update_list_one()
 App().scanner.update(ScanType.FULL)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.15/meson.build 
new/lollypop-1.1.4.16/meson.build
--- old/lollypop-1.1.4.15/meson.build   2019-08-23 18:24:46.0 +0200
+++ new/lollypop-1.1.4.16/meson.build   2019-09-03 17:56:13.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.1.4.15',
+  version: '1.1.4.16',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-08-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-08-24 18:47:21

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.7948 (New)


Package is "lollypop"

Sat Aug 24 18:47:21 2019 rev:99 rq:725667 version:1.1.4.15

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-08-15 
12:28:51.498522541 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.7948/lollypop.changes  
2019-08-24 18:47:28.301751127 +0200
@@ -1,0 +2,6 @@
+Fri Aug 23 16:36:46 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.15:
+  * Fix an issue with local artwork.
+
+---

Old:

  lollypop-1.1.4.14.tar.xz

New:

  lollypop-1.1.4.15.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.RVUDrt/_old  2019-08-24 18:47:30.857750880 +0200
+++ /var/tmp/diff_new_pack.RVUDrt/_new  2019-08-24 18:47:30.861750880 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.14
+Version:1.1.4.15
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.RVUDrt/_old  2019-08-24 18:47:30.881750878 +0200
+++ /var/tmp/diff_new_pack.RVUDrt/_new  2019-08-24 18:47:30.881750878 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.14
+1.1.4.15
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.RVUDrt/_old  2019-08-24 18:47:30.897750876 +0200
+++ /var/tmp/diff_new_pack.RVUDrt/_new  2019-08-24 18:47:30.897750876 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  226936c9cbd95c32cb62250247467f423280f0b3
\ No newline at end of file
+  47dcc4c5f5460a4062a5d9013feb75d77336816f
\ No newline at end of file

++ lollypop-1.1.4.14.tar.xz -> lollypop-1.1.4.15.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.14/lollypop/widgets_artwork_album.py 
new/lollypop-1.1.4.15/lollypop/widgets_artwork_album.py
--- old/lollypop-1.1.4.14/lollypop/widgets_artwork_album.py 2019-08-14 
12:37:02.0 +0200
+++ new/lollypop-1.1.4.15/lollypop/widgets_artwork_album.py 2019-08-23 
18:24:46.0 +0200
@@ -72,7 +72,7 @@
 f = Gio.File.new_for_path(dialog.get_filename())
 (status, data, tag) = f.load_contents()
 if status:
-App().art.save_album_artwork(self.__album, data)
+App().art.save_album_artwork(data, self.__album)
 self._streams = {}
 except Exception as e:
 Logger.error(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.14/meson.build 
new/lollypop-1.1.4.15/meson.build
--- old/lollypop-1.1.4.14/meson.build   2019-08-14 12:37:02.0 +0200
+++ new/lollypop-1.1.4.15/meson.build   2019-08-23 18:24:46.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.1.4.14',
+  version: '1.1.4.15',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-08-15 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-08-15 12:28:50

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.9556 (New)


Package is "lollypop"

Thu Aug 15 12:28:50 2019 rev:98 rq:723291 version:1.1.4.14

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-08-13 
13:23:01.561390570 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.9556/lollypop.changes  
2019-08-15 12:28:51.498522541 +0200
@@ -1,0 +2,8 @@
+Wed Aug 14 12:01:23 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.14:
+  * Update genres after removing track.
+- Changes from version 1.1.4.13:
+  * Fix version in meson.build.
+
+---

Old:

  lollypop-1.1.4.12.tar.xz

New:

  lollypop-1.1.4.14.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Sivsr7/_old  2019-08-15 12:28:52.078522004 +0200
+++ /var/tmp/diff_new_pack.Sivsr7/_new  2019-08-15 12:28:52.078522004 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.12
+Version:1.1.4.14
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Sivsr7/_old  2019-08-15 12:28:52.098521986 +0200
+++ /var/tmp/diff_new_pack.Sivsr7/_new  2019-08-15 12:28:52.098521986 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.12
+1.1.4.14
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Sivsr7/_old  2019-08-15 12:28:52.114521971 +0200
+++ /var/tmp/diff_new_pack.Sivsr7/_new  2019-08-15 12:28:52.114521971 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  03f728791d0e17bf5ac102066b82185fad7c2eb8
\ No newline at end of file
+  226936c9cbd95c32cb62250247467f423280f0b3
\ No newline at end of file

++ lollypop-1.1.4.12.tar.xz -> lollypop-1.1.4.14.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.12/lollypop/collectionscanner.py 
new/lollypop-1.1.4.14/lollypop/collectionscanner.py
--- old/lollypop-1.1.4.12/lollypop/collectionscanner.py 2019-08-11 
23:13:42.0 +0200
+++ new/lollypop-1.1.4.14/lollypop/collectionscanner.py 2019-08-14 
12:37:02.0 +0200
@@ -249,7 +249,6 @@
 track_id = App().tracks.get_id_by_uri(uri)
 duration = App().tracks.get_duration(track_id)
 album_id = App().tracks.get_album_id(track_id)
-genre_ids = App().tracks.get_genre_ids(track_id)
 album_artist_ids = App().albums.get_artist_ids(album_id)
 artist_ids = App().tracks.get_artist_ids(track_id)
 track_pop = App().tracks.get_popularity(track_id)
@@ -261,8 +260,6 @@
 album_rate = App().albums.get_rate(album_id)
 album_loved = App().albums.get_loved(album_id)
 album_synced = App().albums.get_synced(album_id)
-# Force genre for album
-App().albums.set_genre_ids(album_id, genre_ids)
 if backup:
 f = Gio.File.new_for_uri(uri)
 name = f.get_basename()
@@ -271,6 +268,9 @@
album_loved, album_pop, album_rate,
album_synced)
 App().tracks.remove(track_id)
+# Force genre for album
+genre_ids = App().tracks.get_genre_ids(track_id)
+App().albums.set_genre_ids(album_id, genre_ids)
 App().albums.clean()
 App().genres.clean()
 App().artists.clean()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.12/meson.build 
new/lollypop-1.1.4.14/meson.build
--- old/lollypop-1.1.4.12/meson.build   2019-08-11 23:13:42.0 +0200
+++ new/lollypop-1.1.4.14/meson.build   2019-08-14 12:37:02.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.1.4.11',
+  version: '1.1.4.14',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-08-13 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-08-13 13:22:25

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.9556 (New)


Package is "lollypop"

Tue Aug 13 13:22:25 2019 rev:97 rq:722589 version:1.1.4.12

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-08-06 
17:27:22.812687221 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.9556/lollypop.changes  
2019-08-13 13:23:01.561390570 +0200
@@ -1,0 +2,7 @@
+Mon Aug 12 07:51:19 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.12:
+  * Fix adding track to playlist (glgo#World/lollypop#1965).
+  * Fix crash after scan (glgo#World/lollypop#1963).
+
+---

Old:

  lollypop-1.1.4.11.tar.xz

New:

  lollypop-1.1.4.12.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.INc35J/_old  2019-08-13 13:23:01.973390462 +0200
+++ /var/tmp/diff_new_pack.INc35J/_new  2019-08-13 13:23:01.977390461 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.11
+Version:1.1.4.12
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.INc35J/_old  2019-08-13 13:23:02.001390454 +0200
+++ /var/tmp/diff_new_pack.INc35J/_new  2019-08-13 13:23:02.001390454 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.11
+1.1.4.12
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.INc35J/_old  2019-08-13 13:23:02.013390451 +0200
+++ /var/tmp/diff_new_pack.INc35J/_new  2019-08-13 13:23:02.013390451 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  0bc9a68beb6414f4e740ca587cca7a00678d715c
\ No newline at end of file
+  03f728791d0e17bf5ac102066b82185fad7c2eb8
\ No newline at end of file

++ lollypop-1.1.4.11.tar.xz -> lollypop-1.1.4.12.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.11/lollypop/container_lists.py 
new/lollypop-1.1.4.12/lollypop/container_lists.py
--- old/lollypop-1.1.4.11/lollypop/container_lists.py   2019-08-05 
23:30:09.0 +0200
+++ new/lollypop-1.1.4.12/lollypop/container_lists.py   2019-08-11 
23:13:42.0 +0200
@@ -37,7 +37,7 @@
 Update list one
 @param update as bool
 """
-if self._list_one.get_visible():
+if self._list_one is not None and self._list_one.get_visible():
 sidebar_content = App().settings.get_enum("sidebar-content")
 if sidebar_content == SidebarContent.GENRES:
 self.__update_list_genres(self._list_one, update)
@@ -51,7 +51,7 @@
 Update list two
 @param update as bool
 """
-if self._list_one.get_visible():
+if self._list_one is not None and self._list_one.get_visible():
 sidebar_content = App().settings.get_enum("sidebar-content")
 ids = self._list_one.selected_ids
 if ids and ids[0] in [Type.PLAYLISTS, Type.YEARS]:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.11/lollypop/pop_current.py 
new/lollypop-1.1.4.12/lollypop/pop_current.py
--- old/lollypop-1.1.4.11/lollypop/pop_current.py   2019-08-05 
23:30:09.0 +0200
+++ new/lollypop-1.1.4.12/lollypop/pop_current.py   2019-08-11 
23:13:42.0 +0200
@@ -26,12 +26,7 @@
 Init popover
 """
 Popover.__init__(self)
-# No DND until https://gitlab.gnome.org/GNOME/gtk/issues/2006 is fixed
-wayland = GLib.environ_getenv(GLib.get_environ(), "WAYLAND_DISPLAY")
-if wayland:
-view_type = ViewType.POPOVER
-else:
-view_type = ViewType.POPOVER | ViewType.DND
+view_type = ViewType.POPOVER | ViewType.DND
 self.__view = App().window.container.get_view_current(view_type)
 self.__view.show()
 self.set_position(Gtk.PositionType.BOTTOM)




commit lollypop for openSUSE:Factory

2019-08-06 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-08-06 17:27:21

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4126 (New)


Package is "lollypop"

Tue Aug  6 17:27:21 2019 rev:96 rq:721265 version:1.1.4.11

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-08-05 
10:38:45.395317347 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4126/lollypop.changes  
2019-08-06 17:27:22.812687221 +0200
@@ -1,0 +2,8 @@
+Tue Aug 06 11:47:16 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.11:
+  * Fix an issue with sync code.
+- Changes from version 1.1.4.10:
+  * Fix crash in search (glgo#World/lollypop#1958).
+
+---

Old:

  lollypop-1.1.4.9.tar.xz

New:

  lollypop-1.1.4.11.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.yFWvrT/_old  2019-08-06 17:27:23.336687108 +0200
+++ /var/tmp/diff_new_pack.yFWvrT/_new  2019-08-06 17:27:23.336687108 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.9
+Version:1.1.4.11
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.yFWvrT/_old  2019-08-06 17:27:23.360687102 +0200
+++ /var/tmp/diff_new_pack.yFWvrT/_new  2019-08-06 17:27:23.360687102 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.9
+1.1.4.11
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.yFWvrT/_old  2019-08-06 17:27:23.376687098 +0200
+++ /var/tmp/diff_new_pack.yFWvrT/_new  2019-08-06 17:27:23.380687098 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  30bf67869068773529fb823289be8ae0e0ea71d8
\ No newline at end of file
+  0bc9a68beb6414f4e740ca587cca7a00678d715c
\ No newline at end of file

++ lollypop-1.1.4.9.tar.xz -> lollypop-1.1.4.11.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.9/lollypop/container_views.py 
new/lollypop-1.1.4.11/lollypop/container_views.py
--- old/lollypop-1.1.4.9/lollypop/container_views.py2019-08-01 
23:00:41.0 +0200
+++ new/lollypop-1.1.4.11/lollypop/container_views.py   2019-08-05 
23:30:09.0 +0200
@@ -63,6 +63,8 @@
Type.WEB]:
 view = self._get_view_albums(item_ids, [])
 elif item_ids[0] == Type.SEARCH:
+if data is None:
+data = ""
 view = self.get_view_search(data)
 elif item_ids[0] == Type.INFO:
 view = self._get_view_info()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.9/lollypop/menu_sync.py 
new/lollypop-1.1.4.11/lollypop/menu_sync.py
--- old/lollypop-1.1.4.9/lollypop/menu_sync.py  2019-08-01 23:00:41.0 
+0200
+++ new/lollypop-1.1.4.11/lollypop/menu_sync.py 2019-08-05 23:30:09.0 
+0200
@@ -59,7 +59,6 @@
 """
 def on_get_synced(synced, sync_action):
 sync_action.set_state(GLib.Variant.new_boolean(synced))
-sync_action.set_enabled(True)
 
 synced = False
 devices = list(App().settings.get_value("devices"))
@@ -70,7 +69,6 @@
   None,
   GLib.Variant.new_boolean(synced))
 App().add_action(sync_action)
-sync_action.set_enabled(False)
 try:
 if name == self.__all_devices:
 index = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.9/meson.build 
new/lollypop-1.1.4.11/meson.build
--- old/lollypop-1.1.4.9/meson.build2019-08-01 23:00:41.0 +0200
+++ new/lollypop-1.1.4.11/meson.build   2019-08-05 23:30:09.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.1.4.9',
+  version: '1.1.4.11',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-08-05 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-08-05 10:38:39

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4126 (New)


Package is "lollypop"

Mon Aug  5 10:38:39 2019 rev:95 rq:720310 version:1.1.4.9

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-31 
14:36:34.777860151 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4126/lollypop.changes  
2019-08-05 10:38:45.395317347 +0200
@@ -1,0 +2,6 @@
+Thu Aug 01 21:01:20 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.9:
+  * Another Ubuntu fix (glgo#World/lollypop#1931).
+
+---

Old:

  lollypop-1.1.4.8.tar.xz

New:

  lollypop-1.1.4.9.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Jjcq6A/_old  2019-08-05 10:38:46.759317181 +0200
+++ /var/tmp/diff_new_pack.Jjcq6A/_new  2019-08-05 10:38:46.763317181 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.8
+Version:1.1.4.9
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Jjcq6A/_old  2019-08-05 10:38:46.803317176 +0200
+++ /var/tmp/diff_new_pack.Jjcq6A/_new  2019-08-05 10:38:46.803317176 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.8
+1.1.4.9
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Jjcq6A/_old  2019-08-05 10:38:46.819317174 +0200
+++ /var/tmp/diff_new_pack.Jjcq6A/_new  2019-08-05 10:38:46.819317174 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  3c0b023250ae91b8aada6b2dafd0b48342420cb3
\ No newline at end of file
+  30bf67869068773529fb823289be8ae0e0ea71d8
\ No newline at end of file

++ lollypop-1.1.4.8.tar.xz -> lollypop-1.1.4.9.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.8/lollypop/view_album.py 
new/lollypop-1.1.4.9/lollypop/view_album.py
--- old/lollypop-1.1.4.8/lollypop/view_album.py 2019-07-31 01:04:17.0 
+0200
+++ new/lollypop-1.1.4.9/lollypop/view_album.py 2019-08-01 23:00:41.0 
+0200
@@ -115,17 +115,20 @@
 Set initial state and connect signals
 @param widget as Gtk.Widget
 """
-LazyLoadingView._on_map(self, widget)
-self._responsive_widget.set_margin_top(
-self.__banner.default_height + 15)
-App().window.emit("show-can-go-back", True)
-App().window.emit("can-go-back-changed", True)
-App().settings.set_value("state-one-ids",
- GLib.Variant("ai", self.__genre_ids))
-App().settings.set_value("state-two-ids",
- GLib.Variant("ai", self.__artist_ids))
-App().settings.set_value("state-three-ids",
- GLib.Variant("ai", [self._album.id]))
+try:
+LazyLoadingView._on_map(self, widget)
+self._responsive_widget.set_margin_top(
+self.__banner.default_height + 15)
+App().window.emit("show-can-go-back", True)
+App().window.emit("can-go-back-changed", True)
+App().settings.set_value("state-one-ids",
+ GLib.Variant("ai", self.__genre_ids))
+App().settings.set_value("state-two-ids",
+ GLib.Variant("ai", self.__artist_ids))
+App().settings.set_value("state-three-ids",
+ GLib.Variant("ai", [self._album.id]))
+except:
+pass
 
 def _on_unmap(self, widget):
 """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.8/lollypop/view_albums_list.py 
new/lollypop-1.1.4.9/lollypop/view_albums_list.py
--- old/lollypop-1.1.4.8/lollypop/view_albums_list.py   2019-07-31 
01:04:17.0 +0200
+++ new/lollypop-1.1.4.9/lollypop/view_albums_list.py   2019-08-01 
23:00:41.0 +0200
@@ -702,21 +702,24 @@
 Connect signals and set active ids
 @param widget as Gtk.Widget
 """
-LazyLoadingView._on_map(self, widget)
-if not self.__genre_ids and not self.__artist_ids:
-return
-if self.__genre_ids:
-App().settings.set_value("state-one-ids",
- GLib.Variant("ai", self.__genre_ids))
-

commit lollypop for openSUSE:Factory

2019-07-31 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-31 14:36:33

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4126 (New)


Package is "lollypop"

Wed Jul 31 14:36:33 2019 rev:94 rq:720008 version:1.1.4.8

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-29 
17:31:23.790171894 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4126/lollypop.changes  
2019-07-31 14:36:34.777860151 +0200
@@ -1,0 +2,6 @@
+Wed Jul 31 08:13:36 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.8:
+  * Fix a crash on Ubuntu 18.04 (glgo#World/lollypop#1907).
+
+---

Old:

  lollypop-1.1.4.7.tar.xz

New:

  lollypop-1.1.4.8.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.wbaWIt/_old  2019-07-31 14:36:35.277859869 +0200
+++ /var/tmp/diff_new_pack.wbaWIt/_new  2019-07-31 14:36:35.281859866 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.7
+Version:1.1.4.8
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.wbaWIt/_old  2019-07-31 14:36:35.305859853 +0200
+++ /var/tmp/diff_new_pack.wbaWIt/_new  2019-07-31 14:36:35.305859853 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.7
+1.1.4.8
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.wbaWIt/_old  2019-07-31 14:36:35.321859844 +0200
+++ /var/tmp/diff_new_pack.wbaWIt/_new  2019-07-31 14:36:35.321859844 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  81067cb0ffbd2c3505ccaab47ab7e70879c25ead
\ No newline at end of file
+  3c0b023250ae91b8aada6b2dafd0b48342420cb3
\ No newline at end of file

++ lollypop-1.1.4.7.tar.xz -> lollypop-1.1.4.8.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.7/lollypop/downloader_info.py 
new/lollypop-1.1.4.8/lollypop/downloader_info.py
--- old/lollypop-1.1.4.7/lollypop/downloader_info.py2019-07-29 
00:25:36.0 +0200
+++ new/lollypop-1.1.4.8/lollypop/downloader_info.py2019-07-31 
01:04:17.0 +0200
@@ -17,7 +17,7 @@
 from locale import getdefaultlocale
 
 from lollypop.define import App, AUDIODB_CLIENT_ID
-from lollypop.utils import get_network_available
+from lollypop.utils import get_network_available, escape
 from lollypop.logger import Logger
 from lollypop.downloader import Downloader
 
@@ -75,7 +75,8 @@
 if status:
 decode = json.loads(data.decode("utf-8"))
 for item in decode["query"]["search"]:
-if item["title"].lower() == term.lower():
+if escape(item["title"].lower()) ==\
+escape(term.lower()):
 return (locale, item["pageid"])
 else:
 for word in [_("band"), _("singer"),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.7/lollypop/view_artist.py 
new/lollypop-1.1.4.8/lollypop/view_artist.py
--- old/lollypop-1.1.4.7/lollypop/view_artist.py2019-07-29 
00:25:36.0 +0200
+++ new/lollypop-1.1.4.8/lollypop/view_artist.py2019-07-31 
01:04:17.0 +0200
@@ -151,26 +151,29 @@
 Connect signals and set active ids
 @param widget as Gtk.Widget
 """
-ArtistAlbumsView._on_map(self, widget)
-self.__on_album_changed(App().player)
-self.__art_signal_id = App().art.connect(
-   "artist-artwork-changed",
-   self.__on_artist_artwork_changed)
-self.__party_signal_id = App().player.connect(
-"party-changed",
-self.__on_album_changed)
-self.__added_signal_id = App().player.connect(
-"album-added",
-self.__on_album_changed)
-self.__removed_signal_id = App().player.connect(
-  "album-removed",
-  self.__on_album_changed)
-App().settings.set_value("state-one-ids",
- GLib.Variant("ai", self._genre_ids))
-  

commit lollypop for openSUSE:Factory

2019-07-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-29 17:31:23

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4126 (New)


Package is "lollypop"

Mon Jul 29 17:31:23 2019 rev:93 rq:719508 version:1.1.4.7

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-28 
10:22:30.364568104 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4126/lollypop.changes  
2019-07-29 17:31:23.790171894 +0200
@@ -1,0 +2,6 @@
+Mon Jul 29 07:59:11 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.7:
+  * Remove python-wikipedia dependency.
+
+---

Old:

  lollypop-1.1.4.6.tar.xz

New:

  lollypop-1.1.4.7.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.WqHCiU/_old  2019-07-29 17:31:24.386171172 +0200
+++ /var/tmp/diff_new_pack.WqHCiU/_new  2019-07-29 17:31:24.390171168 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.6
+Version:1.1.4.7
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -43,7 +43,6 @@
 Requires:   python3-pylast
 Recommends: easytag
 Recommends: kid3-cli
-Recommends: python3-wikipedia
 Recommends: youtube-dl
 Suggests:   python3-textblob
 BuildArch:  noarch

++ _service ++
--- /var/tmp/diff_new_pack.WqHCiU/_old  2019-07-29 17:31:24.422171129 +0200
+++ /var/tmp/diff_new_pack.WqHCiU/_new  2019-07-29 17:31:24.422171129 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.6
+1.1.4.7
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.WqHCiU/_old  2019-07-29 17:31:24.446171100 +0200
+++ /var/tmp/diff_new_pack.WqHCiU/_new  2019-07-29 17:31:24.450171095 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  38e00b1bfa3aec92bd423c7cda950516e3fde8ac
\ No newline at end of file
+  81067cb0ffbd2c3505ccaab47ab7e70879c25ead
\ No newline at end of file

++ lollypop-1.1.4.6.tar.xz -> lollypop-1.1.4.7.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.6/lollypop/downloader_info.py 
new/lollypop-1.1.4.7/lollypop/downloader_info.py
--- old/lollypop-1.1.4.6/lollypop/downloader_info.py2019-07-26 
17:36:01.0 +0200
+++ new/lollypop-1.1.4.7/lollypop/downloader_info.py2019-07-29 
00:25:36.0 +0200
@@ -12,6 +12,7 @@
 
 from gi.repository import GLib
 
+from gettext import gettext as _
 import json
 from locale import getdefaultlocale
 
@@ -26,13 +27,17 @@
 Helper for wikipedia search
 """
 
+__API_SEARCH = "https://%s.wikipedia.org/w/api.php?action=query; +\
+"=search=%s=json"
+__API_INFO = "https://%s.wikipedia.org/w/api.php?action=query; +\
+"=%s=json" +\
+"=extracts=max=1"
+
 def __init__(self):
 """
 Init wikipedia
-@raise exception  is wikipedia module not installed
 """
-import wikipedia
-wikipedia
+self.__locale = getdefaultlocale()[0][0:2]
 
 def get_content(self, string):
 """
@@ -40,47 +45,46 @@
 @param string as str
 @return str/None
 """
-content = None
 try:
-name = self.__get_duckduck_name(string)
-if name is None:
+(locale, page_id) = self.__search_term(string)
+if page_id is None:
 return None
-import wikipedia
-language = getdefaultlocale()[0][0:2]
-wikipedia.set_lang(language)
-page = wikipedia.page(name)
-if page is None:
-wikipedia.set_lang("en")
-page = wikipedia.page(name)
-if page is not None:
-content = page.content.encode(encoding="UTF-8")
+uri = self.__API_INFO % (locale, page_id)
+(status, data) = App().task_helper.load_uri_content_sync(uri)
+if status:
+decode = json.loads(data.decode("utf-8"))
+extract = decode["query"]["pages"][str(page_id)]["extract"]
+return extract.encode("utf-8")
 except Exception as e:
 Logger.error("Wikipedia::get_content(): %s", e)
-return content
+return None
 
 ###
 # PRIVATE #
 ###
-def __get_duckduck_name(self, string):
+def __search_term(self, term):
 """
-Get 

commit lollypop for openSUSE:Factory

2019-07-28 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-28 10:22:27

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4126 (New)


Package is "lollypop"

Sun Jul 28 10:22:27 2019 rev:92 rq:718996 version:1.1.4.6

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-21 
11:33:57.500781211 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4126/lollypop.changes  
2019-07-28 10:22:30.364568104 +0200
@@ -1,0 +2,6 @@
+Fri Jul 26 18:38:02 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.6:
+  * Fix an issue with beautifulsoup4.
+
+---

Old:

  lollypop-1.1.4.5.tar.xz

New:

  lollypop-1.1.4.6.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.5MMA19/_old  2019-07-28 10:22:31.264568084 +0200
+++ /var/tmp/diff_new_pack.5MMA19/_new  2019-07-28 10:22:31.268568083 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.5
+Version:1.1.4.6
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.5MMA19/_old  2019-07-28 10:22:31.304568083 +0200
+++ /var/tmp/diff_new_pack.5MMA19/_new  2019-07-28 10:22:31.304568083 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.5
+1.1.4.6
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.5MMA19/_old  2019-07-28 10:22:31.336568082 +0200
+++ /var/tmp/diff_new_pack.5MMA19/_new  2019-07-28 10:22:31.336568082 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  85e7c503361df6d8f61ab0ef27717c7d3d6d1833
\ No newline at end of file
+  38e00b1bfa3aec92bd423c7cda950516e3fde8ac
\ No newline at end of file

++ lollypop-1.1.4.5.tar.xz -> lollypop-1.1.4.6.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.5/lollypop/container_views.py 
new/lollypop-1.1.4.6/lollypop/container_views.py
--- old/lollypop-1.1.4.5/lollypop/container_views.py2019-07-18 
09:46:09.0 +0200
+++ new/lollypop-1.1.4.6/lollypop/container_views.py2019-07-26 
17:36:01.0 +0200
@@ -119,11 +119,7 @@
 Get view for current playlist
 @return View
 """
-if App().player.queue and not view_type & ViewType.FULLSCREEN:
-from lollypop.view_queue import QueueView
-view = QueueView(view_type | self._view_type)
-view.populate()
-elif App().player.playlist_ids:
+if App().player.playlist_ids:
 from lollypop.view_playlists import PlaylistsView
 view = PlaylistsView(App().player.playlist_ids,
  view_type | self._view_type)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.5/lollypop/helper_web_youtube.py 
new/lollypop-1.1.4.6/lollypop/helper_web_youtube.py
--- old/lollypop-1.1.4.5/lollypop/helper_web_youtube.py 2019-07-18 
09:46:09.0 +0200
+++ new/lollypop-1.1.4.6/lollypop/helper_web_youtube.py 2019-07-26 
17:36:01.0 +0200
@@ -154,7 +154,7 @@
 @return youtube id as str
 """
 try:
-from beautifulsoup4 import BeautifulSoup
+from bs4 import BeautifulSoup
 except:
 print("$ sudo pip3 install beautifulsoup4")
 return None
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.5/meson.build 
new/lollypop-1.1.4.6/meson.build
--- old/lollypop-1.1.4.5/meson.build2019-07-18 09:46:09.0 +0200
+++ new/lollypop-1.1.4.6/meson.build2019-07-26 17:36:01.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.1.4.5',
+  version: '1.1.4.6',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-07-21 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-21 11:33:56

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4126 (New)


Package is "lollypop"

Sun Jul 21 11:33:56 2019 rev:91 rq:716722 version:1.1.4.5

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-18 
15:22:46.996118756 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4126/lollypop.changes  
2019-07-21 11:33:57.500781211 +0200
@@ -1,0 +2,6 @@
+Fri Jul 19 06:26:27 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.5:
+  * Fix an issue with MTP sync (glgo#World/lollypop#1898).
+
+---

Old:

  lollypop-1.1.4.4.tar.xz

New:

  lollypop-1.1.4.5.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.IrjFCE/_old  2019-07-21 11:33:58.116781107 +0200
+++ /var/tmp/diff_new_pack.IrjFCE/_new  2019-07-21 11:33:58.120781107 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.4
+Version:1.1.4.5
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.IrjFCE/_old  2019-07-21 11:33:58.148781102 +0200
+++ /var/tmp/diff_new_pack.IrjFCE/_new  2019-07-21 11:33:58.148781102 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.4
+1.1.4.5
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.IrjFCE/_old  2019-07-21 11:33:58.168781099 +0200
+++ /var/tmp/diff_new_pack.IrjFCE/_new  2019-07-21 11:33:58.176781097 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  3db42c5bcdd19ced5f20ac817ab91145bec12552
\ No newline at end of file
+  85e7c503361df6d8f61ab0ef27717c7d3d6d1833
\ No newline at end of file

++ lollypop-1.1.4.4.tar.xz -> lollypop-1.1.4.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.4/lollypop/sync_mtp.py 
new/lollypop-1.1.4.5/lollypop/sync_mtp.py
--- old/lollypop-1.1.4.4/lollypop/sync_mtp.py   2019-07-16 08:22:32.0 
+0200
+++ new/lollypop-1.1.4.5/lollypop/sync_mtp.py   2019-07-18 09:46:09.0 
+0200
@@ -390,7 +390,7 @@
 f = Gio.File.new_for_uri(track.uri)
 filename = f.get_basename()
 album_uri = self.__get_album_on_device_uri(track)
-uri = "%s/%s" % (album_uri, filename)
+uri = "%s/%s" % (album_uri, escape(filename))
 (convertion_needed,
  uri) = self.__is_convertion_needed(track.uri, uri)
 content += "%s\n" % uri
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.4/meson.build 
new/lollypop-1.1.4.5/meson.build
--- old/lollypop-1.1.4.4/meson.build2019-07-16 08:22:32.0 +0200
+++ new/lollypop-1.1.4.5/meson.build2019-07-18 09:46:09.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.1.4.4',
+  version: '1.1.4.5',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-07-16 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-16 08:41:35

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.1887 (New)


Package is "lollypop"

Tue Jul 16 08:41:35 2019 rev:89 rq:715388 version:1.1.4.3

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-11 
13:16:49.370797079 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.1887/lollypop.changes  
2019-07-16 08:41:36.575033204 +0200
@@ -1,0 +2,8 @@
+Mon Jul 15 06:12:18 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.3:
+  * Fix an issue in "Decades" view.
+  * Fix a crash when scrolling the artist view
+(glgo#World/lollypop#1887).
+
+---

Old:

  lollypop-1.1.4.2.tar.xz

New:

  lollypop-1.1.4.3.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.ZOs8IK/_old  2019-07-16 08:41:37.355032784 +0200
+++ /var/tmp/diff_new_pack.ZOs8IK/_new  2019-07-16 08:41:37.359032781 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.2
+Version:1.1.4.3
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.ZOs8IK/_old  2019-07-16 08:41:37.379032771 +0200
+++ /var/tmp/diff_new_pack.ZOs8IK/_new  2019-07-16 08:41:37.379032771 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.2
+1.1.4.3
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.ZOs8IK/_old  2019-07-16 08:41:37.391032764 +0200
+++ /var/tmp/diff_new_pack.ZOs8IK/_new  2019-07-16 08:41:37.391032764 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  1129cfad3472f1b14146173830ad7e99dda4dc0c
\ No newline at end of file
+  4cc599c0722215940840363d8234846f02f72d2c
\ No newline at end of file

++ lollypop-1.1.4.2.tar.xz -> lollypop-1.1.4.3.tar.xz ++
 40182 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-07-11 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-11 13:16:46

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4615 (New)


Package is "lollypop"

Thu Jul 11 13:16:46 2019 rev:88 rq:714114 version:1.1.4.2

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-07-08 
16:32:19.284208928 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4615/lollypop.changes  
2019-07-11 13:16:49.370797079 +0200
@@ -1,0 +2,6 @@
+Mon Jul 08 19:01:24 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.2:
+  * Fix a crash (glgo#World/lollypop#1885).
+
+---

Old:

  lollypop-1.1.4.1.tar.xz

New:

  lollypop-1.1.4.2.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.9wwC07/_old  2019-07-11 13:16:50.194796819 +0200
+++ /var/tmp/diff_new_pack.9wwC07/_new  2019-07-11 13:16:50.210796814 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.4.1
+Version:1.1.4.2
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.9wwC07/_old  2019-07-11 13:16:50.282796791 +0200
+++ /var/tmp/diff_new_pack.9wwC07/_new  2019-07-11 13:16:50.286796791 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.4.1
+1.1.4.2
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.9wwC07/_old  2019-07-11 13:16:50.342796773 +0200
+++ /var/tmp/diff_new_pack.9wwC07/_new  2019-07-11 13:16:50.346796771 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  f060b2efe73af742d04f50139163b2a493b5
\ No newline at end of file
+  1129cfad3472f1b14146173830ad7e99dda4dc0c
\ No newline at end of file

++ lollypop-1.1.4.1.tar.xz -> lollypop-1.1.4.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.1/lollypop/application_actions.py 
new/lollypop-1.1.4.2/lollypop/application_actions.py
--- old/lollypop-1.1.4.1/lollypop/application_actions.py2019-07-07 
16:54:06.0 +0200
+++ new/lollypop-1.1.4.2/lollypop/application_actions.py2019-07-08 
18:28:15.0 +0200
@@ -318,7 +318,7 @@
 if App().player.current_track.id is not None and\
 App().player.current_track.id > 0:
 artist_ids = App().player.current_track.album.artist_ids
-App().window.container.show_artist_view(artist_ids)
+App().window.container.show_artists_albums(artist_ids)
 elif string == "loved":
 track = App().player.current_track
 if track.id is not None and track.id >= 0:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.4.1/lollypop/container.py 
new/lollypop-1.1.4.2/lollypop/container.py
--- old/lollypop-1.1.4.1/lollypop/container.py  2019-07-07 16:54:06.0 
+0200
+++ new/lollypop-1.1.4.2/lollypop/container.py  2019-07-08 18:28:15.0 
+0200
@@ -116,26 +116,28 @@
 Show albums from artists
 @param artist_ids as [int]
 """
-# FIXME nécessaire?
-def select_list_two(selection_list, artist_ids):
-self._list_two.select_ids(artist_ids)
-self._list_two.disconnect_by_func(select_list_two)
 sidebar_content = App().settings.get_enum("sidebar-content")
-if sidebar_content == SidebarContent.GENRES:
-# Get artist genres
-genre_ids = []
-for artist_id in artist_ids:
-album_ids = App().artists.get_albums(artist_ids)
-for album_id in album_ids:
-for genre_id in App().albums.get_genre_ids(album_id):
-if genre_id not in genre_ids:
-genre_ids.append(genre_id)
-self.show_lists(genre_ids, artist_ids)
-elif sidebar_content == SidebarContent.ARTISTS:
-# Select artists on list one
-self.show_lists(artist_ids, [])
+if App().settings.get_value("show-sidebar") and\
+not sidebar_content == SidebarContent.DEFAULT and\
+not App().window.is_adaptive:
+if sidebar_content == SidebarContent.GENRES:
+# Get artist genres
+genre_ids = []
+for artist_id in artist_ids:
+album_ids = App().artists.get_albums(artist_ids)
+   

commit lollypop for openSUSE:Factory

2019-07-08 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-07-08 15:12:03

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4615 (New)


Package is "lollypop"

Mon Jul  8 15:12:03 2019 rev:87 rq:713867 version:1.1.4.1

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-06-30 
10:21:19.935604436 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4615/lollypop.changes  
2019-07-08 16:32:19.284208928 +0200
@@ -1,0 +2,11 @@
+Sun Jul 07 16:18:22 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.4.1:
+  * Fix a crash (glgo#World/lollypop#1884).
+- Changes from version 1.1.4:
+  * Fix some crashes (glgo#World/lollypop#1878,
+glgo#World/lollypop#1880).
+  * Fix a shortcut issue (glgo#World/lollypop#1879).
+  * Fix display of compilations (glgo#World/lollypop#1875).
+
+---

Old:

  lollypop-1.1.3.1.tar.xz

New:

  lollypop-1.1.4.1.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Vkyuwe/_old  2019-07-08 16:32:19.832209693 +0200
+++ /var/tmp/diff_new_pack.Vkyuwe/_new  2019-07-08 16:32:19.832209693 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.3.1
+Version:1.1.4.1
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Vkyuwe/_old  2019-07-08 16:32:19.892209776 +0200
+++ /var/tmp/diff_new_pack.Vkyuwe/_new  2019-07-08 16:32:19.896209782 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.3.1
+1.1.4.1
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Vkyuwe/_old  2019-07-08 16:32:19.920209815 +0200
+++ /var/tmp/diff_new_pack.Vkyuwe/_new  2019-07-08 16:32:19.920209815 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  a152d1c05406df1c1a129fff547401c4837ccb9c
\ No newline at end of file
+  f060b2efe73af742d04f50139163b2a493b5
\ No newline at end of file

++ lollypop-1.1.3.1.tar.xz -> lollypop-1.1.4.1.tar.xz ++
 4351 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-06-30 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-06-30 10:21:18

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4615 (New)


Package is "lollypop"

Sun Jun 30 10:21:18 2019 rev:86 rq:712450 version:1.1.3.1

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-06-24 
21:53:50.752128388 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4615/lollypop.changes  
2019-06-30 10:21:19.935604436 +0200
@@ -1,0 +2,16 @@
+Fri Jun 28 21:44:28 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.3.1:
+  * Fix wrong view displayed when sidebar is disabled
+(glgo#World/lollypop#1872).
+
+---
+Fri Jun 28 18:17:57 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.3:
+  * Bug fixes:
+glgo#World/lollypop#1865, glgo#World/lollypop#1867,
+glgo#World/lollypop#1868, glgo#World/lollypop#1869,
+glgo#World/lollypop#1879, glgo#World/lollypop#1871.
+
+---

Old:

  lollypop-1.1.1.tar.xz

New:

  lollypop-1.1.3.1.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.W0UPJd/_old  2019-06-30 10:21:21.515606891 +0200
+++ /var/tmp/diff_new_pack.W0UPJd/_new  2019-06-30 10:21:21.559606959 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.1
+Version:1.1.3.1
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.W0UPJd/_old  2019-06-30 10:21:21.831607382 +0200
+++ /var/tmp/diff_new_pack.W0UPJd/_new  2019-06-30 10:21:21.831607382 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.1
+1.1.3.1
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.W0UPJd/_old  2019-06-30 10:21:21.843607401 +0200
+++ /var/tmp/diff_new_pack.W0UPJd/_new  2019-06-30 10:21:21.843607401 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  3fd7197bc786ad224bf5a5a58bdfbdba1443f6a3
\ No newline at end of file
+  a152d1c05406df1c1a129fff547401c4837ccb9c
\ No newline at end of file

++ lollypop-1.1.1.tar.xz -> lollypop-1.1.3.1.tar.xz ++
 26223 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-06-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-06-24 21:52:44

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4615 (New)


Package is "lollypop"

Mon Jun 24 21:52:44 2019 rev:85 rq:711565 version:1.1.1

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-06-21 
09:58:41.108688864 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4615/lollypop.changes  
2019-06-24 21:53:50.752128388 +0200
@@ -1,0 +2,11 @@
+Sun Jun 23 15:07:52 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.1:
+  * Add support for reading synced lyrics from tags.
+  * Fix a crash on playlist update (glgo#World/lollypop#1864).
+  * Don't lose search results upon search mode switch
+(glgo#World/lollypop#1859).
+  * Fix a case of playback stopping unexpectedly
+(glgo#World/lollypop#1840).
+
+---

Old:

  lollypop-1.1.0.tar.xz

New:

  lollypop-1.1.1.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.WR7aQK/_old  2019-06-24 21:53:51.516128979 +0200
+++ /var/tmp/diff_new_pack.WR7aQK/_new  2019-06-24 21:53:51.520128981 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.1.0
+Version:1.1.1
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.WR7aQK/_old  2019-06-24 21:53:51.552129006 +0200
+++ /var/tmp/diff_new_pack.WR7aQK/_new  2019-06-24 21:53:51.556129010 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.1.0
+1.1.1
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.WR7aQK/_old  2019-06-24 21:53:51.576129025 +0200
+++ /var/tmp/diff_new_pack.WR7aQK/_new  2019-06-24 21:53:51.576129025 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  31a19c75ddb30350eb5964f943da43741055e10d
\ No newline at end of file
+  3fd7197bc786ad224bf5a5a58bdfbdba1443f6a3
\ No newline at end of file

++ lollypop-1.1.0.tar.xz -> lollypop-1.1.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.0/README.md new/lollypop-1.1.1/README.md
--- old/lollypop-1.1.0/README.md2019-06-20 15:58:34.0 +0200
+++ new/lollypop-1.1.1/README.md2019-06-23 15:43:48.0 +0200
@@ -60,12 +60,12 @@
 # pip3 install pylast
 ```
 
-### On Debian GNU/Linux (Jessie)
+### On Debian/Ubuntu
 
 ```bash
 $ git clone https://gitlab.gnome.org/World/lollypop.git
 $ cd lollypop
-# apt-get install meson libglib2.0-dev yelp-tools libgirepository1.0-dev 
libgtk-3-dev
+# apt-get install meson libglib2.0-dev yelp-tools libgirepository1.0-dev 
libgtk-3-dev gir1.2-totemplparser-1.0
 $ meson builddir --prefix=/usr
 # sudo ninja -C builddir install
 ```
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.0/data/AlbumBannerWidget.ui 
new/lollypop-1.1.1/data/AlbumBannerWidget.ui
--- old/lollypop-1.1.0/data/AlbumBannerWidget.ui2019-06-20 
15:58:34.0 +0200
+++ new/lollypop-1.1.1/data/AlbumBannerWidget.ui2019-06-23 
15:43:48.0 +0200
@@ -83,8 +83,7 @@
 image1
 
 
-  
-  
+  
 
   
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.1.0/data/ArtistView.ui 
new/lollypop-1.1.1/data/ArtistView.ui
--- old/lollypop-1.1.0/data/ArtistView.ui   2019-06-20 15:58:34.0 
+0200
+++ new/lollypop-1.1.1/data/ArtistView.ui   2019-06-23 15:43:48.0 
+0200
@@ -91,7 +91,6 @@
 center
 
   
-48
 True
 True
 True
@@ -99,7 +98,7 @@
 image1
 
 
-  
+  
   
 
   
@@ -111,7 +110,6 @@
 
 
   
-48
 True
 True
 True
@@ -119,7 +117,7 @@
 image3
 
 
-  
+  
   
 
   
@@ -131,7 

commit lollypop for openSUSE:Factory

2019-06-21 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-06-21 09:58:39

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.4811 (New)


Package is "lollypop"

Fri Jun 21 09:58:39 2019 rev:84 rq:711203 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-05-28 
09:44:00.829828735 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.4811/lollypop.changes  
2019-06-21 09:58:41.108688864 +0200
@@ -1,0 +2,8 @@
+Thu Jun 20 18:04:20 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.1.0:
+  * New fullscreen mode.
+  * New MTP sync mode.
+  * New synced lyrics support.
+
+---

Old:

  lollypop-1.0.12.tar.xz

New:

  lollypop-1.1.0.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Tt6Hlt/_old  2019-06-21 09:58:41.900690043 +0200
+++ /var/tmp/diff_new_pack.Tt6Hlt/_new  2019-06-21 09:58:41.904690049 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.12
+Version:1.1.0
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Tt6Hlt/_old  2019-06-21 09:58:41.936690096 +0200
+++ /var/tmp/diff_new_pack.Tt6Hlt/_new  2019-06-21 09:58:41.936690096 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.12
+1.1.0
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Tt6Hlt/_old  2019-06-21 09:58:41.952690120 +0200
+++ /var/tmp/diff_new_pack.Tt6Hlt/_new  2019-06-21 09:58:41.952690120 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  fdcb83e6a3dbd7afa9c479490d124d6603dbc7df
\ No newline at end of file
+  31a19c75ddb30350eb5964f943da43741055e10d
\ No newline at end of file

++ lollypop-1.0.12.tar.xz -> lollypop-1.1.0.tar.xz ++
 64725 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-05-28 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-05-28 09:43:56

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.5148 (New)


Package is "lollypop"

Tue May 28 09:43:56 2019 rev:83 rq:705735 version:1.0.12

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-05-20 
13:18:32.359906375 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.5148/lollypop.changes  
2019-05-28 09:44:00.829828735 +0200
@@ -1,0 +2,12 @@
+Tue May 28 05:31:01 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.12:
+  * Prevent view change upon song rate (glgo#World/lollypop#1826).
+  * Prevent scrollbar to be hidden by artist banner
+(glgo#World/lollypop#1822).
+  * Fix a crash upon click on artist name
+(glgo#World/lollypop#1821).
+  * Prevent application notifications to pop out of the window
+(glgo#World/lollypop#1820).
+
+---

Old:

  lollypop-1.0.11.tar.xz

New:

  lollypop-1.0.12.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.GV9BsT/_old  2019-05-28 09:44:01.665828446 +0200
+++ /var/tmp/diff_new_pack.GV9BsT/_new  2019-05-28 09:44:01.665828446 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.11
+Version:1.0.12
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.GV9BsT/_old  2019-05-28 09:44:01.701828434 +0200
+++ /var/tmp/diff_new_pack.GV9BsT/_new  2019-05-28 09:44:01.701828434 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.11
+1.0.12
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.GV9BsT/_old  2019-05-28 09:44:01.717828428 +0200
+++ /var/tmp/diff_new_pack.GV9BsT/_new  2019-05-28 09:44:01.721828427 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  45682b183defe9b7c8c707fe6b6c290460513045
\ No newline at end of file
+  fdcb83e6a3dbd7afa9c479490d124d6603dbc7df
\ No newline at end of file

++ lollypop-1.0.11.tar.xz -> lollypop-1.0.12.tar.xz ++
 1887 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-05-20 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-05-20 13:18:29

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.5148 (New)


Package is "lollypop"

Mon May 20 13:18:29 2019 rev:82 rq:704132 version:1.0.11

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-05-13 
14:51:27.666927958 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.5148/lollypop.changes  
2019-05-20 13:18:32.359906375 +0200
@@ -1,0 +2,11 @@
+Mon May 20 05:46:29 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.11:
+  * Fix "Stop after" feature (glgo#World/lollypop#1814).
+  * Add resize options for album art (glgo#World/lollypop#1810).
+  * Allow per track cover again (glgo#World/lollypop#1356,
+glgo#World/lollypop#1809).
+  * Locally save albums added from the web
+(glgo#World/lollypop#1807).
+
+---

Old:

  lollypop-1.0.10.tar.xz

New:

  lollypop-1.0.11.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.eGc3NB/_old  2019-05-20 13:18:33.371905394 +0200
+++ /var/tmp/diff_new_pack.eGc3NB/_new  2019-05-20 13:18:33.375905390 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.10
+Version:1.0.11
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.eGc3NB/_old  2019-05-20 13:18:33.403905363 +0200
+++ /var/tmp/diff_new_pack.eGc3NB/_new  2019-05-20 13:18:33.407905359 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.10
+1.0.11
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.eGc3NB/_old  2019-05-20 13:18:33.419905347 +0200
+++ /var/tmp/diff_new_pack.eGc3NB/_new  2019-05-20 13:18:33.419905347 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  f5ad325516d33d189d25e56a33b672019692f292
\ No newline at end of file
+  45682b183defe9b7c8c707fe6b6c290460513045
\ No newline at end of file

++ lollypop-1.0.10.tar.xz -> lollypop-1.0.11.tar.xz ++
 32996 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-05-13 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-05-13 14:51:22

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.5148 (New)


Package is "lollypop"

Mon May 13 14:51:22 2019 rev:81 rq:702462 version:1.0.10

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-05-07 
23:20:55.793187803 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.5148/lollypop.changes  
2019-05-13 14:51:27.666927958 +0200
@@ -1,0 +2,14 @@
+Sun May 12 07:07:26 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.10:
+  * Remove space shortcut to fix search with spaces
+(glgo#World/lollypop#1804).
+  * Fix artist view with multi-disc albums
+(glgo#World/lollypop#1801).
+  * Allow search by performer (glgo#World/lollypop#1802).
+  * Allow scrolling over FastScroll widget
+(glgo#World/lollypop#1803).
+  * Show user what will happen on previous button clicked
+(glgo#World/lollypop#1800).
+
+---

Old:

  lollypop-1.0.9.tar.xz

New:

  lollypop-1.0.10.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.v8lsEe/_old  2019-05-13 14:51:28.710930587 +0200
+++ /var/tmp/diff_new_pack.v8lsEe/_new  2019-05-13 14:51:28.714930597 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.9
+Version:1.0.10
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.v8lsEe/_old  2019-05-13 14:51:28.746930677 +0200
+++ /var/tmp/diff_new_pack.v8lsEe/_new  2019-05-13 14:51:28.746930677 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.9
+1.0.10
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.v8lsEe/_old  2019-05-13 14:51:28.766930728 +0200
+++ /var/tmp/diff_new_pack.v8lsEe/_new  2019-05-13 14:51:28.766930728 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  8ac6846373698cf7f05787758c668c2abfd9e93c
\ No newline at end of file
+  f5ad325516d33d189d25e56a33b672019692f292
\ No newline at end of file

++ lollypop-1.0.9.tar.xz -> lollypop-1.0.10.tar.xz ++
 2063 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-05-07 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-05-07 23:20:52

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.5148 (New)


Package is "lollypop"

Tue May  7 23:20:52 2019 rev:80 rq:701412 version:1.0.9

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-05-05 
21:22:09.561398141 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.5148/lollypop.changes  
2019-05-07 23:20:55.793187803 +0200
@@ -1,0 +2,11 @@
+Tue May 07 17:21:03 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.9:
+  * Add option for stopping playback after track
+(glgo#World/lollypop#1775).
+  * Improve warnings when network access is disabled
+(glgo#World/lollypop#1793).
+  * Fix song switch when crossfading is enabled
+(glgo#World/lollypop#1794).
+
+---

Old:

  lollypop-1.0.8.tar.xz

New:

  lollypop-1.0.9.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.oPSM82/_old  2019-05-07 23:20:56.321189068 +0200
+++ /var/tmp/diff_new_pack.oPSM82/_new  2019-05-07 23:20:56.325189078 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.8
+Version:1.0.9
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.oPSM82/_old  2019-05-07 23:20:56.345189126 +0200
+++ /var/tmp/diff_new_pack.oPSM82/_new  2019-05-07 23:20:56.345189126 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.8
+1.0.9
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.oPSM82/_old  2019-05-07 23:20:56.357189154 +0200
+++ /var/tmp/diff_new_pack.oPSM82/_new  2019-05-07 23:20:56.357189154 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  c0ae16d8540af387e946af9c7ce68ebc7f2d2cba
\ No newline at end of file
+  8ac6846373698cf7f05787758c668c2abfd9e93c
\ No newline at end of file

++ lollypop-1.0.8.tar.xz -> lollypop-1.0.9.tar.xz ++
 10173 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-05-05 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-05-05 21:22:08

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.5148 (New)


Package is "lollypop"

Sun May  5 21:22:08 2019 rev:79 rq:700604 version:1.0.8

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-04-23 
14:36:31.677491772 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.5148/lollypop.changes  
2019-05-05 21:22:09.561398141 +0200
@@ -1,0 +2,9 @@
+Sat May 04 13:19:07 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.8:
+  * Update icon.
+  * Fix short high CPU usage bursts (glgo#World/lollypop#1776).
+  * Use a fixed art size for miniplayer (glgo#World/lollypop#1790).
+  * Add remixers to artist lists (glgo#World/lollypop#1781).
+
+---

Old:

  lollypop-1.0.7.tar.xz

New:

  lollypop-1.0.8.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.oJW17e/_old  2019-05-05 21:22:10.269400070 +0200
+++ /var/tmp/diff_new_pack.oJW17e/_new  2019-05-05 21:22:10.269400070 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.7
+Version:1.0.8
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.oJW17e/_old  2019-05-05 21:22:10.289400124 +0200
+++ /var/tmp/diff_new_pack.oJW17e/_new  2019-05-05 21:22:10.293400135 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.7
+1.0.8
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.oJW17e/_old  2019-05-05 21:22:10.305400167 +0200
+++ /var/tmp/diff_new_pack.oJW17e/_new  2019-05-05 21:22:10.305400167 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  0852d8ae7e001d11a40b4e40d4818eb40fd8afc8
\ No newline at end of file
+  c0ae16d8540af387e946af9c7ce68ebc7f2d2cba
\ No newline at end of file

++ lollypop-1.0.7.tar.xz -> lollypop-1.0.8.tar.xz ++
 2249 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-04-23 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-04-23 14:36:26

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.5536 (New)


Package is "lollypop"

Tue Apr 23 14:36:26 2019 rev:78 rq:696837 version:1.0.7

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-04-17 
10:09:20.574847458 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.5536/lollypop.changes  
2019-04-23 14:36:31.677491772 +0200
@@ -1,0 +2,8 @@
+Mon Apr 22 17:25:11 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.7:
+  * Fix a crash when selecting albums (glgo#World/lollypop#1783).
+  * Fix a crash when browsing for radio station
+(glgo#World/lollypop#1777).
+
+---

Old:

  lollypop-1.0.6.tar.xz

New:

  lollypop-1.0.7.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.elRdf7/_old  2019-04-23 14:36:32.177492105 +0200
+++ /var/tmp/diff_new_pack.elRdf7/_new  2019-04-23 14:36:32.181492107 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.6
+Version:1.0.7
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.elRdf7/_old  2019-04-23 14:36:32.201492121 +0200
+++ /var/tmp/diff_new_pack.elRdf7/_new  2019-04-23 14:36:32.201492121 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.6
+1.0.7
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.elRdf7/_old  2019-04-23 14:36:32.217492131 +0200
+++ /var/tmp/diff_new_pack.elRdf7/_new  2019-04-23 14:36:32.217492131 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  47c54ad4c691720fb705de7e7e932c2c450e97a0
\ No newline at end of file
+  0852d8ae7e001d11a40b4e40d4818eb40fd8afc8
\ No newline at end of file

++ lollypop-1.0.6.tar.xz -> lollypop-1.0.7.tar.xz ++
 17506 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-04-17 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-04-17 10:09:03

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.17052 (New)


Package is "lollypop"

Wed Apr 17 10:09:03 2019 rev:77 rq:694675 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-04-03 
09:28:41.295834265 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.17052/lollypop.changes 
2019-04-17 10:09:20.574847458 +0200
@@ -1,0 +2,9 @@
+Tue Apr 16 05:38:56 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.6:
+  * Bug fixes.
+  * Workaround a pygobject memory leak (glgo#World/lollypop#1773).
+  * Enhanced MusicBrainz tags support.
+  * Remove lollypop-cli, not maintained and not working.
+
+---

Old:

  lollypop-1.0.5.tar.xz

New:

  lollypop-1.0.6.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.BsOLbt/_old  2019-04-17 10:09:21.734848796 +0200
+++ /var/tmp/diff_new_pack.BsOLbt/_new  2019-04-17 10:09:21.738848801 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.5
+Version:1.0.6
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -101,7 +101,6 @@
 %doc AUTHORS README.md
 %license LICENSE
 %{_bindir}/%{name}
-%{_bindir}/%{name}-cli
 %exclude %{_libexecdir}/lollypop-sp
 %{_datadir}/%{name}
 %{_datadir}/metainfo/org.gnome.Lollypop.appdata.xml

++ _service ++
--- /var/tmp/diff_new_pack.BsOLbt/_old  2019-04-17 10:09:21.766848833 +0200
+++ /var/tmp/diff_new_pack.BsOLbt/_new  2019-04-17 10:09:21.766848833 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.5
+1.0.6
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.BsOLbt/_old  2019-04-17 10:09:21.782848851 +0200
+++ /var/tmp/diff_new_pack.BsOLbt/_new  2019-04-17 10:09:21.782848851 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  96a8fb8b6be395fab4ca39a794c6d3c09be99426
\ No newline at end of file
+  47c54ad4c691720fb705de7e7e932c2c450e97a0
\ No newline at end of file

++ lollypop-1.0.5.tar.xz -> lollypop-1.0.6.tar.xz ++
 6150 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-04-03 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-04-03 09:28:38

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.25356 (New)


Package is "lollypop"

Wed Apr  3 09:28:38 2019 rev:76 rq:690765 version:1.0.5

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-04-02 
09:23:44.620767811 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new.25356/lollypop.changes 
2019-04-03 09:28:41.295834265 +0200
@@ -1,0 +2,7 @@
+Tue Apr 02 17:57:52 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.5:
+  * Fix a crash while scanning collection
+(glgo#World/lollypop#1763).
+
+---

Old:

  lollypop-1.0.4.tar.xz

New:

  lollypop-1.0.5.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.6xAB5w/_old  2019-04-03 09:28:42.251834715 +0200
+++ /var/tmp/diff_new_pack.6xAB5w/_new  2019-04-03 09:28:42.251834715 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.4
+Version:1.0.5
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.6xAB5w/_old  2019-04-03 09:28:42.275834726 +0200
+++ /var/tmp/diff_new_pack.6xAB5w/_new  2019-04-03 09:28:42.275834726 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.4
+1.0.5
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.6xAB5w/_old  2019-04-03 09:28:42.291834734 +0200
+++ /var/tmp/diff_new_pack.6xAB5w/_new  2019-04-03 09:28:42.291834734 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  6029377ad22159c077f7a53764b48cbf81aff610
\ No newline at end of file
+  96a8fb8b6be395fab4ca39a794c6d3c09be99426
\ No newline at end of file

++ lollypop-1.0.4.tar.xz -> lollypop-1.0.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.0.4/lollypop/view_albums_list.py 
new/lollypop-1.0.5/lollypop/view_albums_list.py
--- old/lollypop-1.0.4/lollypop/view_albums_list.py 2019-04-01 
18:33:50.0 +0200
+++ new/lollypop-1.0.5/lollypop/view_albums_list.py 2019-04-02 
18:26:05.0 +0200
@@ -651,7 +651,7 @@
 @param album_id as int
 @param added as bool
 """
-if self._view_type & ViewType.SEARCH:
+if self._view_type & (ViewType.SEARCH | ViewType.DND):
 return
 if added:
 album_ids = App().window.container.get_view_album_ids(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.0.4/meson.build 
new/lollypop-1.0.5/meson.build
--- old/lollypop-1.0.4/meson.build  2019-04-01 18:33:50.0 +0200
+++ new/lollypop-1.0.5/meson.build  2019-04-02 18:26:05.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.0.4',
+  version: '1.0.5',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-04-02 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-04-02 09:23:42

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.25356 (New)


Package is "lollypop"

Tue Apr  2 09:23:42 2019 rev:75 rq:690437 version:1.0.4

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-03-29 
20:43:42.074681345 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.25356/lollypop.changes 
2019-04-02 09:23:44.620767811 +0200
@@ -1,0 +2,9 @@
+Mon Apr 01 17:24:02 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.4:
+  * New privacy settings.
+  * Fix a crash (glgo#World/lollypop#1761).
+  * Fix back arrow displayed in "All artists" view.
+(glgo#World/lollypop#1756).
+
+---

Old:

  lollypop-1.0.3.tar.xz

New:

  lollypop-1.0.4.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.zyQefr/_old  2019-04-02 09:23:45.188768192 +0200
+++ /var/tmp/diff_new_pack.zyQefr/_new  2019-04-02 09:23:45.192768195 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.3
+Version:1.0.4
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.zyQefr/_old  2019-04-02 09:23:45.212768208 +0200
+++ /var/tmp/diff_new_pack.zyQefr/_new  2019-04-02 09:23:45.212768208 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.3
+1.0.4
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.zyQefr/_old  2019-04-02 09:23:45.228768219 +0200
+++ /var/tmp/diff_new_pack.zyQefr/_new  2019-04-02 09:23:45.228768219 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  56cbeb3e0783adbbbdf86e8f2c30d356eb7648cc
\ No newline at end of file
+  6029377ad22159c077f7a53764b48cbf81aff610
\ No newline at end of file

++ lollypop-1.0.3.tar.xz -> lollypop-1.0.4.tar.xz ++
 29995 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-03-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-03-29 20:43:40

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.25356 (New)


Package is "lollypop"

Fri Mar 29 20:43:40 2019 rev:74 rq:689816 version:1.0.3

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-03-24 
15:00:55.467172188 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.25356/lollypop.changes 
2019-03-29 20:43:42.074681345 +0100
@@ -1,0 +2,10 @@
+Fri Mar 29 06:33:02 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.3:
+  * Fix a crash in Smart Playlists
+  * Add BPM support to Smart Playlists (glgo#World/lollypop#1750).
+  * Add auto playback (glgo#World/lollypop#1748).
+  * Force background color (glgo#World/lollypop#1754).
+  * Fix a crash during startup (glgo#World/lollypop#1751).
+
+---

Old:

  lollypop-1.0.2.tar.xz

New:

  lollypop-1.0.3.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.yFQ6uh/_old  2019-03-29 20:43:42.742681482 +0100
+++ /var/tmp/diff_new_pack.yFQ6uh/_new  2019-03-29 20:43:42.746681482 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.yFQ6uh/_old  2019-03-29 20:43:42.774681487 +0100
+++ /var/tmp/diff_new_pack.yFQ6uh/_new  2019-03-29 20:43:42.774681487 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.0.2
+1.0.3
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.yFQ6uh/_old  2019-03-29 20:43:42.790681491 +0100
+++ /var/tmp/diff_new_pack.yFQ6uh/_new  2019-03-29 20:43:42.790681491 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  8e6fbe2294bbdfe3c3ee5889c2093d9274618e04
\ No newline at end of file
+  56cbeb3e0783adbbbdf86e8f2c30d356eb7648cc
\ No newline at end of file

++ lollypop-1.0.2.tar.xz -> lollypop-1.0.3.tar.xz ++
 36950 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-03-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-03-24 15:00:47

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.25356 (New)


Package is "lollypop"

Sun Mar 24 15:00:47 2019 rev:73 rq:687773 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-03-19 
10:03:02.591799566 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.25356/lollypop.changes 
2019-03-24 15:00:55.467172188 +0100
@@ -1,0 +2,12 @@
+Fri Mar 22 17:07:29 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0.2:
+  * Fix a crossfading issue.
+- Changes from version 1.0.1:
+  * Force connect when network is available
+(glgo#World/lollypop#1588).
+  * Fix a crash on empty collection (glgo#World/lollypop#1712).
+  * Do not empty collection if disk is removed.
+  * Fix search provider.
+
+---

Old:

  lollypop-1.0.tar.xz

New:

  lollypop-1.0.2.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.VLNzKd/_old  2019-03-24 15:00:58.303171825 +0100
+++ /var/tmp/diff_new_pack.VLNzKd/_new  2019-03-24 15:00:58.307171824 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:1.0
+Version:1.0.2
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.VLNzKd/_old  2019-03-24 15:00:58.327171822 +0100
+++ /var/tmp/diff_new_pack.VLNzKd/_new  2019-03-24 15:00:58.327171822 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-1.0
+1.0.2
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.VLNzKd/_old  2019-03-24 15:00:58.339171820 +0100
+++ /var/tmp/diff_new_pack.VLNzKd/_new  2019-03-24 15:00:58.339171820 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  76314fd896f7fb0f15b8934c1e03bec0996cafcf
\ No newline at end of file
+  8e6fbe2294bbdfe3c3ee5889c2093d9274618e04
\ No newline at end of file

++ lollypop-1.0.tar.xz -> lollypop-1.0.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.0/data/AboutDialog.ui.in 
new/lollypop-1.0.2/data/AboutDialog.ui.in
--- old/lollypop-1.0/data/AboutDialog.ui.in 2019-03-18 22:19:27.0 
+0100
+++ new/lollypop-1.0.2/data/AboutDialog.ui.in   2019-03-22 09:19:22.0 
+0100
@@ -9,7 +9,7 @@
 normal
 Lollypop
 @VERSION@
-Copyright © 2014-2018 Cédric 
Bellegarde
+Copyright © 2014-2019 Cédric 
Bellegarde
 A music player for 
GNOME.
 @PACKAGE_URL@
 Visit Lollypop 
website
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.0/lollypop/collectionscanner.py 
new/lollypop-1.0.2/lollypop/collectionscanner.py
--- old/lollypop-1.0/lollypop/collectionscanner.py  2019-03-18 
22:19:27.0 +0100
+++ new/lollypop-1.0.2/lollypop/collectionscanner.py2019-03-22 
09:19:22.0 +0100
@@ -253,7 +253,15 @@
 """
 files = []
 dirs = []
-walk_uris = list(uris)
+walk_uris = []
+# Check collection exists
+for uri in uris:
+f = Gio.File.new_for_uri(uri)
+if f.query_exists():
+walk_uris.append(uri)
+else:
+return (None, None)
+
 while walk_uris:
 uri = walk_uris.pop(0)
 try:
@@ -298,6 +306,11 @@
 """
 (files, dirs) = self.__get_objects_for_uris(scan_type, uris)
 
+if files is None:
+if App().notify is not None:
+App().notify.send(_("Scan disabled, missing collection"))
+return
+
 if scan_type == ScanType.NEW_FILES:
 db_uris = App().tracks.get_uris(uris)
 else:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.0/lollypop/lastfm.py 
new/lollypop-1.0.2/lollypop/lastfm.py
--- old/lollypop-1.0/lollypop/lastfm.py 2019-03-18 22:19:27.0 +0100
+++ new/lollypop-1.0.2/lollypop/lastfm.py   2019-03-22 09:19:22.0 
+0100
@@ -82,6 +82,8 @@
api_key=self.__API_KEY,
api_secret=self.__API_SECRET)
 self.connect()
+Gio.NetworkMonitor.get_default().connect("notify::network-available",
+ self.__on_network_available)
 
 def connect(self, full_sync=False, callback=None, *args):
  

commit lollypop for openSUSE:Factory

2019-03-19 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-03-19 10:03:00

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Tue Mar 19 10:03:00 2019 rev:72 rq:686239 version:1.0

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-03-14 
15:02:40.755673343 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-03-19 10:03:02.591799566 +0100
@@ -1,0 +2,9 @@
+Mon Mar 18 21:51:19 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 1.0:
+  * Spotify/YouTube support is back.
+  * New application menu.
+  * Many bug fixes.
+- Add youtube-dl as recommended dependency.
+
+---

Old:

  lollypop-0.9.925.tar.xz

New:

  lollypop-1.0.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.89S33r/_old  2019-03-19 10:03:03.883798374 +0100
+++ /var/tmp/diff_new_pack.89S33r/_new  2019-03-19 10:03:03.911798348 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.925
+Version:1.0
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -44,6 +44,7 @@
 Recommends: easytag
 Recommends: kid3-cli
 Recommends: python3-wikipedia
+Recommends: youtube-dl
 Suggests:   python3-textblob
 BuildArch:  noarch
 

++ _service ++
--- /var/tmp/diff_new_pack.89S33r/_old  2019-03-19 10:03:04.343797950 +0100
+++ /var/tmp/diff_new_pack.89S33r/_new  2019-03-19 10:03:04.371797924 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.925
+1.0
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.89S33r/_old  2019-03-19 10:03:04.551797758 +0100
+++ /var/tmp/diff_new_pack.89S33r/_new  2019-03-19 10:03:04.579797732 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  919db6bb5a7d6c2d96662e4a83ba59833a2f3f07
\ No newline at end of file
+  76314fd896f7fb0f15b8934c1e03bec0996cafcf
\ No newline at end of file

++ lollypop-0.9.925.tar.xz -> lollypop-1.0.tar.xz ++
 66369 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-03-14 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-03-14 15:02:21

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Thu Mar 14 15:02:21 2019 rev:71 rq:684859 version:0.9.925

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-03-04 
09:24:46.420553492 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-03-14 15:02:40.755673343 +0100
@@ -1,0 +2,6 @@
+Thu Mar 14 09:02:04 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.925:
+  * Fix a crash in device manager (glgo#World/lollypop#1698).
+
+---

Old:

  lollypop-0.9.924.tar.xz

New:

  lollypop-0.9.925.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.z6D5GJ/_old  2019-03-14 15:02:43.491672499 +0100
+++ /var/tmp/diff_new_pack.z6D5GJ/_new  2019-03-14 15:02:43.495672498 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.924
+Version:0.9.925
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.z6D5GJ/_old  2019-03-14 15:02:43.523672489 +0100
+++ /var/tmp/diff_new_pack.z6D5GJ/_new  2019-03-14 15:02:43.523672489 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.924
+0.9.925
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.z6D5GJ/_old  2019-03-14 15:02:43.539672484 +0100
+++ /var/tmp/diff_new_pack.z6D5GJ/_new  2019-03-14 15:02:43.539672484 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  c1c1b13f8291845d783c9dc96f35bb75fa183aaf
\ No newline at end of file
+  919db6bb5a7d6c2d96662e4a83ba59833a2f3f07
\ No newline at end of file

++ lollypop-0.9.924.tar.xz -> lollypop-0.9.925.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.924/lollypop/cellrenderer.py 
new/lollypop-0.9.925/lollypop/cellrenderer.py
--- old/lollypop-0.9.924/lollypop/cellrenderer.py   2019-03-03 
18:47:53.0 +0100
+++ new/lollypop-0.9.925/lollypop/cellrenderer.py   2019-03-10 
21:03:44.0 +0100
@@ -33,6 +33,8 @@
  ArtSize.MEDIUM,
  ArtSize.MEDIUM,
  scale_factor)
+if pixbuf is None:
+pixbuf = self.__get_default_pixbuf()
 surface = Gdk.cairo_surface_create_from_pixbuf(
 pixbuf, scale_factor, None)
 width = surface.get_width()
@@ -72,6 +74,32 @@
 def do_get_preferred_height(self, widget):
 return self.do_get_preferred_width(widget)
 
+###
+# PRIVATE #
+###
+def __get_default_pixbuf(self):
+# get a small pixbuf with the given path
+icon_size = ArtSize.MEDIUM / 4
+icon = Gtk.IconTheme.get_default().load_icon("folder-music-symbolic",
+ icon_size, 0)
+# create an empty pixbuf with the requested size
+pixbuf = GdkPixbuf.Pixbuf.new(icon.get_colorspace(),
+  True,
+  icon.get_bits_per_sample(),
+  ArtSize.MEDIUM,
+  ArtSize.MEDIUM)
+pixbuf.fill(0x)
+icon.composite(pixbuf,
+   icon_size * 3 / 2,
+   icon_size * 3 / 2,
+   icon_size,
+   icon_size,
+   icon_size * 3 / 2,
+   icon_size * 3 / 2,
+   1, 1,
+   GdkPixbuf.InterpType.NEAREST, 255)
+return pixbuf
+
 
 class CellRendererArtist(Gtk.CellRendererText):
 rowid = GObject.Property(type=int)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.924/meson.build 
new/lollypop-0.9.925/meson.build
--- old/lollypop-0.9.924/meson.build2019-03-03 18:47:53.0 +0100
+++ new/lollypop-0.9.925/meson.build2019-03-10 21:03:44.0 +0100
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '0.9.924',
+  version: '0.9.925',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')




commit lollypop for openSUSE:Factory

2019-03-04 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-03-04 09:24:15

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Mon Mar  4 09:24:15 2019 rev:70 rq:681123 version:0.9.924

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-02-28 
21:44:32.189496067 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-03-04 09:24:46.420553492 +0100
@@ -1,0 +2,6 @@
+Sun Mar 03 17:57:47 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.924:
+  * Fix an issue with compilations.
+
+---

Old:

  lollypop-0.9.923.tar.xz

New:

  lollypop-0.9.924.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.eF4Ayg/_old  2019-03-04 09:24:47.160553359 +0100
+++ /var/tmp/diff_new_pack.eF4Ayg/_new  2019-03-04 09:24:47.164553358 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.923
+Version:0.9.924
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.eF4Ayg/_old  2019-03-04 09:24:47.204553351 +0100
+++ /var/tmp/diff_new_pack.eF4Ayg/_new  2019-03-04 09:24:47.204553351 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.923
+0.9.924
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.eF4Ayg/_old  2019-03-04 09:24:47.240553345 +0100
+++ /var/tmp/diff_new_pack.eF4Ayg/_new  2019-03-04 09:24:47.240553345 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e104f4356cc91ef45078c888aeae8e76c3dbff42
\ No newline at end of file
+  c1c1b13f8291845d783c9dc96f35bb75fa183aaf
\ No newline at end of file

++ lollypop-0.9.923.tar.xz -> lollypop-0.9.924.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.923/data/MiniPlayer.ui 
new/lollypop-0.9.924/data/MiniPlayer.ui
--- old/lollypop-0.9.923/data/MiniPlayer.ui 2019-02-27 18:12:43.0 
+0100
+++ new/lollypop-0.9.924/data/MiniPlayer.ui 2019-03-03 18:47:53.0 
+0100
@@ -175,9 +175,9 @@
 False
 end
 10
+20
 
   
-80
 True
 False
 True
@@ -199,7 +199,6 @@
 
 
   
-100
 True
 False
 True
@@ -221,7 +220,6 @@
 
 
   
-80
 True
 False
 True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.923/lollypop/collectionscanner.py 
new/lollypop-0.9.924/lollypop/collectionscanner.py
--- old/lollypop-0.9.923/lollypop/collectionscanner.py  2019-02-27 
18:12:43.0 +0100
+++ new/lollypop-0.9.924/lollypop/collectionscanner.py  2019-03-03 
18:47:53.0 +0100
@@ -476,32 +476,32 @@
 except Exception as e:
 Logger.error("CollectionScanner::__del_from_db: %s" % e)
 
-def __update_album(self, album_id, album_artist_ids,
-   genre_ids, year, timestamp):
+def __update_album(self, album_id, artist_ids, genre_ids, year, timestamp):
 """
 Update album artists based on album-artist and artist tags
 This code auto handle compilations: empty "album artist" with
 different artists
-@param album_id as int
-@param album_artist_ids as [int]
-@param genre_ids as [int]
+@param album id as int
+@param artist ids as [int]
+@param genre ids as [int]
 @param year as int
 @param timestmap as int
 @commit needed
 """
+album_artist_ids = []
 add = True
 # Set artist ids based on content
-if not album_artist_ids:
+if not artist_ids:
 new_artist_ids = App().albums.calculate_artist_ids(album_id)
 current_artist_ids = App().albums.get_artist_ids(album_id)
 if new_artist_ids != current_artist_ids:
+album_artist_ids = new_artist_ids
 if Type.COMPILATIONS in new_artist_ids:
 add = False
 

commit lollypop for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-02-28 21:44:27

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Thu Feb 28 21:44:27 2019 rev:69 rq:679941 version:0.9.923

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-02-26 
22:22:16.422068869 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-02-28 21:44:32.189496067 +0100
@@ -1,0 +2,10 @@
+Wed Feb 27 18:10:56 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.923:
+  * Fix a crash when adding a track to a playlist
+(glgo#World/lollypop#1684).
+  * Update icons using colors of the GNOME palette.
+  * Replace Ctrl+s with Ctrl+, for accessing settings
+(glgo#World/lollypop#1623).
+
+---

Old:

  lollypop-0.9.922.tar.xz

New:

  lollypop-0.9.923.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Fw6kG1/_old  2019-02-28 21:44:32.733495835 +0100
+++ /var/tmp/diff_new_pack.Fw6kG1/_new  2019-02-28 21:44:32.733495835 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.922
+Version:0.9.923
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Fw6kG1/_old  2019-02-28 21:44:32.761495823 +0100
+++ /var/tmp/diff_new_pack.Fw6kG1/_new  2019-02-28 21:44:32.761495823 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.922
+0.9.923
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Fw6kG1/_old  2019-02-28 21:44:32.773495817 +0100
+++ /var/tmp/diff_new_pack.Fw6kG1/_new  2019-02-28 21:44:32.773495817 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  1234f9b9e90d25be6d2ed277d8601ce42da0d98d
\ No newline at end of file
+  e104f4356cc91ef45078c888aeae8e76c3dbff42
\ No newline at end of file

++ lollypop-0.9.922.tar.xz -> lollypop-0.9.923.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.922/data/Shortcuts.ui 
new/lollypop-0.9.923/data/Shortcuts.ui
--- old/lollypop-0.9.922/data/Shortcuts.ui  2019-02-25 16:34:22.0 
+0100
+++ new/lollypop-0.9.923/data/Shortcuts.ui  2019-02-27 18:12:43.0 
+0100
@@ -15,7 +15,7 @@
   
 True
 Settings
-PrimaryS
+Primary,
   
 
 
Binary files 
old/lollypop-0.9.922/data/icons/hicolor/16x16/apps/org.gnome.Lollypop.png and 
new/lollypop-0.9.923/data/icons/hicolor/16x16/apps/org.gnome.Lollypop.png differ
Binary files 
old/lollypop-0.9.922/data/icons/hicolor/22x22/apps/org.gnome.Lollypop.png and 
new/lollypop-0.9.923/data/icons/hicolor/22x22/apps/org.gnome.Lollypop.png differ
Binary files 
old/lollypop-0.9.922/data/icons/hicolor/256x256/apps/org.gnome.Lollypop.png and 
new/lollypop-0.9.923/data/icons/hicolor/256x256/apps/org.gnome.Lollypop.png 
differ
Binary files 
old/lollypop-0.9.922/data/icons/hicolor/32x32/apps/org.gnome.Lollypop.png and 
new/lollypop-0.9.923/data/icons/hicolor/32x32/apps/org.gnome.Lollypop.png differ
Binary files 
old/lollypop-0.9.922/data/icons/hicolor/48x48/apps/org.gnome.Lollypop.png and 
new/lollypop-0.9.923/data/icons/hicolor/48x48/apps/org.gnome.Lollypop.png differ
Binary files 
old/lollypop-0.9.922/data/icons/hicolor/512x512/apps/org.gnome.Lollypop.png and 
new/lollypop-0.9.923/data/icons/hicolor/512x512/apps/org.gnome.Lollypop.png 
differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.922/data/icons/hicolor/scalable/apps/org.gnome.Lollypop.svg 
new/lollypop-0.9.923/data/icons/hicolor/scalable/apps/org.gnome.Lollypop.svg
--- 
old/lollypop-0.9.922/data/icons/hicolor/scalable/apps/org.gnome.Lollypop.svg
2019-02-25 16:34:22.0 +0100
+++ 
new/lollypop-0.9.923/data/icons/hicolor/scalable/apps/org.gnome.Lollypop.svg
2019-02-27 18:12:43.0 +0100
@@ -17,7 +17,7 @@
height="250"
id="svg11300"
sodipodi:version="0.32"
-   inkscape:version="0.92.2 2405546, 2018-03-11"
+   inkscape:version="0.92.4 (unknown)"
sodipodi:docname="org.gnome.Lollypop.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0"
@@ -34,17 +34,17 @@
  inkscape:pageopacity="0"
  inkscape:pageshadow="2"
  inkscape:zoom="1.4142136"
- inkscape:cx="35.149546"
- 

commit lollypop for openSUSE:Factory

2019-02-26 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-02-26 22:20:45

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Tue Feb 26 22:20:45 2019 rev:68 rq:679055 version:0.9.922

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-02-20 
14:14:48.210869729 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-02-26 22:22:16.422068869 +0100
@@ -1,0 +2,8 @@
+Mon Feb 25 19:12:24 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.922:
+  * Enhanced adaptive mode.
+  * Reworked similar artists popover.
+  * Bug fixes.
+
+---

Old:

  lollypop-0.9.921.tar.xz

New:

  lollypop-0.9.922.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.xikERu/_old  2019-02-26 22:22:16.926068691 +0100
+++ /var/tmp/diff_new_pack.xikERu/_new  2019-02-26 22:22:16.926068691 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.921
+Version:0.9.922
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -36,10 +36,10 @@
 # https://bugzilla.gnome.org/show_bug.cgi?id=656330
 Requires:   dbus-1-python3
 Requires:   gstreamer-plugins-base
+Requires:   python3-Pillow
 Requires:   python3-beautifulsoup4
 Requires:   python3-cairo
 Requires:   python3-gobject
-Requires:   python3-Pillow
 Requires:   python3-pylast
 Recommends: easytag
 Recommends: kid3-cli

++ _service ++
--- /var/tmp/diff_new_pack.xikERu/_old  2019-02-26 22:22:16.950068682 +0100
+++ /var/tmp/diff_new_pack.xikERu/_new  2019-02-26 22:22:16.954068680 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.921
+0.9.922
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.xikERu/_old  2019-02-26 22:22:16.970068675 +0100
+++ /var/tmp/diff_new_pack.xikERu/_new  2019-02-26 22:22:16.970068675 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  640c742d138e60ac28c2b98ca4102c056816cd13
\ No newline at end of file
+  1234f9b9e90d25be6d2ed277d8601ce42da0d98d
\ No newline at end of file

++ lollypop-0.9.921.tar.xz -> lollypop-0.9.922.tar.xz ++
 33911 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-02-20 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-02-20 14:14:44

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Wed Feb 20 14:14:44 2019 rev:67 rq:677602 version:0.9.921

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-02-01 
11:45:51.632526904 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-02-20 14:14:48.210869729 +0100
@@ -1,0 +2,18 @@
+Wed Feb 20 07:23:35 UTC 2019 - Atri Bhattacharya 
+
+- python3-Pillow is required rather than recommended since
+  version 0.9.920.
+
+---
+Tue Feb 19 19:20:26 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.921:
+  * Fix an issue with HiDPI.
+  * Fix an issue with special chars.
+  * Allow year navigation from album.
+- Changes from version 0.9.920:
+  * Add an equalizer.
+  * New album view.
+  * New default sidebar.
+
+---

Old:

  lollypop-0.9.916.tar.xz

New:

  lollypop-0.9.921.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.LiT8Hp/_old  2019-02-20 14:14:48.754869546 +0100
+++ /var/tmp/diff_new_pack.LiT8Hp/_new  2019-02-20 14:14:48.758869544 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.916
+Version:0.9.921
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -39,10 +39,10 @@
 Requires:   python3-beautifulsoup4
 Requires:   python3-cairo
 Requires:   python3-gobject
+Requires:   python3-Pillow
 Requires:   python3-pylast
 Recommends: easytag
 Recommends: kid3-cli
-Recommends: python3-Pillow
 Recommends: python3-wikipedia
 Suggests:   python3-textblob
 BuildArch:  noarch

++ _service ++
--- /var/tmp/diff_new_pack.LiT8Hp/_old  2019-02-20 14:14:48.790869534 +0100
+++ /var/tmp/diff_new_pack.LiT8Hp/_new  2019-02-20 14:14:48.790869534 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.916
+0.9.921
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.LiT8Hp/_old  2019-02-20 14:14:48.806869529 +0100
+++ /var/tmp/diff_new_pack.LiT8Hp/_new  2019-02-20 14:14:48.806869529 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  8a6b84f0bd565d1d764aadc29de3fa61a78df335
\ No newline at end of file
+  640c742d138e60ac28c2b98ca4102c056816cd13
\ No newline at end of file

++ lollypop-0.9.916.tar.xz -> lollypop-0.9.921.tar.xz ++
 79827 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-02-01 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-02-01 11:45:51

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Fri Feb  1 11:45:51 2019 rev:66 rq:669975 version:0.9.916

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-01-25 
22:45:14.135089864 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-02-01 11:45:51.632526904 +0100
@@ -1,0 +2,16 @@
+Tue Jan 29 19:57:41 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.916:
+  * Fix inotify code.
+  * Faster collection scanner.
+
+---
+Sat Jan 26 13:14:00 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.915:
+  * Fix an issue with artist playback (glgo#World/lollypop#1611).
+  * Fix an issue with lyrics (glgo#World/lollypop#1606).
+  * Fix an issue in collection scanner.
+  * Fix an issue with collection history.
+
+---

Old:

  lollypop-0.9.914.tar.xz

New:

  lollypop-0.9.916.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.nStfcX/_old  2019-02-01 11:45:52.164526357 +0100
+++ /var/tmp/diff_new_pack.nStfcX/_new  2019-02-01 11:45:52.164526357 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.914
+Version:0.9.916
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.nStfcX/_old  2019-02-01 11:45:52.192526329 +0100
+++ /var/tmp/diff_new_pack.nStfcX/_new  2019-02-01 11:45:52.192526329 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.914
+0.9.916
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.nStfcX/_old  2019-02-01 11:45:52.204526316 +0100
+++ /var/tmp/diff_new_pack.nStfcX/_new  2019-02-01 11:45:52.208526312 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  ddb232d9eb8d91917e3eb12192f1006d1f498990
\ No newline at end of file
+  8a6b84f0bd565d1d764aadc29de3fa61a78df335
\ No newline at end of file

++ lollypop-0.9.914.tar.xz -> lollypop-0.9.916.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.914/data/application.css 
new/lollypop-0.9.916/data/application.css
--- old/lollypop-0.9.914/data/application.css   2019-01-23 19:00:51.0 
+0100
+++ new/lollypop-0.9.916/data/application.css   2019-01-29 07:05:19.0 
+0100
@@ -57,6 +57,7 @@
 
 .progress-bottom {
 border: none;
+border-radius: 0px;
 background-color: transparent;
 background-image: none;
 padding-top: 0px;
@@ -69,11 +70,13 @@
 background-color: @theme_selected_bg_color;
 background-image: none;
 border: none;
+border-radius: 0px;
 min-height: 6px;
 }
 
 .progress-bottom trough {
 border: none;
+border-radius: 0px;
 background-color: transparent;
 background-image: none;
 min-height: 6px;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.914/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.916/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.914/data/org.gnome.Lollypop.appdata.xml.in 2019-01-23 
19:00:51.0 +0100
+++ new/lollypop-0.9.916/data/org.gnome.Lollypop.appdata.xml.in 2019-01-29 
07:05:19.0 +0100
@@ -27,9 +27,10 @@
 
   
   
-
+
   
-Fix issues in collection scanner
+Fix inotify code
+Faster collection scanner
   
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.914/lollypop/application.py 
new/lollypop-0.9.916/lollypop/application.py
--- old/lollypop-0.9.914/lollypop/application.py2019-01-23 
19:00:51.0 +0100
+++ new/lollypop-0.9.916/lollypop/application.py2019-01-29 
07:05:19.0 +0100
@@ -38,7 +38,7 @@
 from lollypop.utils import set_proxy_from_gnome
 from lollypop.application_actions import ApplicationActions
 from lollypop.utils import is_audio, is_pls
-from lollypop.define import Type, LOLLYPOP_DATA_PATH
+from lollypop.define import Type, LOLLYPOP_DATA_PATH, ScanType
 from lollypop.window import Window
 from lollypop.database import Database
 from lollypop.player import Player
@@ -472,7 +472,7 @@
 """
 def scanner_update():
 self.__scanner_timeout_id = None
- 

commit lollypop for openSUSE:Factory

2019-01-25 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-01-25 22:45:11

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Fri Jan 25 22:45:11 2019 rev:65 rq:668417 version:0.9.914

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-01-24 
14:12:42.211411739 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-01-25 22:45:14.135089864 +0100
@@ -1,0 +2,9 @@
+Wed Jan 23 19:25:25 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.914:
+  * Fix a crash in radios (glgo#World/lollypop#1606).
+- Changes from version 0.9.913:
+  * Fix issues in collection scanner.
+  * Enhance mini-player (glgo#World/lollypop#1607).
+
+---

Old:

  lollypop-0.9.912.tar.xz

New:

  lollypop-0.9.914.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.upkuKD/_old  2019-01-25 22:45:15.067088715 +0100
+++ /var/tmp/diff_new_pack.upkuKD/_new  2019-01-25 22:45:15.071088711 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.912
+Version:0.9.914
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.upkuKD/_old  2019-01-25 22:45:15.099088675 +0100
+++ /var/tmp/diff_new_pack.upkuKD/_new  2019-01-25 22:45:15.099088675 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.912
+0.9.914
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.upkuKD/_old  2019-01-25 22:45:15.115088656 +0100
+++ /var/tmp/diff_new_pack.upkuKD/_new  2019-01-25 22:45:15.115088656 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  d3a808d4a3274bf9b9a4c670c5433227eca5094b
\ No newline at end of file
+  ddb232d9eb8d91917e3eb12192f1006d1f498990
\ No newline at end of file

++ lollypop-0.9.912.tar.xz -> lollypop-0.9.914.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.912/data/MiniPlayer.ui 
new/lollypop-0.9.914/data/MiniPlayer.ui
--- old/lollypop-0.9.912/data/MiniPlayer.ui 2019-01-18 17:24:14.0 
+0100
+++ new/lollypop-0.9.914/data/MiniPlayer.ui 2019-01-23 19:00:51.0 
+0100
@@ -1,10 +1,12 @@
 
-
+
 
   
   
 True
 False
+
+
 
   
 True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.912/data/application.css 
new/lollypop-0.9.914/data/application.css
--- old/lollypop-0.9.912/data/application.css   2019-01-18 17:24:14.0 
+0100
+++ new/lollypop-0.9.914/data/application.css   2019-01-23 19:00:51.0 
+0100
@@ -242,6 +242,16 @@
 border-radius: 50%;
 }
 
+.slow-show {
+transition: 1000ms linear;
+opacity: 1;
+}
+
+.slow-hide {
+transition: 1000ms linear;
+opacity: 0;
+}
+
 .rounded-icon {
 background: none;
 border: none;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.912/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.914/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.912/data/org.gnome.Lollypop.appdata.xml.in 2019-01-18 
17:24:14.0 +0100
+++ new/lollypop-0.9.914/data/org.gnome.Lollypop.appdata.xml.in 2019-01-23 
19:00:51.0 +0100
@@ -27,9 +27,9 @@
 
   
   
-
+
   
-Fix an issue with playback
+Fix issues in collection scanner
   
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.912/lollypop/application.py 
new/lollypop-0.9.914/lollypop/application.py
--- old/lollypop-0.9.912/lollypop/application.py2019-01-18 
17:24:14.0 +0100
+++ new/lollypop-0.9.914/lollypop/application.py2019-01-23 
19:00:51.0 +0100
@@ -112,6 +112,8 @@
 self.debug = False
 self.shown_sidebar_tooltip = False
 self.__fs = None
+self.__scanner_timeout_id = None
+self.__scanner_uris = []
 GLib.set_application_name("Lollypop")
 GLib.set_prgname("lollypop")
 self.add_main_option("play-ids", b"a", GLib.OptionFlags.NONE,
@@ -436,6 +438,12 @@
 uris.append(uri)
 elif is_pls(f):
 pls.append(uri)
+else:
+info = f.query_info(Gio.FILE_ATTRIBUTE_STANDARD_TYPE,
+ 

commit lollypop for openSUSE:Factory

2019-01-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-01-24 14:12:39

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Thu Jan 24 14:12:39 2019 rev:64 rq:667666 version:0.9.912

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-01-21 
10:59:40.307328266 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-01-24 14:12:42.211411739 +0100
@@ -1,0 +2,10 @@
+Fri Jan 18 17:23:04 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.912:
+  * Fix an issue with playlists (glgo#World/lollypop#1599).
+  * Add an error message for conversion failure when music is on
+smb share (glgo#World/lollypop#1585).
+  * Increase size of album cover exported for MPRIS
+(glgo#World/lollypop#1593).
+
+---

Old:

  lollypop-0.9.911.tar.xz

New:

  lollypop-0.9.912.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.v9HJav/_old  2019-01-24 14:12:42.647411236 +0100
+++ /var/tmp/diff_new_pack.v9HJav/_new  2019-01-24 14:12:42.651411230 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.911
+Version:0.9.912
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.v9HJav/_old  2019-01-24 14:12:42.671411208 +0100
+++ /var/tmp/diff_new_pack.v9HJav/_new  2019-01-24 14:12:42.671411208 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.911
+0.9.912
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.v9HJav/_old  2019-01-24 14:12:42.687411189 +0100
+++ /var/tmp/diff_new_pack.v9HJav/_new  2019-01-24 14:12:42.687411189 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e6095f003596ddb5c8ee222828a3dfe58fda20fc
\ No newline at end of file
+  d3a808d4a3274bf9b9a4c670c5433227eca5094b
\ No newline at end of file

++ lollypop-0.9.911.tar.xz -> lollypop-0.9.912.tar.xz ++
 1972 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-01-21 10:58:34

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Mon Jan 21 10:58:34 2019 rev:63 rq:666545 version:0.9.911

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-01-10 
15:22:50.974360973 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-01-21 10:59:40.307328266 +0100
@@ -1,0 +2,14 @@
+Wed Jan 16 20:14:36 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.911:
+  * Fix search provider issue (glgo#World/lollypop#1493).
+  * Escape playlists on sync (glgo#World/lollypop#1597).
+  * Scrobble on connect if a track is playing
+(glgo#World/lollypop#1588).
+  * Fix a crash when object name is empty
+(glgo#World/lollypop#1596).
+  * Fix radio restore state (glgo#World/lollypop#1595).
+  * Fix scroll volume down when window is not focused
+(glgo#World/lollypop#1591).
+
+---

Old:

  lollypop-0.9.910.tar.xz

New:

  lollypop-0.9.911.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.8FF0x0/_old  2019-01-21 10:59:40.943327440 +0100
+++ /var/tmp/diff_new_pack.8FF0x0/_new  2019-01-21 10:59:40.943327440 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.910
+Version:0.9.911
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -114,7 +114,7 @@
 %{_datadir}/dbus-1/services/org.gnome.Lollypop.SearchProvider.service
 %dir %{_datadir}/gnome-shell
 %dir %{_datadir}/gnome-shell/search-providers
-%{_datadir}/gnome-shell/search-providers/lollypop-search-provider.ini
+%{_datadir}/gnome-shell/search-providers/org.gnome.Lollypop.SearchProvider.ini
 
 %files lang -f %{name}.lang
 

++ _service ++
--- /var/tmp/diff_new_pack.8FF0x0/_old  2019-01-21 10:59:40.967327409 +0100
+++ /var/tmp/diff_new_pack.8FF0x0/_new  2019-01-21 10:59:40.967327409 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.910
+0.9.911
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.8FF0x0/_old  2019-01-21 10:59:40.987327383 +0100
+++ /var/tmp/diff_new_pack.8FF0x0/_new  2019-01-21 10:59:40.987327383 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  3df19ff7a6f0ccc7113133da1ea3e02d9337df33
\ No newline at end of file
+  e6095f003596ddb5c8ee222828a3dfe58fda20fc
\ No newline at end of file

++ lollypop-0.9.910.tar.xz -> lollypop-0.9.911.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.910/lollypop/application.py 
new/lollypop-0.9.911/lollypop/application.py
--- old/lollypop-0.9.910/lollypop/application.py2019-01-08 
18:02:53.0 +0100
+++ new/lollypop-0.9.911/lollypop/application.py2019-01-16 
18:51:36.0 +0100
@@ -309,7 +309,7 @@
 from lollypop.radios import Radios
 radios = Radios()
 track_id = radios.get_id(
-self.player.current_track.album_artists[0])
+self.player.current_track.radio_name)
 else:
 track_id = self.player.current_track.id
 # Save albums context
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.910/lollypop/controller_progress.py 
new/lollypop-0.9.911/lollypop/controller_progress.py
--- old/lollypop-0.9.910/lollypop/controller_progress.py2019-01-08 
18:02:53.0 +0100
+++ new/lollypop-0.9.911/lollypop/controller_progress.py2019-01-16 
18:51:36.0 +0100
@@ -205,7 +205,7 @@
 volume = App().player.volume
 if y > 0:
 volume -= 0.1
-else:
+elif y < 0:
 volume += 0.1
 if volume < 0:
 volume = 0.0
@@ -217,7 +217,7 @@
 position = App().player.position
 if y > 0:
 seek = position - 5 * Gst.SECOND
-else:
+elif y < 0:
 seek = position + 5 * Gst.SECOND
 if seek < 0:
 seek = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.910/lollypop/define.py 
new/lollypop-0.9.911/lollypop/define.py
--- old/lollypop-0.9.910/lollypop/define.py 

commit lollypop for openSUSE:Factory

2019-01-10 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-01-10 15:22:35

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Thu Jan 10 15:22:35 2019 rev:62 rq:663820 version:0.9.910

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2019-01-08 
12:30:58.676108711 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-01-10 15:22:50.974360973 +0100
@@ -1,0 +2,6 @@
+Tue Jan  8 18:38:12 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.910:
+  * Fix a small issue with adaptive mode.
+
+---

Old:

  lollypop-0.9.909.tar.xz

New:

  lollypop-0.9.910.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.OTOQwW/_old  2019-01-10 15:22:51.642360281 +0100
+++ /var/tmp/diff_new_pack.OTOQwW/_new  2019-01-10 15:22:51.646360277 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.909
+Version:0.9.910
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.OTOQwW/_old  2019-01-10 15:22:51.666360257 +0100
+++ /var/tmp/diff_new_pack.OTOQwW/_new  2019-01-10 15:22:51.670360252 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.909
+0.9.910
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.OTOQwW/_old  2019-01-10 15:22:51.682360240 +0100
+++ /var/tmp/diff_new_pack.OTOQwW/_new  2019-01-10 15:22:51.682360240 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  62ff39790e3eed7bfcab9d4f77ec3625f33a58ce
\ No newline at end of file
+  3df19ff7a6f0ccc7113133da1ea3e02d9337df33
\ No newline at end of file

++ lollypop-0.9.909.tar.xz -> lollypop-0.9.910.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.909/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.910/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.909/data/org.gnome.Lollypop.appdata.xml.in 2019-01-03 
15:06:00.0 +0100
+++ new/lollypop-0.9.910/data/org.gnome.Lollypop.appdata.xml.in 2019-01-08 
18:02:53.0 +0100
@@ -27,10 +27,9 @@
 
   
   
-
+
   
-Enhanced Drag and Drop
-Bug Fixes
+Fix an issue with adaptive mode
   
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.909/lollypop/container_lists.py 
new/lollypop-0.9.910/lollypop/container_lists.py
--- old/lollypop-0.9.909/lollypop/container_lists.py2019-01-03 
15:06:00.0 +0100
+++ new/lollypop-0.9.910/lollypop/container_lists.py2019-01-08 
18:02:53.0 +0100
@@ -216,7 +216,9 @@
 """
 Logger.debug("Container::__on_list_one_selected()")
 self._stack.destroy_non_visible_children()
-if not App().window.is_adaptive:
+if App().window.is_adaptive:
+App().window.emit("can-go-back-changed", True)
+else:
 App().window.emit("show-can-go-back", False)
 App().window.emit("can-go-back-changed", False)
 view = None
@@ -263,25 +265,22 @@
 view = self._get_view_albums([], selected_ids)
 else:
 view = self._get_view_artists([], selected_ids)
-else:
+elif not App().window.is_adaptive:
 view = self._get_view_albums(selected_ids, [])
-if view is not None:
-if App().window.is_adaptive:
-App().window.emit("can-go-back-changed", True)
-if view not in self._stack.get_children():
+if view is not None and view not in self._stack.get_children():
 self._stack.add(view)
-# If we are in paned stack mode, show list two if wanted
-if App().window.is_adaptive\
-and self._list_two.is_visible()\
-and (
-selected_ids[0] >= 0 or
-Type.DEVICES - 999 < selected_ids[0] < Type.DEVICES or
-selected_ids[0] in [Type.PLAYLISTS,
-Type.YEARS,
-Type.ALL]):
-self._stack.set_visible_child(self._list_two)
-else:
-self._stack.set_visible_child(view)
+# If we are in paned stack mode, show list two if wanted
+if 

commit lollypop for openSUSE:Factory

2019-01-08 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2019-01-08 12:28:25

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Tue Jan  8 12:28:25 2019 rev:61 rq:663035 version:0.9.909

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-12-28 
12:35:41.431948015 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2019-01-08 12:30:58.676108711 +0100
@@ -1,0 +2,7 @@
+Thu Jan  3 15:40:38 UTC 2019 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.909:
+  * Enhanced drag and drop.
+  * Bug fixes (glgo#World/lollypop#1576, glgo#World/lollypop#1583).
+
+---

Old:

  lollypop-0.9.908.tar.xz

New:

  lollypop-0.9.909.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.ekGg9s/_old  2019-01-08 12:30:59.164108180 +0100
+++ /var/tmp/diff_new_pack.ekGg9s/_new  2019-01-08 12:30:59.164108180 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lollypop
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.908
+Version:0.9.909
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.ekGg9s/_old  2019-01-08 12:30:59.196108145 +0100
+++ /var/tmp/diff_new_pack.ekGg9s/_new  2019-01-08 12:30:59.196108145 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.908
+0.9.909
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.ekGg9s/_old  2019-01-08 12:30:59.212108128 +0100
+++ /var/tmp/diff_new_pack.ekGg9s/_new  2019-01-08 12:30:59.212108128 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  dd5fca19341b0f7ecb7b01a6471178be14191564
\ No newline at end of file
+  62ff39790e3eed7bfcab9d4f77ec3625f33a58ce
\ No newline at end of file

++ lollypop-0.9.908.tar.xz -> lollypop-0.9.909.tar.xz ++
 3414 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-12-28 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-12-28 12:35:40

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Fri Dec 28 12:35:40 2018 rev:60 rq:661571 version:0.9.908

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-12-24 
11:47:51.825108975 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2018-12-28 12:35:41.431948015 +0100
@@ -1,0 +2,9 @@
+Thu Dec 27 09:38:03 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.908:
+  * Fix an issue with artist view.
+  * Various bug fixes (glgo#World/lollypop#1576,
+glgo#World/lollypop#1577, glgo#World/lollypop#1579,
+glgo#World/lollypop#1580).
+
+---

Old:

  lollypop-0.9.907.tar.xz

New:

  lollypop-0.9.908.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.G8yiQS/_old  2018-12-28 12:35:41.899947687 +0100
+++ /var/tmp/diff_new_pack.G8yiQS/_new  2018-12-28 12:35:41.899947687 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.907
+Version:0.9.908
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.G8yiQS/_old  2018-12-28 12:35:41.927947668 +0100
+++ /var/tmp/diff_new_pack.G8yiQS/_new  2018-12-28 12:35:41.927947668 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.907
+0.9.908
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.G8yiQS/_old  2018-12-28 12:35:41.939947660 +0100
+++ /var/tmp/diff_new_pack.G8yiQS/_new  2018-12-28 12:35:41.943947657 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  297838526b4d9e2acc83f831f48c0b7467620990
\ No newline at end of file
+  dd5fca19341b0f7ecb7b01a6471178be14191564
\ No newline at end of file

++ lollypop-0.9.907.tar.xz -> lollypop-0.9.908.tar.xz ++
 13824 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-12-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-12-24 11:47:50

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Mon Dec 24 11:47:50 2018 rev:59 rq:660733 version:0.9.907

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-12-21 
08:21:53.473543479 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2018-12-24 11:47:51.825108975 +0100
@@ -1,0 +2,8 @@
+Sat Dec 22 20:01:33 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.907:
+  * Fix some playback issues (glgo#World/lollypop#1574).
+  * Import loved tracks from playlists (glgo#World/lollypop#1573).
+  * Fix a crash (glgo#World/lollypop#1571).
+
+---

Old:

  lollypop-0.9.906.tar.xz

New:

  lollypop-0.9.907.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.x0V0Wu/_old  2018-12-24 11:47:52.249108603 +0100
+++ /var/tmp/diff_new_pack.x0V0Wu/_new  2018-12-24 11:47:52.249108603 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.906
+Version:0.9.907
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.x0V0Wu/_old  2018-12-24 11:47:52.265108589 +0100
+++ /var/tmp/diff_new_pack.x0V0Wu/_new  2018-12-24 11:47:52.265108589 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.906
+0.9.907
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.x0V0Wu/_old  2018-12-24 11:47:52.277108579 +0100
+++ /var/tmp/diff_new_pack.x0V0Wu/_new  2018-12-24 11:47:52.277108579 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  5a6551cd34ce8f76650b7cea5b93157ee9e6ad40
\ No newline at end of file
+  297838526b4d9e2acc83f831f48c0b7467620990
\ No newline at end of file

++ lollypop-0.9.906.tar.xz -> lollypop-0.9.907.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.906/lollypop/database_upgrade.py 
new/lollypop-0.9.907/lollypop/database_upgrade.py
--- old/lollypop-0.9.906/lollypop/database_upgrade.py   2018-12-19 
19:35:36.0 +0100
+++ new/lollypop-0.9.907/lollypop/database_upgrade.py   2018-12-22 
15:54:58.0 +0100
@@ -88,9 +88,26 @@
 self._UPGRADES = {
1: "ALTER TABLE playlists ADD synced INT NOT NULL DEFAULT 0",
2: "ALTER TABLE playlists ADD smart_enabled INT NOT NULL DEFAULT 0",
-   3: "ALTER TABLE playlists ADD smart_sql TEXT"
+   3: "ALTER TABLE playlists ADD smart_sql TEXT",
+   4: self.__upgrade_4,
 }
 
+###
+# PRIVATE #
+###
+def __upgrade_4(self, db):
+"""
+Import tracks from loved playlist to DB
+"""
+with SqlCursor(db, True) as sql1:
+result = sql1.execute("SELECT uri\
+   FROM tracks\
+   WHERE playlist_id=?", (Type.LOVED,))
+with SqlCursor(App().db, True) as sql2:
+for uri in list(itertools.chain(*result)):
+sql2.execute("UPDATE tracks SET loved=1 WHERE uri=?",
+ (uri,))
+
 
 class DatabaseAlbumsUpgrade(DatabaseUpgrade):
 """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.906/lollypop/player_linear.py 
new/lollypop-0.9.907/lollypop/player_linear.py
--- old/lollypop-0.9.906/lollypop/player_linear.py  2018-12-19 
19:35:36.0 +0100
+++ new/lollypop-0.9.907/lollypop/player_linear.py  2018-12-22 
15:54:58.0 +0100
@@ -12,6 +12,7 @@
 
 from lollypop.define import NextContext
 from lollypop.player_base import BasePlayer
+from lollypop.logger import Logger
 
 
 class LinearPlayer(BasePlayer):
@@ -38,14 +39,15 @@
 # next album
 if new_track_position >= len(album.track_ids):
 try:
-pos = self._albums.index(album)
+pos = self.album_ids.index(album.id)
 # we are on last album, go to first
 if pos + 1 >= len(self._albums):
 self._next_context = NextContext.STOP
 pos = 0
 else:
 pos += 1
-except:
+except Exception as e:
+Logger.error("LinearPlayer::next(): %s", e)
  

commit lollypop for openSUSE:Factory

2018-12-20 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-12-21 08:21:51

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Fri Dec 21 08:21:51 2018 rev:58 rq:660119 version:0.9.906

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-12-19 
13:51:08.551141216 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2018-12-21 08:21:53.473543479 +0100
@@ -1,0 +2,8 @@
+Wed Dec 19 20:00:07 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.906:
+  * Fix bug where cover was never shown.
+- Changes from version 0.9.905:
+  * Bugfixes.
+
+---

Old:

  lollypop-0.9.904.tar.xz

New:

  lollypop-0.9.906.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.OCGj88/_old  2018-12-21 08:21:53.949543033 +0100
+++ /var/tmp/diff_new_pack.OCGj88/_new  2018-12-21 08:21:53.953543029 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.904
+Version:0.9.906
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.OCGj88/_old  2018-12-21 08:21:53.977543007 +0100
+++ /var/tmp/diff_new_pack.OCGj88/_new  2018-12-21 08:21:53.981543003 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.904
+0.9.906
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.OCGj88/_old  2018-12-21 08:21:53.997542988 +0100
+++ /var/tmp/diff_new_pack.OCGj88/_new  2018-12-21 08:21:53.997542988 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  6b9b9b605f5dd53e0ea3effeddf1767966bb4099
\ No newline at end of file
+  5a6551cd34ce8f76650b7cea5b93157ee9e6ad40
\ No newline at end of file

++ lollypop-0.9.904.tar.xz -> lollypop-0.9.906.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.904/data/ToolbarEnd.ui 
new/lollypop-0.9.906/data/ToolbarEnd.ui
--- old/lollypop-0.9.904/data/ToolbarEnd.ui 2018-12-17 23:17:29.0 
+0100
+++ new/lollypop-0.9.906/data/ToolbarEnd.ui 2018-12-19 19:35:36.0 
+0100
@@ -147,6 +147,7 @@
 
 
   
+False
 True
 False
 False
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.904/lollypop/container_views.py 
new/lollypop-0.9.906/lollypop/container_views.py
--- old/lollypop-0.9.904/lollypop/container_views.py2018-12-17 
23:17:29.0 +0100
+++ new/lollypop-0.9.906/lollypop/container_views.py2018-12-19 
19:35:36.0 +0100
@@ -10,11 +10,10 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see .
 
-from gi.repository import Gtk
-
 from lollypop.shown import ShownLists
 from lollypop.loader import Loader
 from lollypop.objects import Track, Album
+from lollypop.view import View
 from lollypop.define import App, Type, RowListType, SelectionListMask
 
 
@@ -262,7 +261,7 @@
 decades.append(decade)
 return decades
 if App().window.is_adaptive:
-view = Gtk.Grid()
+view = View()
 else:
 from lollypop.view_albums_decade_box import AlbumsDecadeBoxView
 view = AlbumsDecadeBoxView()
@@ -285,7 +284,7 @@
 for album_id in items]
 if App().window.is_adaptive:
 from lollypop.view_albums_list import AlbumsListView
-view = AlbumsListView(RowListType.DEFAULT, [Type.YEARS], years)
+view = AlbumsListView(RowListType.DEFAULT, years, [Type.YEARS])
 else:
 from lollypop.view_albums_box import AlbumsBoxView
 view = AlbumsBoxView([Type.YEARS], years)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.904/lollypop/controller_information.py 
new/lollypop-0.9.906/lollypop/controller_information.py
--- old/lollypop-0.9.904/lollypop/controller_information.py 2018-12-17 
23:17:29.0 +0100
+++ new/lollypop-0.9.906/lollypop/controller_information.py 2018-12-19 
19:35:36.0 +0100
@@ -129,6 +129,7 @@
 if surface is None:
 self._artwork.hide()
 else:
+self._artwork.show()
 self._artwork.set_from_surface(surface)
 
 def __on_radio_artwork(self, surface):
diff -urN 

commit lollypop for openSUSE:Factory

2018-12-19 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-12-19 13:50:56

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new.28833 (New)


Package is "lollypop"

Wed Dec 19 13:50:56 2018 rev:57 rq:659040 version:0.9.904

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-11-09 
07:56:57.855536691 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28833/lollypop.changes 
2018-12-19 13:51:08.551141216 +0100
@@ -1,0 +2,43 @@
+Tue Dec 18 06:57:25 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.904:
+  * Fix a crash in information popover (glgo#World/lollypop#1564).
+  * Fix a crash upon new album image selection
+(glgo#World/lollypop#1568).
+  * Make right-click on album more consistent
+(glgo#World/lollypop#1566).
+  * Don't show an empty similar artists popover when there is no
+similar artist (glgo#World/lollypop#1565).
+
+---
+Sat Dec 15 15:14:57 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.903:
+  * Fix an issue with lyrics translation
+(glgo#World/lollypop#1563).
+- Changes from version 0.9.902:
+  * Fix empty popover display after clicking "Show Lyrics"
+(glgo#World/lollypop#1561).
+  * Clarify error message in lyrics view when module textblob is
+not installed.
+- Add python-textblob as suggested dependency:
+  * It allows lollypop to translate lyrics in user language. Not a
+new feature, it was actually introduced in 0.9.522.
+  * Note that module textblob is not available in Factory yet.
+
+---
+Fri Dec 14 16:13:43 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.901:
+  * Fix a crash in information popover (glgo#World/lollypop#1560).
+- Changes from version 0.9.900:
+  * New navigation mode when sidebar is off.
+  * New smart playlists (glgo#World/lollypop#890).
+  * Faster album loading.
+  * Faster track loading.
+  * Better sync to device.
+  * Restore playback position on start.
+  * Better adaptive mode: radio support, toolbar buttons, search…
+  * Various bugfixes.
+
+---

Old:

  lollypop-0.9.612.tar.xz

New:

  lollypop-0.9.904.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Ief06I/_old  2018-12-19 13:51:09.235140270 +0100
+++ /var/tmp/diff_new_pack.Ief06I/_new  2018-12-19 13:51:09.239140264 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.612
+Version:0.9.904
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -44,6 +44,7 @@
 Recommends: kid3-cli
 Recommends: python3-Pillow
 Recommends: python3-wikipedia
+Suggests:   python3-textblob
 BuildArch:  noarch
 
 %description

++ _service ++
--- /var/tmp/diff_new_pack.Ief06I/_old  2018-12-19 13:51:09.263140231 +0100
+++ /var/tmp/diff_new_pack.Ief06I/_new  2018-12-19 13:51:09.263140231 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.612
+0.9.904
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Ief06I/_old  2018-12-19 13:51:09.279140209 +0100
+++ /var/tmp/diff_new_pack.Ief06I/_new  2018-12-19 13:51:09.283140203 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  f7dab16c6c8db91a80ade5d1e1a25743eaadf677
\ No newline at end of file
+  6b9b9b605f5dd53e0ea3effeddf1767966bb4099
\ No newline at end of file

++ lollypop-0.9.612.tar.xz -> lollypop-0.9.904.tar.xz ++
 73321 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-11-08 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-11-09 07:56:50

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Fri Nov  9 07:56:50 2018 rev:56 rq:647441 version:0.9.612

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-11-06 
14:38:42.316657999 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-11-09 
07:56:57.855536691 +0100
@@ -1,0 +2,7 @@
+Thu Nov  8 19:51:59 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.612:
+  * Fix an issue with lyrics (glgo#World/lollypop#1536).
+  * Fix an issue with kid3-cli (glgo#World/lollypop#1527).
+
+---

Old:

  lollypop-0.9.611.tar.xz

New:

  lollypop-0.9.612.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.4CABev/_old  2018-11-09 07:56:58.399536071 +0100
+++ /var/tmp/diff_new_pack.4CABev/_new  2018-11-09 07:56:58.399536071 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.611
+Version:0.9.612
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.4CABev/_old  2018-11-09 07:56:58.427536040 +0100
+++ /var/tmp/diff_new_pack.4CABev/_new  2018-11-09 07:56:58.427536040 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.611
+0.9.612
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.4CABev/_old  2018-11-09 07:56:58.447536017 +0100
+++ /var/tmp/diff_new_pack.4CABev/_new  2018-11-09 07:56:58.447536017 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  a7802ca5d12288d690bf7fdcbdf6afcd1ccc2d6a
\ No newline at end of file
+  f7dab16c6c8db91a80ade5d1e1a25743eaadf677
\ No newline at end of file

++ lollypop-0.9.611.tar.xz -> lollypop-0.9.612.tar.xz ++
 51956 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-11-06 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-11-06 14:38:28

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Tue Nov  6 14:38:28 2018 rev:55 rq:646258 version:0.9.611

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-10-29 
14:58:59.546026098 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-11-06 
14:38:42.316657999 +0100
@@ -1,0 +2,6 @@
+Sun Nov  4 13:13:12 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.611:
+  * Fix an issue with track management.
+
+---

Old:

  lollypop-0.9.610.tar.xz

New:

  lollypop-0.9.611.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.IGHGlG/_old  2018-11-06 14:38:44.048655381 +0100
+++ /var/tmp/diff_new_pack.IGHGlG/_new  2018-11-06 14:38:44.068655351 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   lollypop
-Version:0.9.610
+Version:0.9.611
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.IGHGlG/_old  2018-11-06 14:38:44.220655122 +0100
+++ /var/tmp/diff_new_pack.IGHGlG/_new  2018-11-06 14:38:44.224655115 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.610
+0.9.611
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.IGHGlG/_old  2018-11-06 14:38:44.316654977 +0100
+++ /var/tmp/diff_new_pack.IGHGlG/_new  2018-11-06 14:38:44.332654952 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  76fcc86c22c0df02c644be78368efe6255199cbe
\ No newline at end of file
+  a7802ca5d12288d690bf7fdcbdf6afcd1ccc2d6a
\ No newline at end of file

++ lollypop-0.9.610.tar.xz -> lollypop-0.9.611.tar.xz ++
 51899 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-10-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-29 14:22:54

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Oct 29 14:22:54 2018 rev:54 rq:645113 version:0.9.610

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-10-26 
11:10:59.741661169 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-29 
14:58:59.546026098 +0100
@@ -1,0 +2,9 @@
+Sun Oct 28 17:55:05 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.610:
+  * Fix broken MTP sync on GNOME 3.30 (glgo#World/lollypop#1522).
+  * Fix a crash about album discs (glgo#World/lollypop#1511).
+  * Fix broken radio view (glgo#World/lollypop#1529).
+- Remove useless runtime dependency on gobject-introspection.
+
+---

Old:

  lollypop-0.9.609.tar.xz

New:

  lollypop-0.9.610.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.w3Ln78/_old  2018-10-29 14:59:00.198026875 +0100
+++ /var/tmp/diff_new_pack.w3Ln78/_new  2018-10-29 14:59:00.206026885 +0100
@@ -16,9 +16,8 @@
 #
 
 
-%global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.609
+Version:0.9.610
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -31,12 +30,11 @@
 BuildRequires:  meson >= 0.41
 BuildRequires:  pkgconfig
 BuildRequires:  python3-devel
-BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 
%{gobject_introspection_version}
+BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.35.9
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.20
 # Can't migrate to GDBus, the server-side support is not implemented yet:
 # https://bugzilla.gnome.org/show_bug.cgi?id=656330
 Requires:   dbus-1-python3
-Requires:   gobject-introspection >= %{gobject_introspection_version}
 Requires:   gstreamer-plugins-base
 Requires:   python3-beautifulsoup4
 Requires:   python3-cairo

++ _service ++
--- /var/tmp/diff_new_pack.w3Ln78/_old  2018-10-29 14:59:00.234026918 +0100
+++ /var/tmp/diff_new_pack.w3Ln78/_new  2018-10-29 14:59:00.234026918 +0100
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.609
+0.9.610
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.w3Ln78/_old  2018-10-29 14:59:00.250026937 +0100
+++ /var/tmp/diff_new_pack.w3Ln78/_new  2018-10-29 14:59:00.254026942 +0100
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  eee4683f8a1e94bd5ac330855f3372c3f10b7fc1
\ No newline at end of file
+  76fcc86c22c0df02c644be78368efe6255199cbe
\ No newline at end of file

++ lollypop-0.9.609.tar.xz -> lollypop-0.9.610.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.609/data/DeviceManagerView.ui 
new/lollypop-0.9.610/data/DeviceManagerView.ui
--- old/lollypop-0.9.609/data/DeviceManagerView.ui  2018-10-25 
14:37:37.0 +0200
+++ new/lollypop-0.9.610/data/DeviceManagerView.ui  2018-10-28 
15:27:23.0 +0100
@@ -12,8 +12,9 @@
   
 True
 False
-center
 2
+5
+5
 
   
 True
@@ -21,7 +22,6 @@
 True
 Synchronize to your 
device
 center
-end
 5
 5
 image1
@@ -29,8 +29,8 @@
 
   
   
-0
-0
+1
+1
   
 
 
@@ -38,13 +38,101 @@
 True
 False
 center
-start
 5
 
   
   
-1
+2
+1
+  
+
+
+  
+False
+error
+True
+False
+
+
+  
+False
+6
+end
+
+  
+
+
+  
+
+
+  
+
+  
+  
+False
+False
+0
+  
+
+
+  
+False
+16
+
+  
+True
+False
+label
+  
+  
+True
+True
+0
+  
+
+
+  
+
+
+  
+
+  
+  
+False
+False
+0
+  
+
+
+  
+
+  
+  
+0

commit lollypop for openSUSE:Factory

2018-10-26 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-26 11:10:53

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Fri Oct 26 11:10:53 2018 rev:53 rq:644711 version:0.9.609

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-10-25 
09:09:04.854406830 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-26 
11:10:59.741661169 +0200
@@ -1,0 +2,12 @@
+Thu Oct 25 17:29:32 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.609:
+  * Fix a "sqlite db locked" introduced in 0.9.608.
+- Changes from version 0.9.608:
+  * Fix an issue with multiple disc albums
+(glgo#World/lollypop#1528).
+  * Fix hang while updating collection (glgo#World/lollypop#1517).
+  * Stop playback if writing to tags on current album
+(glgo#World/lollypop#1527).
+
+---

Old:

  lollypop-0.9.607.tar.xz

New:

  lollypop-0.9.609.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.7ijW5y/_old  2018-10-26 11:11:01.385658992 +0200
+++ /var/tmp/diff_new_pack.7ijW5y/_new  2018-10-26 11:11:01.389658987 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.607
+Version:0.9.609
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.7ijW5y/_old  2018-10-26 11:11:01.413658955 +0200
+++ /var/tmp/diff_new_pack.7ijW5y/_new  2018-10-26 11:11:01.413658955 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.607
+0.9.609
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.7ijW5y/_old  2018-10-26 11:11:01.425658939 +0200
+++ /var/tmp/diff_new_pack.7ijW5y/_new  2018-10-26 11:11:01.429658934 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  4bfcd1f0e7da754750096381b9c255ae8af19cd2
\ No newline at end of file
+  eee4683f8a1e94bd5ac330855f3372c3f10b7fc1
\ No newline at end of file

++ lollypop-0.9.607.tar.xz -> lollypop-0.9.609.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.607/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.609/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.607/data/org.gnome.Lollypop.appdata.xml.in 2018-10-21 
22:19:13.0 +0200
+++ new/lollypop-0.9.609/data/org.gnome.Lollypop.appdata.xml.in 2018-10-25 
14:37:37.0 +0200
@@ -27,14 +27,11 @@
 
   
   
-
+
   
 
-  Sort albums with full date
-  Faster album loading
- Add a button to go from search to artist
- Better wikipedia search
- Allow importing loved tracks
+ Fix hang while updating collection
+ Fix an issue with multiple disc albums
 
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.607/lollypop/art_album.py 
new/lollypop-0.9.609/lollypop/art_album.py
--- old/lollypop-0.9.607/lollypop/art_album.py  2018-10-21 22:19:13.0 
+0200
+++ new/lollypop-0.9.609/lollypop/art_album.py  2018-10-25 14:37:37.0 
+0200
@@ -424,6 +424,8 @@
 @param album_id as int
 """
 if self.kid3_available:
+if App().player.current_track.album.id == album_id:
+App().player.stop()
 for uri in App().albums.get_track_uris(album_id, [], []):
 try:
 path = GLib.filename_from_uri(uri)[0]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.607/lollypop/collectionscanner.py 
new/lollypop-0.9.609/lollypop/collectionscanner.py
--- old/lollypop-0.9.607/lollypop/collectionscanner.py  2018-10-21 
22:19:13.0 +0200
+++ new/lollypop-0.9.609/lollypop/collectionscanner.py  2018-10-25 
14:37:37.0 +0200
@@ -132,9 +132,8 @@
 else:
 files.append(f)
 except Exception as e:
-Logger.error("""CollectionScanner::
- __get_objects_for_uris(): %s""" % e)
-return ([], [])
+Logger.error("CollectionScanner::__get_objects_for_uris(): %s"
+ % e)
 for f in files:
 try:
 if is_pls(f):
@@ -142,11 +141,11 @@
 elif is_audio(f):
  

commit lollypop for openSUSE:Factory

2018-10-25 Thread root
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.changes2018-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 - antoine.belv...@opensuse.org
+
+- 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 @@
 
   
 enable
-0.9.605
+0.9.607
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _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 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  8de4bde372292177638acb65816683aeffb02c6a
\ No newline at end of file
+  4bfcd1f0e7da754750096381b9c255ae8af19cd2
\ 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.0 
+0200
+++ new/lollypop-0.9.607/lollypop/playlists.py  2018-10-21 22:19:13.0 
+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.0 +0200
+++ new/lollypop-0.9.607/lollypop/widgets_album.py  2018-10-21 
22:19:13.0 +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.0 +0200
+++ new/lollypop-0.9.607/lollypop/widgets_album_simple.py   2018-10-21 
22:19:13.0 +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.build2018-10-19 11:22:38.0 +0200
+++ new/lollypop-0.9.607/meson.build2018-10-21 22:19:13.0 +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' 

commit lollypop for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-22 11:24:19

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Oct 22 11:24:19 2018 rev:51 rq:643243 version:0.9.605

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-10-09 
15:53:38.186320483 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-22 
11:24:49.659066992 +0200
@@ -1,0 +2,20 @@
+Fri Oct 19 17:52:44 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.605:
+  * Sort albums with full date (glgo#World/lollypop#1301).
+  * Faster album loading.
+  * Add a button to go from search to artist.
+  * Better Wikipedia search.
+  * Allow importing loved tracks (glgo#World/lollypop#1441).
+  * Enable/disable last.fm scrobbling from main window
+(glgo#World/lollypop#1509).
+  * Fix some crashes (glgo#World/lollypop#1520,
+glgo#World/lollypop#1517)
+  * Handle PART= comment in tags (glgo#World/lollypop#1515).
+  * Fix music stop after first enqueued song
+(glgo#World/lollypop#1514).
+  * Fix genre and artist column widths (glgo#World/lollypop#1513).
+  * Reworked application icon.
+- Updated path to icons in file list: New svg icon added.
+
+---

Old:

  lollypop-0.9.604.tar.xz

New:

  lollypop-0.9.605.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.ifSaPF/_old  2018-10-22 11:24:50.547066112 +0200
+++ /var/tmp/diff_new_pack.ifSaPF/_new  2018-10-22 11:24:50.551066108 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.604
+Version:0.9.605
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -107,8 +107,7 @@
 %{_datadir}/metainfo/org.gnome.Lollypop.appdata.xml
 %{_datadir}/applications/org.gnome.Lollypop.desktop
 %{_datadir}/glib-2.0/schemas/org.gnome.Lollypop.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/org.gnome.Lollypop.png
-%{_datadir}/icons/hicolor/*/apps/org.gnome.Lollypop-symbolic.svg
+%{_datadir}/icons/hicolor/*/apps/org.gnome.Lollypop*
 %{python3_sitelib}/lollypop/
 
 %files -n gnome-shell-search-provider-%{name}

++ _service ++
--- /var/tmp/diff_new_pack.ifSaPF/_old  2018-10-22 11:24:50.571066088 +0200
+++ /var/tmp/diff_new_pack.ifSaPF/_new  2018-10-22 11:24:50.575066084 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.604
+0.9.605
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.ifSaPF/_old  2018-10-22 11:24:50.587066072 +0200
+++ /var/tmp/diff_new_pack.ifSaPF/_new  2018-10-22 11:24:50.587066072 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  fc324e0ab26e2eb16c756e31916d336e789526e7
\ No newline at end of file
+  8de4bde372292177638acb65816683aeffb02c6a
\ No newline at end of file

++ lollypop-0.9.604.tar.xz -> lollypop-0.9.605.tar.xz ++
 22563 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-10-09 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-09 15:53:33

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Tue Oct  9 15:53:33 2018 rev:50 rq:640672 version:0.9.604

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-10-08 
17:50:03.342129719 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-09 
15:53:38.186320483 +0200
@@ -1,0 +2,8 @@
+Mon Oct  8 16:54:27 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.604:
+  * Fix genres in decade view.
+- Changes from version 0.9.603:
+  * Fix a crash in artist view.
+
+---

Old:

  lollypop-0.9.602.tar.xz

New:

  lollypop-0.9.604.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.b0OVE4/_old  2018-10-09 15:53:38.818319734 +0200
+++ /var/tmp/diff_new_pack.b0OVE4/_new  2018-10-09 15:53:38.818319734 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.602
+Version:0.9.604
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.b0OVE4/_old  2018-10-09 15:53:38.842319706 +0200
+++ /var/tmp/diff_new_pack.b0OVE4/_new  2018-10-09 15:53:38.842319706 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.602
+0.9.604
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.b0OVE4/_old  2018-10-09 15:53:38.854319692 +0200
+++ /var/tmp/diff_new_pack.b0OVE4/_new  2018-10-09 15:53:38.854319692 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  5b4c8679e8147ebb27a52bea206974de208a5853
\ No newline at end of file
+  fc324e0ab26e2eb16c756e31916d336e789526e7
\ No newline at end of file

++ lollypop-0.9.602.tar.xz -> lollypop-0.9.604.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.602/data/ArtistView.ui 
new/lollypop-0.9.604/data/ArtistView.ui
--- old/lollypop-0.9.602/data/ArtistView.ui 2018-10-06 18:11:14.0 
+0200
+++ new/lollypop-0.9.604/data/ArtistView.ui 2018-10-08 08:20:35.0 
+0200
@@ -124,7 +124,7 @@
   
 
 
-  
+  
 True
 True
 True
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.602/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.604/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.602/data/org.gnome.Lollypop.appdata.xml.in 2018-10-06 
18:11:14.0 +0200
+++ new/lollypop-0.9.604/data/org.gnome.Lollypop.appdata.xml.in 2018-10-08 
08:20:35.0 +0200
@@ -27,6 +27,13 @@
 
   
   
+
+  
+
+  Fix a crash in artist view
+
+  
+
 
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.602/lollypop/container.py 
new/lollypop-0.9.604/lollypop/container.py
--- old/lollypop-0.9.602/lollypop/container.py  2018-10-06 18:11:14.0 
+0200
+++ new/lollypop-0.9.604/lollypop/container.py  2018-10-08 08:20:35.0 
+0200
@@ -882,6 +882,8 @@
 view = self.__get_view_albums(selected_ids, [])
 elif selected_ids[0] == Type.RADIOS:
 view = self.__get_view_radios()
+elif selected_ids[0] == Type.YEARS:
+view = self.__get_view_albums_decades()
 elif selection_list.type & SelectionListType.ARTISTS:
 if selected_ids[0] == Type.ALL:
 view = self.__get_view_albums(selected_ids, [])
@@ -889,8 +891,6 @@
 view = self.__get_view_albums([], selected_ids)
 else:
 view = self.__get_view_artists([], selected_ids)
-elif selected_ids[0] == Type.YEARS:
-view = self.__get_view_albums_decades()
 else:
 view = self.__get_view_albums(selected_ids, [])
 if view is not None:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.602/meson.build 
new/lollypop-0.9.604/meson.build
--- old/lollypop-0.9.602/meson.build2018-10-06 18:11:14.0 +0200
+++ new/lollypop-0.9.604/meson.build2018-10-08 08:20:35.0 +0200
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '0.9.602',
+  version: '0.9.604',
   

commit lollypop for openSUSE:Factory

2018-10-08 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-08 17:46:51

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Oct  8 17:46:51 2018 rev:49 rq:640328 version:0.9.602

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-10-01 
08:18:13.137937116 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-08 
17:50:03.342129719 +0200
@@ -1,0 +2,11 @@
+Sat Oct  6 17:26:44 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.602:
+  * Fix a freeze in playlists (glgo#World/lollypop#1507).
+  * Make build reproducible (glgo#World/lollypop#1502,
+boo#1110032).
+  * Use Gio.Drive.is_removable() (glgo#World/lollypop#1498).
+  * Updated translations.
+- Drop lollypop-0.9.601-reproducible.patch: Fixed upstream.
+
+---

Old:

  lollypop-0.9.601-reproducible.patch
  lollypop-0.9.601.tar.xz

New:

  lollypop-0.9.602.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.JcD4w6/_old  2018-10-08 17:50:03.906129000 +0200
+++ /var/tmp/diff_new_pack.JcD4w6/_new  2018-10-08 17:50:03.910128996 +0200
@@ -18,15 +18,13 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.601
+Version:0.9.602
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
 Group:  Productivity/Multimedia/Sound/Players
 Url:https://wiki.gnome.org/Apps/Lollypop
 Source0:%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM lollypop-0.9.601-reproducible.patch -- boo#1110032
-Patch0: lollypop-0.9.601-reproducible.patch
 BuildRequires:  desktop-file-utils
 BuildRequires:  intltool
 BuildRequires:  itstool

++ _service ++
--- /var/tmp/diff_new_pack.JcD4w6/_old  2018-10-08 17:50:03.930128970 +0200
+++ /var/tmp/diff_new_pack.JcD4w6/_new  2018-10-08 17:50:03.934128965 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.601
+0.9.602
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.JcD4w6/_old  2018-10-08 17:50:03.950128945 +0200
+++ /var/tmp/diff_new_pack.JcD4w6/_new  2018-10-08 17:50:03.950128945 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  9cd6f02263f701b4519dbc6db9b3ff2ff2d383bf
\ No newline at end of file
+  5b4c8679e8147ebb27a52bea206974de208a5853
\ No newline at end of file

++ lollypop-0.9.601.tar.xz -> lollypop-0.9.602.tar.xz ++
 33391 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-10-01 08:18:07

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Oct  1 08:18:07 2018 rev:48 rq:638854 version:0.9.601

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-09-24 
13:14:06.925617773 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-10-01 
08:18:13.137937116 +0200
@@ -1,0 +2,6 @@
+Thu Sep 27 19:38:58 UTC 2018 - antoine.belv...@opensuse.org
+
+- Add lollypop-0.9.601-reproducible.patch: Make build reproducible
+  (boo#1110032).
+
+---

New:

  lollypop-0.9.601-reproducible.patch



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.dUtwET/_old  2018-10-01 08:18:13.537936860 +0200
+++ /var/tmp/diff_new_pack.dUtwET/_new  2018-10-01 08:18:13.541936858 +0200
@@ -25,6 +25,8 @@
 Group:  Productivity/Multimedia/Sound/Players
 Url:https://wiki.gnome.org/Apps/Lollypop
 Source0:%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM lollypop-0.9.601-reproducible.patch -- boo#1110032
+Patch0: lollypop-0.9.601-reproducible.patch
 BuildRequires:  desktop-file-utils
 BuildRequires:  intltool
 BuildRequires:  itstool

++ lollypop-0.9.601-reproducible.patch ++
>From 4347f41b2abc3838f5356c22fe47b36aa25130a0 Mon Sep 17 00:00:00 2001
From: Antoine Belvire 
Date: Thu, 27 Sep 2018 19:47:31 +0200
Subject: [PATCH] Make build noarch-reproducible

Build output may differ depending on the architecture because of
PYTHON_EXEC_DIR (/usr/lib/pythonX.X vs. /usr/lib64/pythonX.X).
This makes lollypop impossible to package as "noarch" (not
architecture-dependent).

This commit removes PYTHON_EXEC_DIR definition and use, as we'd
like to package lollypop as noarch and as this variable seems
only needed for execution via JHBuild.
---
 lollypop-cli.in| 4 
 lollypop.in| 4 
 meson.build| 2 --
 search-provider/lollypop-sp.in | 4 
 4 files changed, 14 deletions(-)

diff --git a/lollypop-cli.in b/lollypop-cli.in
index d3395a05..80274b23 100755
--- a/lollypop-cli.in
+++ b/lollypop-cli.in
@@ -12,10 +12,6 @@
 # along with this program. If not, see .
 
 import sys
-# Make sure we'll find the pygobject module, even in JHBuild
-sys.path.insert(1, '@PYTHON_EXEC_DIR@')
-# Make sure we'll find the lollypop modules, even in JHBuild
-sys.path.insert(1, '@PYTHON_DIR@')
 import gi
 gi.require_version('Secret', '1')
 gi.require_version('TotemPlParser', '1.0')
diff --git a/lollypop.in b/lollypop.in
index 17952524..507034d4 100755
--- a/lollypop.in
+++ b/lollypop.in
@@ -8,10 +8,6 @@ import gettext
 if 'LOLLYPOP_TRACE' in os.environ:
 from pycallgraph import PyCallGraph
 from pycallgraph.output import GraphvizOutput
-# Make sure we'll find the pygobject module, even in JHBuild
-sys.path.insert(1, '@PYTHON_EXEC_DIR@')
-# Make sure we'll find the lollypop modules, even in JHBuild
-sys.path.insert(1, '@PYTHON_DIR@')
 
 from gi.repository import Gio
 
diff --git a/meson.build b/meson.build
index 541d2331..447ae7c9 100644
--- a/meson.build
+++ b/meson.build
@@ -26,8 +26,6 @@ conf = configuration_data()
 conf.set('PACKAGE_URL', 'https://wiki.gnome.org/Apps/Lollypop')
 conf.set('DATA_DIR', DATA_DIR)
 conf.set('LOCALE_DIR', join_paths(get_option('prefix'), get_option('datadir'), 
'locale'))
-conf.set('PYTHON_DIR', python_dir)
-conf.set('PYTHON_EXEC_DIR', join_paths(get_option('prefix'), 
python.sysconfig_path('stdlib')))
 conf.set('libexecdir', LIBEXEC_DIR)
 conf.set('VERSION', meson.project_version())
 conf.set('PYTHON', python_bin.path())
diff --git a/search-provider/lollypop-sp.in b/search-provider/lollypop-sp.in
index 59201064..8e91b4fd 100755
--- a/search-provider/lollypop-sp.in
+++ b/search-provider/lollypop-sp.in
@@ -12,10 +12,6 @@
 # along with this program. If not, see .
 
 import sys
-# Make sure we'll find the pygobject module, even in JHBuild
-sys.path.insert(1, '@PYTHON_EXEC_DIR@')
-# Make sure we'll find the lollypop modules, even in JHBuild
-sys.path.insert(1, '@PYTHON_DIR@')
 
 import gi
 gi.require_version('Secret', '1')
-- 
2.19.0




commit lollypop for openSUSE:Factory

2018-09-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-09-24 13:14:05

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Sep 24 13:14:05 2018 rev:47 rq:637380 version:0.9.601

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-08-24 
17:13:54.230770803 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-09-24 
13:14:06.925617773 +0200
@@ -1,0 +2,27 @@
+Mon Sep 24 05:33:34 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.601:
+  * Fix stupid crash (glgo#World/lollypop#1501).
+- Drop lollypop-0.9.600-fix-crash-lyrics-view.patch: Fixed
+  upstream.
+
+---
+Fri Sep 21 22:02:58 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.600:
+  * Reworked playlist management.
+  * Reworked sync to MTP.
+  * lollypop-portal is not needed anymore.
+  * Updated translations.
+  * Bugfixes:
++ glgo#World/lollypop#1495
++ glgo#World/lollypop#1494
++ glgo#World/lollypop#1484
++ glgo#World/lollypop#1457
+- Add lollypop-0.9.600-fix-crash-lyrics-view.patch: Fix crash
+  upon lyrics view closing, picked from upstream
+  (glgo#World/lollypop#1501).
+- Fix typo in recommended package name: python3-Pillow.
+- No longer recommend lollypop-portal.
+
+---

Old:

  lollypop-0.9.522.tar.xz

New:

  lollypop-0.9.601.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.8ACMSD/_old  2018-09-24 13:14:07.333617066 +0200
+++ /var/tmp/diff_new_pack.8ACMSD/_new  2018-09-24 13:14:07.333617066 +0200
@@ -12,13 +12,13 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.522
+Version:0.9.601
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -44,9 +44,8 @@
 Requires:   python3-pylast
 Recommends: easytag
 Recommends: kid3-cli
-Recommends: lollypop-portal
+Recommends: python3-Pillow
 Recommends: python3-wikipedia
-Recommends: python3-pillow
 BuildArch:  noarch
 
 %description
@@ -85,7 +84,7 @@
 %lang_package
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
 %meson

++ _service ++
--- /var/tmp/diff_new_pack.8ACMSD/_old  2018-09-24 13:14:07.361617018 +0200
+++ /var/tmp/diff_new_pack.8ACMSD/_new  2018-09-24 13:14:07.361617018 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.522
+0.9.601
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.8ACMSD/_old  2018-09-24 13:14:07.381616984 +0200
+++ /var/tmp/diff_new_pack.8ACMSD/_new  2018-09-24 13:14:07.381616984 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  9f62f3bed34627526cf71d2eed847182f2cafb18
\ No newline at end of file
+  9cd6f02263f701b4519dbc6db9b3ff2ff2d383bf
\ No newline at end of file

++ lollypop-0.9.522.tar.xz -> lollypop-0.9.601.tar.xz ++
 41939 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-08-24 17:13:14

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Fri Aug 24 17:13:14 2018 rev:46 rq:631247 version:0.9.522

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-07-23 
18:02:16.976835733 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-08-24 
17:13:54.230770803 +0200
@@ -1,0 +2,7 @@
+Thu Aug 23 17:35:38 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.522:
+  * Browse albums by years.
+  * Bug fixes.
+
+---

Old:

  lollypop-0.9.521.tar.xz

New:

  lollypop-0.9.522.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.zSzBAa/_old  2018-08-24 17:13:54.758771432 +0200
+++ /var/tmp/diff_new_pack.zSzBAa/_new  2018-08-24 17:13:54.758771432 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.521
+Version:0.9.522
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.zSzBAa/_old  2018-08-24 17:13:54.778771456 +0200
+++ /var/tmp/diff_new_pack.zSzBAa/_new  2018-08-24 17:13:54.782771461 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.521
+0.9.522
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.zSzBAa/_old  2018-08-24 17:13:54.798771480 +0200
+++ /var/tmp/diff_new_pack.zSzBAa/_new  2018-08-24 17:13:54.798771480 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  27bfc4093d32a9708daa8b7883ac10a0d840bd61
\ No newline at end of file
+  9f62f3bed34627526cf71d2eed847182f2cafb18
\ No newline at end of file

++ lollypop-0.9.521.tar.xz -> lollypop-0.9.522.tar.xz ++
 16766 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-07-23 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-07-23 18:01:18

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Jul 23 18:01:18 2018 rev:45 rq:624540 version:0.9.521

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-07-18 
22:55:55.790564954 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-07-23 
18:02:16.976835733 +0200
@@ -1,0 +2,6 @@
+Sat Jul 21 22:57:36 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.521:
+  * Fix an issue in party mode.
+
+---
@@ -5 +11 @@
-  * Set menu initial state. Fix gl#World/lollypop#1467.
+  * Set menu initial state. Fix glgo#World/lollypop#1467.

Old:

  lollypop-0.9.520.tar.xz

New:

  lollypop-0.9.521.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.Z8ePzR/_old  2018-07-23 18:02:17.492835094 +0200
+++ /var/tmp/diff_new_pack.Z8ePzR/_new  2018-07-23 18:02:17.496835089 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.520
+Version:0.9.521
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.Z8ePzR/_old  2018-07-23 18:02:17.520835059 +0200
+++ /var/tmp/diff_new_pack.Z8ePzR/_new  2018-07-23 18:02:17.520835059 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.520
+0.9.521
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.Z8ePzR/_old  2018-07-23 18:02:17.548835025 +0200
+++ /var/tmp/diff_new_pack.Z8ePzR/_new  2018-07-23 18:02:17.548835025 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  b8c9f4b193039226fc54a2b8129b49a320f4f274
\ No newline at end of file
+  27bfc4093d32a9708daa8b7883ac10a0d840bd61
\ No newline at end of file

++ lollypop-0.9.520.tar.xz -> lollypop-0.9.521.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.520/data/ArtistView.ui 
new/lollypop-0.9.521/data/ArtistView.ui
--- old/lollypop-0.9.520/data/ArtistView.ui 2018-07-16 11:27:15.0 
+0200
+++ new/lollypop-0.9.521/data/ArtistView.ui 2018-07-17 13:46:22.0 
+0200
@@ -27,7 +27,6 @@
 False
 start
 start
-10
 20
 vertical
 10
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.520/data/application.css 
new/lollypop-0.9.521/data/application.css
--- old/lollypop-0.9.520/data/application.css   2018-07-16 11:27:15.0 
+0200
+++ new/lollypop-0.9.521/data/application.css   2018-07-17 13:46:22.0 
+0200
@@ -118,7 +118,9 @@
 border: 1px solid shade(@theme_bg_color, 0.7);
 border-radius: 4px;
 border-top: none;
+border-left: none;
 border-top-left-radius: 0px;
+border-bottom-left-radius: 0px;
 border-top-right-radius: 0px;
 background-color: @theme_bg_color;
 box-shadow: 1px 1px 8px 1px alpha(black, 0.3);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-0.9.520/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-0.9.521/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-0.9.520/data/org.gnome.Lollypop.appdata.xml.in 2018-07-16 
11:27:15.0 +0200
+++ new/lollypop-0.9.521/data/org.gnome.Lollypop.appdata.xml.in 2018-07-17 
13:46:22.0 +0200
@@ -27,6 +27,13 @@
 
   
   
+
+  
+
+  Fix issues with party mode"
+
+  
+
 
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.520/lollypop/pop_menu.py 
new/lollypop-0.9.521/lollypop/pop_menu.py
--- old/lollypop-0.9.520/lollypop/pop_menu.py   2018-07-16 11:27:15.0 
+0200
+++ new/lollypop-0.9.521/lollypop/pop_menu.py   2018-07-17 13:46:22.0 
+0200
@@ -293,6 +293,12 @@
 @param track as Track
 """
 BaseMenu.__init__(self, track)
+lyrics_menu = Gio.Menu()
+action = Gio.SimpleAction(name="lyrics_action")
+App().add_action(action)
+action.connect("activate", self.__show_lyrics)
+lyrics_menu.append(_("Show lyrics"), "app.lyrics_action")
+self.insert_section(0, _("Lyrics"), lyrics_menu)
 if track.id >= 0:
 playlist_menu = PlaylistsMenu(track)
 self.insert_section(1, 

commit lollypop for openSUSE:Factory

2018-07-18 Thread root
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.changes2018-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 @@
 
   
 enable
-0.9.519
+0.9.520
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _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 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  321c13a0312c08f3d82cb49eb115d7cf9225b19a
\ No newline at end of file
+  b8c9f4b193039226fc54a2b8129b49a320f4f274
\ 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.0 +0200
+++ new/lollypop-0.9.520/data/org.gnome.Lollypop.appdata.xml.in 2018-07-16 
11:27:15.0 +0200
@@ -27,18 +27,10 @@
 
   
   
-
+
   
 
-  Fix a crash in Tunein
-  Add a button for lyrics
-
-  
-
-
-  
-
-  Restore Next Popover
+  Fix shuffle menu
 
   
 
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.py2018-07-09 
06:58:46.0 +0200
+++ new/lollypop-0.9.520/lollypop/toolbar_end.py2018-07-16 
11:27:15.0 +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.build2018-07-09 06:58:46.0 +0200
+++ new/lollypop-0.9.520/meson.build2018-07-16 11:27:15.0 +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.0 
+0200
+++ new/lollypop-0.9.520/subprojects/po/ca.po   2018-07-16 11:27:15.0 
+0200
@@ -13,7 +13,7 @@
 

commit lollypop for openSUSE:Factory

2018-07-09 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-07-09 13:30:58

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Mon Jul  9 13:30:58 2018 rev:43 rq:621673 version:0.9.519

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-07-04 
23:56:03.687830539 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-07-09 
13:31:40.570450104 +0200
@@ -1,0 +2,12 @@
+Mon Jul  9 05:42:20 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.519:
+  * Fix crash in TuneIn. Fix gl#World/lollypop#1465.
+  * Set default value to both. Fix gl#World/lollypop#1463.
+  * Show lyrics for current popover track.
+  * Make lyrics view more discoverable. Fix gl#World/lollypop#1451.
+  * Only show one artist in InfoPopover.
+  * Hide Next Popover when showing main menu.
+- Actually provide a -lang subpackage.
+
+---

Old:

  lollypop-0.9.518.tar.xz

New:

  lollypop-0.9.519.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.JLmkiE/_old  2018-07-09 13:31:41.002449235 +0200
+++ /var/tmp/diff_new_pack.JLmkiE/_new  2018-07-09 13:31:41.006449227 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.518
+Version:0.9.519
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later
@@ -42,7 +42,6 @@
 Requires:   python3-cairo
 Requires:   python3-gobject
 Requires:   python3-pylast
-Recommends: %{name}-lang = %{version}
 Recommends: easytag
 Recommends: kid3-cli
 Recommends: lollypop-portal
@@ -90,6 +89,7 @@
 
 %build
 %meson
+%meson_build
 
 %install
 %meson_install
@@ -98,7 +98,7 @@
 %check
 %meson_test
 
-%files -f %{name}.lang
+%files
 %doc AUTHORS README.md
 %license LICENSE
 %{_bindir}/%{name}
@@ -119,4 +119,6 @@
 %dir %{_datadir}/gnome-shell/search-providers
 %{_datadir}/gnome-shell/search-providers/lollypop-search-provider.ini
 
+%files lang -f %{name}.lang
+
 %changelog

++ _service ++
--- /var/tmp/diff_new_pack.JLmkiE/_old  2018-07-09 13:31:41.030449178 +0200
+++ /var/tmp/diff_new_pack.JLmkiE/_new  2018-07-09 13:31:41.030449178 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.518
+0.9.519
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.JLmkiE/_old  2018-07-09 13:31:41.046449147 +0200
+++ /var/tmp/diff_new_pack.JLmkiE/_new  2018-07-09 13:31:41.046449147 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  4ca32d1ee848c170cb7a0b8f48e685dcac351882
\ No newline at end of file
+  321c13a0312c08f3d82cb49eb115d7cf9225b19a
\ No newline at end of file

++ lollypop-0.9.518.tar.xz -> lollypop-0.9.519.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.518/data/ArtistInformation.ui 
new/lollypop-0.9.519/data/ArtistInformation.ui
--- old/lollypop-0.9.518/data/ArtistInformation.ui  2018-07-01 
13:16:31.0 +0200
+++ new/lollypop-0.9.519/data/ArtistInformation.ui  2018-07-09 
06:58:46.0 +0200
@@ -1,7 +1,12 @@
 
-
+
 
   
+  
+True
+False
+audio-input-microphone-symbolic
+  
   
 True
 False
@@ -60,19 +65,67 @@
   
 
 
-  
+  
 True
 False
-
-  
-  
-
+center
+5
+15
+
+  
+True
+False
+
+  
+  
+
+  
+  
+0
+0
+  
+
+
+  
+True
+False
+
+  
+
+
+  
+
+  
+  
+1
+0
+  
+
+
+  
+True
+True
+Show 
lyrics
+image1
+none
+
+  
+
+  
+  
+2
+0
+  
+
   
   
 0
 0
-2
+3
   
 
+
+  
+
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.518/data/ToolbarEnd.ui 
new/lollypop-0.9.519/data/ToolbarEnd.ui
--- old/lollypop-0.9.518/data/ToolbarEnd.ui 2018-07-01 13:16:31.0 

commit lollypop for openSUSE:Factory

2018-07-04 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-07-04 23:55:48

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Wed Jul  4 23:55:48 2018 rev:42 rq:620512 version:0.9.518

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-06-27 
10:21:19.144261764 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-07-04 
23:56:03.687830539 +0200
@@ -1,0 +2,10 @@
+Sun Jul 01 19:51:06 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.518:
+  * Restore next popover.
+- Update to version 0.9.517:
+  * Bug fixes.
+  * Remove party mode button.
+  * Disable appmenu.
+
+---

Old:

  lollypop-0.9.516.tar.xz

New:

  lollypop-0.9.518.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.lJS0Yi/_old  2018-07-04 23:56:05.115828964 +0200
+++ /var/tmp/diff_new_pack.lJS0Yi/_new  2018-07-04 23:56:05.115828964 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.516
+Version:0.9.518
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.lJS0Yi/_old  2018-07-04 23:56:05.139828937 +0200
+++ /var/tmp/diff_new_pack.lJS0Yi/_new  2018-07-04 23:56:05.139828937 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.516
+0.9.518
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.lJS0Yi/_old  2018-07-04 23:56:05.155828920 +0200
+++ /var/tmp/diff_new_pack.lJS0Yi/_new  2018-07-04 23:56:05.155828920 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  d75eca5655f17b9300470153534637d2bd1f8817
\ No newline at end of file
+  4ca32d1ee848c170cb7a0b8f48e685dcac351882
\ No newline at end of file

++ lollypop-0.9.516.tar.xz -> lollypop-0.9.518.tar.xz ++
 7448 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-06-27 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-06-27 10:21:13

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Wed Jun 27 10:21:13 2018 rev:41 rq:618944 version:0.9.516

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-06-20 
15:35:17.173521719 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-06-27 
10:21:19.144261764 +0200
@@ -1,0 +2,10 @@
+Mon Jun 25 09:18:03 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.516:
+  * Fix screenshot height
+  * Fix lyrics reader (from tags). Fix #1450
+  * Fix Alt+a shortcut  behaviour
+  * Allow users to discover sidebar options
+  * Some sensitivity tweaking
+
+---

Old:

  lollypop-0.9.515.tar.xz

New:

  lollypop-0.9.516.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.IZoPrg/_old  2018-06-27 10:21:20.948195967 +0200
+++ /var/tmp/diff_new_pack.IZoPrg/_new  2018-06-27 10:21:20.952195821 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.515
+Version:0.9.516
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.IZoPrg/_old  2018-06-27 10:21:20.996194216 +0200
+++ /var/tmp/diff_new_pack.IZoPrg/_new  2018-06-27 10:21:20.996194216 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.515
+0.9.516
 git
 https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.IZoPrg/_old  2018-06-27 10:21:21.016193487 +0200
+++ /var/tmp/diff_new_pack.IZoPrg/_new  2018-06-27 10:21:21.016193487 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/World/lollypop.git
-  e5e7d2bda2b885bef405cdc2a194b19aac36b57e
+  d75eca5655f17b9300470153534637d2bd1f8817
\ No newline at end of file

++ lollypop-0.9.515.tar.xz -> lollypop-0.9.516.tar.xz ++
 14222 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-06-20 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-06-20 15:35:09

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Wed Jun 20 15:35:09 2018 rev:40 rq:617913 version:0.9.515

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-05-29 
10:42:40.369468326 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-06-20 
15:35:17.173521719 +0200
@@ -1,0 +2,18 @@
+Tue Jun 19 18:35:06 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.515:
+  * Fix Missing artists list. Fix #1443
+  * Crash when opening the playlist popup if the random playlist is
+selected. Fix #1447
+  * Properly calculate height for every case. Fix #1445
+  * Save currently playing/queue as new playlist. Fix #1439
+  * Fix #1440
+  * Fix a crash when an album is missing an URI
+  * Fix typo
+  * Add ⮟ to fastscroll widget
+  * Gtk.FileChooserDialog only blocks key-press-event. Fix #1435
+  * Disable scroll event on combobox. #1435
+  * Add ⮝ to fastscroll widget. Fix #1434
+- Update git URL.
+
+---

Old:

  lollypop-0.9.514.tar.xz

New:

  lollypop-0.9.515.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.yyQ4d8/_old  2018-06-20 15:35:17.997491810 +0200
+++ /var/tmp/diff_new_pack.yyQ4d8/_new  2018-06-20 15:35:18.001491665 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.514
+Version:0.9.515
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.yyQ4d8/_old  2018-06-20 15:35:18.037490358 +0200
+++ /var/tmp/diff_new_pack.yyQ4d8/_new  2018-06-20 15:35:18.041490214 +0200
@@ -1,9 +1,9 @@
 
   
 enable
-0.9.514
+0.9.515
 git
-https://gitlab.gnome.org/gnumdk/lollypop.git
+https://gitlab.gnome.org/World/lollypop.git
 @PARENT_TAG@
   
   

++ _servicedata ++
--- /var/tmp/diff_new_pack.yyQ4d8/_old  2018-06-20 15:35:18.065489342 +0200
+++ /var/tmp/diff_new_pack.yyQ4d8/_new  2018-06-20 15:35:18.065489342 +0200
@@ -1,4 +1,4 @@
 
 
-https://gitlab.gnome.org/gnumdk/lollypop.git
-  16d75039bc0d7fa72f121c4f443ef3d6336e7f60
\ No newline at end of file
+https://gitlab.gnome.org/World/lollypop.git
+  e5e7d2bda2b885bef405cdc2a194b19aac36b57e

++ lollypop-0.9.514.tar.xz -> lollypop-0.9.515.tar.xz ++
 12118 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2018-05-29 10:42:31

Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and  /work/SRC/openSUSE:Factory/.lollypop.new (New)


Package is "lollypop"

Tue May 29 10:42:31 2018 rev:39 rq:611830 version:0.9.514

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2018-05-18 
14:28:19.845428724 +0200
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2018-05-29 
10:42:40.369468326 +0200
@@ -1,0 +2,10 @@
+Thu May 24 05:38:10 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 0.9.514:
+  * Fix search shortcut.
+- Update to version 0.9.513:
+  * Workaround a crash in Pango.
+  * Enable new encoders in MTP sync.
+  * Use Gtk.Gesture.
+
+---

Old:

  lollypop-0.9.512.tar.xz

New:

  lollypop-0.9.514.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.gQXnMh/_old  2018-05-29 10:42:41.777416361 +0200
+++ /var/tmp/diff_new_pack.gQXnMh/_new  2018-05-29 10:42:41.777416361 +0200
@@ -18,7 +18,7 @@
 
 %global gobject_introspection_version 1.35.9
 Name:   lollypop
-Version:0.9.512
+Version:0.9.514
 Release:0
 Summary:GNOME music playing application
 License:GPL-3.0-or-later

++ _service ++
--- /var/tmp/diff_new_pack.gQXnMh/_old  2018-05-29 10:42:41.805415328 +0200
+++ /var/tmp/diff_new_pack.gQXnMh/_new  2018-05-29 10:42:41.805415328 +0200
@@ -1,7 +1,7 @@
 
   
 enable
-0.9.512
+0.9.514
 git
 https://gitlab.gnome.org/gnumdk/lollypop.git
 @PARENT_TAG@

++ _servicedata ++
--- /var/tmp/diff_new_pack.gQXnMh/_old  2018-05-29 10:42:41.821414738 +0200
+++ /var/tmp/diff_new_pack.gQXnMh/_new  2018-05-29 10:42:41.825414590 +0200
@@ -1,4 +1,4 @@
 
 
 https://gitlab.gnome.org/gnumdk/lollypop.git
-  53a628d318b3796cb857d2f63be74be13edf0e27
\ No newline at end of file
+  16d75039bc0d7fa72f121c4f443ef3d6336e7f60
\ No newline at end of file

++ lollypop-0.9.512.tar.xz -> lollypop-0.9.514.tar.xz ++
 41281 lines of diff (skipped)




  1   2   >