Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2021-02-07 15:21:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lollypop (Old)
 and      /work/SRC/openSUSE:Factory/.lollypop.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lollypop"

Sun Feb  7 15:21:42 2021 rev:146 rq:869825 version:1.4.16

Changes:
--------
--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes        2021-01-31 
16:52:42.424762918 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new.28504/lollypop.changes     
2021-02-07 15:24:17.198217511 +0100
@@ -1,0 +2,9 @@
+Fri Feb 05 17:46:04 UTC 2021 - antoine.belv...@opensuse.org
+
+- Update to version 1.4.16:
+  * Fix playback stopping after reordering songs
+    (glgo#World/lollypop#2709).
+  * Prevent LastFM/ListenBrainz scrobble loss upon e.g. loss of
+    Internet access.
+
+-------------------------------------------------------------------

Old:
----
  lollypop-1.4.15.tar.xz

New:
----
  lollypop-1.4.16.tar.xz

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

Other differences:
------------------
++++++ lollypop.spec ++++++
--- /var/tmp/diff_new_pack.7fgNec/_old  2021-02-07 15:24:17.870218279 +0100
+++ /var/tmp/diff_new_pack.7fgNec/_new  2021-02-07 15:24:17.870218279 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           lollypop
-Version:        1.4.15
+Version:        1.4.16
 Release:        0
 Summary:        GNOME music playing application
 License:        GPL-3.0-or-later

++++++ _service ++++++
--- /var/tmp/diff_new_pack.7fgNec/_old  2021-02-07 15:24:17.902218316 +0100
+++ /var/tmp/diff_new_pack.7fgNec/_new  2021-02-07 15:24:17.906218320 +0100
@@ -1,7 +1,7 @@
 <services>
   <service mode="disabled" name="tar_scm">
     <param name="changesgenerate">enable</param>
-    <param name="revision">1.4.15</param>
+    <param name="revision">1.4.16</param>
     <param name="scm">git</param>
     <param name="url">https://gitlab.gnome.org/World/lollypop.git</param>
     <param name="versionformat">@PARENT_TAG@</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.7fgNec/_old  2021-02-07 15:24:17.926218343 +0100
+++ /var/tmp/diff_new_pack.7fgNec/_new  2021-02-07 15:24:17.926218343 +0100
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://gitlab.gnome.org/World/lollypop.git</param>
-              <param 
name="changesrevision">496a7219126d21b6034b3923442741f4008a259f</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">5b2d95f4f8509d80fa86ab7d65b118326dc82a95</param></service></servicedata>
\ No newline at end of file

++++++ lollypop-1.4.15.tar.xz -> lollypop-1.4.16.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lollypop-1.4.15/data/org.gnome.Lollypop.appdata.xml.in 
new/lollypop-1.4.16/data/org.gnome.Lollypop.appdata.xml.in
--- old/lollypop-1.4.15/data/org.gnome.Lollypop.appdata.xml.in  2021-01-30 
23:04:06.000000000 +0100
+++ new/lollypop-1.4.16/data/org.gnome.Lollypop.appdata.xml.in  2021-02-05 
14:29:04.000000000 +0100
@@ -17,7 +17,7 @@
     </ul>
   </description>
   <releases>
-    <release version="1.4.15" date="2021-01-30">
+    <release version="1.4.16" date="2021-02-05">
       <description>
       </description>
     </release>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.15/lollypop/helper_dnd.py 
new/lollypop-1.4.16/lollypop/helper_dnd.py
--- old/lollypop-1.4.15/lollypop/helper_dnd.py  2021-01-30 23:04:06.000000000 
+0100
+++ new/lollypop-1.4.16/lollypop/helper_dnd.py  2021-02-05 14:29:04.000000000 
+0100
@@ -13,6 +13,7 @@
 from gi.repository import Gdk, Gtk, GLib, GObject
 
 from lollypop.objects_album import Album
+from lollypop.define import App
 from lollypop.utils import set_cursor_type
 from lollypop.widgets_row_album import AlbumRow
 from lollypop.widgets_row_track import TrackRow
@@ -83,6 +84,11 @@
                 self.__listbox.remove(next)
             else:
                 children.pop(0)
+        for album_row in self.__listbox.get_children():
+            if album_row.album.id == App().player.current_track.album.id:
+                for track_row in album_row.children:
+                    if track_row.track.id == App().player.current_track.id:
+                        App().player._current_track = track_row.track
         GLib.timeout_add(100, self.emit, "dnd-finished")
 
     def __do_drag_and_drop(self, src_rows, dest_row, direction):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.15/lollypop/ws_lastfm.py 
new/lollypop-1.4.16/lollypop/ws_lastfm.py
--- old/lollypop-1.4.15/lollypop/ws_lastfm.py   2021-01-30 23:04:06.000000000 
+0100
+++ new/lollypop-1.4.16/lollypop/ws_lastfm.py   2021-02-05 14:29:04.000000000 
+0100
@@ -226,6 +226,8 @@
                                                            self.__cancellable)
                 if data is not None:
                     Logger.debug("%s: %s", self.__uri, data)
+                else:
+                    self.__queue.append((track, timestamp))
         except Exception as e:
             Logger.error("LastFMWebService::__listen(): %s" % e)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.15/lollypop/ws_listenbrainz.py 
new/lollypop-1.4.16/lollypop/ws_listenbrainz.py
--- old/lollypop-1.4.15/lollypop/ws_listenbrainz.py     2021-01-30 
23:04:06.000000000 +0100
+++ new/lollypop-1.4.16/lollypop/ws_listenbrainz.py     2021-02-05 
14:29:04.000000000 +0100
@@ -141,6 +141,8 @@
                                                            self.__cancellable)
                 if data is not None:
                     Logger.debug("%s: %s", self.__uri, data)
+                else:
+                    self.__queue.append((track, timestamp))
         except Exception as e:
             Logger.error("ListenBrainzWebService::__listen(): %s" % e)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.15/meson.build 
new/lollypop-1.4.16/meson.build
--- old/lollypop-1.4.15/meson.build     2021-01-30 23:04:06.000000000 +0100
+++ new/lollypop-1.4.16/meson.build     2021-02-05 14:29:04.000000000 +0100
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '1.4.15',
+  version: '1.4.16',
   meson_version: '>= 0.46.0'
 )
 revision = run_command('bin/revision.sh').stdout().strip()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-1.4.15/subprojects/po/de.po 
new/lollypop-1.4.16/subprojects/po/de.po
--- old/lollypop-1.4.15/subprojects/po/de.po    2021-01-30 23:04:06.000000000 
+0100
+++ new/lollypop-1.4.16/subprojects/po/de.po    2021-02-05 14:29:04.000000000 
+0100
@@ -20,8 +20,8 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2021-01-06 14:55+0100\n"
-"PO-Revision-Date: 2020-11-30 20:28+0000\n"
-"Last-Translator: Milo Ivir <m...@milotype.de>\n"
+"PO-Revision-Date: 2021-02-03 20:41+0000\n"
+"Last-Translator: Vincent Bermel <willovi...@openmailbox.org>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "de/>\n"
 "Language: de\n"
@@ -29,7 +29,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.4-dev\n"
+"X-Generator: Weblate 4.5-dev\n"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:36
 msgid "Window size"
@@ -624,7 +624,7 @@
 
 #: ../data/SettingsDialog.ui:105
 msgid "High quality artwork"
-msgstr ""
+msgstr "Hochqualitatives Bildmaterial"
 
 #: ../data/SettingsDialog.ui:122
 msgid "Artwork size"
@@ -738,7 +738,7 @@
 
 #: ../data/SettingsDialog.ui:370
 msgid "Import settings"
-msgstr "Einstellungen importieren"
+msgstr "Import-Einstellungen"
 
 #: ../data/SettingsDialog.ui:377
 msgid "Update music if files added to collection"
@@ -1171,7 +1171,7 @@
 
 #: ../lollypop/assistant_flatpak.py:31
 msgid "Authorization needed"
-msgstr ""
+msgstr "Legitimierung erforderlich"
 
 #: ../lollypop/assistant_flatpak.py:33
 msgid ""
@@ -1527,7 +1527,7 @@
 
 #: ../lollypop/menu_objects.py:66
 msgid "Show album"
-msgstr ""
+msgstr "Album anzeigen"
 
 #: ../lollypop/menu_objects.py:70 ../lollypop/menu_objects.py:119
 #: ../lollypop/menu_similars.py:167
@@ -1606,7 +1606,7 @@
 
 #: ../lollypop/menu_playback.py:529 ../lollypop/menu_playback.py:615
 msgid "Ignored"
-msgstr ""
+msgstr "Ignoriert"
 
 #: ../lollypop/menu_playback.py:672
 msgid "Add to queue"
@@ -1799,7 +1799,7 @@
 
 #: ../lollypop/shown.py:73
 msgid "Skipped tracks"
-msgstr ""
+msgstr "??bersprungene Titel"
 
 #: ../lollypop/shown.py:74
 msgid "All tracks"
@@ -1921,7 +1921,7 @@
 
 #: ../lollypop/view_tracks_queue.py:36
 msgid "Currently in queue"
-msgstr ""
+msgstr "Momentan in Warteschlange"
 
 #: ../lollypop/view_tracks_search.py:103
 msgid "Tracks"

Reply via email to