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.changes 2020-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 - [email protected] + +- 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 @@ <services> <service mode="disabled" name="tar_scm"> <param name="changesgenerate">enable</param> - <param name="revision">1.3.3</param> + <param name="revision">1.3.4</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.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 @@ <servicedata> <service name="tar_scm"> <param name="url">https://gitlab.gnome.org/World/lollypop.git</param> - <param name="changesrevision">e618b9f230ff9148e33e4a6b46abf3abf42b9b5b</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">ada1da2612a86aa7b43d2a3de1440f951368bff4</param></service></servicedata> \ 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.000000000 +0200 +++ new/lollypop-1.3.4/data/application.css 2020-08-10 13:23:07.000000000 +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.000000000 +0200 +++ new/lollypop-1.3.4/data/org.gnome.Lollypop.appdata.xml.in 2020-08-10 13:23:07.000000000 +0200 @@ -17,7 +17,7 @@ </ul> </description> <releases> - <release version="1.3.3" date="2020-07-30"> + <release version="1.3.4" date="2020-08-10"> <description> </description> </release> 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.000000000 +0200 +++ new/lollypop-1.3.4/lollypop/player.py 2020-08-10 13:23:07.000000000 +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.000000000 +0200 +++ new/lollypop-1.3.4/lollypop/player_shuffle.py 2020-08-10 13:23:07.000000000 +0200 @@ -39,7 +39,7 @@ # Tracks already played by albums self.__already_played_tracks = {} # Party mode - self.__is_party = False + self._is_party = False App().settings.connect("changed::shuffle", self.__set_shuffle) self.connect("playback-added", self.__on_playback_added) self.connect("playback-setted", self.__on_playback_setted) @@ -91,9 +91,9 @@ self.play() emit_signal(self, "loading-changed", False, Track()) - if party == self.__is_party: + if party == self._is_party: return - self.__is_party = party + self._is_party = party if party: App().task_helper.run(self.set_party_ids, callback=(start_party,)) @@ -111,7 +111,7 @@ """ Set party mode ids """ - if not self.__is_party: + if not self._is_party: return party_ids = App().settings.get_value("party-ids") storage_type = get_default_storage_type() @@ -131,7 +131,7 @@ True if party mode on @return bool """ - return self.__is_party + return self._is_party @property def shuffle_has_next(self): @@ -160,7 +160,7 @@ self._current_track.id < 0: return # Add track to shuffle history if needed - if App().settings.get_value("shuffle") or self.__is_party: + if App().settings.get_value("shuffle") or self._is_party: self.__add_to_shuffle_history(self._current_track) if self.__history: next = self.__history.next @@ -207,7 +207,7 @@ @return track as Track """ try: - if App().settings.get_value("shuffle") or self.__is_party: + if App().settings.get_value("shuffle") or self._is_party: if self._albums: track = self.__get_tracks_random() # All tracks done @@ -276,7 +276,7 @@ @param player as Player @param album as Album """ - if App().settings.get_value("shuffle") or self.__is_party: + if App().settings.get_value("shuffle") or self._is_party: if album not in self.__to_play_albums: self.__to_play_albums.append(album) shuffle(self.__to_play_albums) @@ -294,7 +294,7 @@ @param player as Player @param albums as [Album] """ - if App().settings.get_value("shuffle") or self.__is_party: + if App().settings.get_value("shuffle") or self._is_party: self.__to_play_albums = albums if albums: shuffle(self.__to_play_albums) @@ -309,7 +309,7 @@ @param player as Player @param album as Album """ - if App().settings.get_value("shuffle") or self.__is_party: + if App().settings.get_value("shuffle") or self._is_party: if album in self.__to_play_albums: self.__to_play_albums.remove(album) if album in self.__not_played_albums: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/lollypop/view_artist_list.py new/lollypop-1.3.4/lollypop/view_artist_list.py --- old/lollypop-1.3.3/lollypop/view_artist_list.py 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/lollypop/view_artist_list.py 2020-08-10 13:23:07.000000000 +0200 @@ -106,7 +106,7 @@ album = Album(album_id, self.__genre_ids, self.__artist_ids) widget = AlbumView(album, self.storage_type, - ViewType.DEFAULT) + ViewType.ARTIST) widget.show() widget.set_property("valign", Gtk.Align.START) self.__list.add(widget) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/lollypop/view_tracks_album.py new/lollypop-1.3.4/lollypop/view_tracks_album.py --- old/lollypop-1.3.3/lollypop/view_tracks_album.py 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/lollypop/view_tracks_album.py 2020-08-10 13:23:07.000000000 +0200 @@ -334,7 +334,7 @@ @param widget as TracksWidget @param track as Track """ - if self.view_type & ViewType.ALBUM: + if self.view_type & (ViewType.ALBUM | ViewType.ARTIST): tracks = [] for child in self.children: if child.track.loved != -1: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/lollypop/widgets_row_album.py new/lollypop-1.3.4/lollypop/widgets_row_album.py --- old/lollypop-1.3.3/lollypop/widgets_row_album.py 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/lollypop/widgets_row_album.py 2020-08-10 13:23:07.000000000 +0200 @@ -272,7 +272,7 @@ def album(self): """ Get album - @return row id as int + @return Album """ return self.__album diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/lollypop/widgets_row_track.py new/lollypop-1.3.4/lollypop/widgets_row_track.py --- old/lollypop-1.3.3/lollypop/widgets_row_track.py 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/lollypop/widgets_row_track.py 2020-08-10 13:23:07.000000000 +0200 @@ -168,19 +168,18 @@ """ Update position label for row """ - if self.__view_type & (ViewType.PLAYBACK | ViewType.PLAYLISTS): - return if App().player.is_in_queue(self._track.id): self._num_label.get_style_context().add_class("queued") pos = App().player.get_track_position(self._track.id) self._num_label.set_text(str(pos)) else: - if len(self._track.album.discs) > 1: + if self.__view_type & (ViewType.PLAYBACK | ViewType.PLAYLISTS) and\ + len(self._track.album.discs) > 1: discnumber = App().tracks.get_discnumber(self._track.id) - label = "(%s) %s" % (discnumber, self._track.number) + label = "%s - %s" % (self._track.number, discnumber) else: label = str(self._track.number) - self._num_label.set_text(label) + self._num_label.set_markup(label) self._num_label.get_style_context().remove_class("queued") self._num_label.show() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/meson.build new/lollypop-1.3.4/meson.build --- old/lollypop-1.3.3/meson.build 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/meson.build 2020-08-10 13:23:07.000000000 +0200 @@ -1,5 +1,5 @@ project('lollypop', - version: '1.3.3', + version: '1.3.4', 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.3.3/subprojects/po/de.po new/lollypop-1.3.4/subprojects/po/de.po --- old/lollypop-1.3.3/subprojects/po/de.po 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/subprojects/po/de.po 2020-08-10 13:23:07.000000000 +0200 @@ -20,8 +20,8 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-06-16 15:05+0200\n" -"PO-Revision-Date: 2020-04-29 11:11+0000\n" -"Last-Translator: Jeannette L <[email protected]>\n" +"PO-Revision-Date: 2020-08-02 12:41+0000\n" +"Last-Translator: dolwup <[email protected]>\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.0.2\n" +"X-Generator: Weblate 4.2-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -96,11 +96,11 @@ #: ../data/org.gnome.Lollypop.gschema.xml:95 msgid "Shown suggestions" -msgstr "" +msgstr "Gezeigte Vorschläge" #: ../data/org.gnome.Lollypop.gschema.xml:100 msgid "Play featured tracks" -msgstr "" +msgstr "Spiele vorgestellte Titel" #: ../data/org.gnome.Lollypop.gschema.xml:105 msgid "Allow syncing to USB disks" @@ -118,7 +118,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:125 msgid "Show year below album name" -msgstr "" +msgstr "Jahr unter dem Albumnamen anzeigen" #: ../data/org.gnome.Lollypop.gschema.xml:130 msgid "Import playlists from collections" @@ -277,7 +277,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:289 msgid "0.0-1.0" -msgstr "" +msgstr "0.0-1.0" #: ../data/org.gnome.Lollypop.gschema.xml:293 msgid "Equalizer enabled" @@ -333,7 +333,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:373 msgid "Applies signal compression/limiting to raw audio data" -msgstr "" +msgstr "Wendet Signalkompression/-limitierung auf Audio Rohdaten an" #: ../data/org.gnome.Lollypop.gschema.xml:374 msgid "" @@ -437,7 +437,7 @@ #: ../data/org.gnome.Lollypop.appdata.xml.in:16 msgid "Audio Scrobbling –" -msgstr "" +msgstr "Audio Scrobblen" #: ../data/org.gnome.Lollypop.desktop.in:4 msgid "Music Player" @@ -461,7 +461,7 @@ #: ../data/Appmenu.ui:63 msgid "Mini player" -msgstr "" +msgstr "Miniplayer" #: ../data/Appmenu.ui:81 msgid "Fullscreen" @@ -832,11 +832,11 @@ #: ../data/SettingsWeb.ui:647 msgid "Last.fm:" -msgstr "" +msgstr "Last.fm:" #: ../data/SettingsWeb.ui:660 msgid "Libre.fm:" -msgstr "" +msgstr "Libre.fm:" #: ../data/SettingsWeb.ui:727 msgid "" @@ -883,7 +883,7 @@ #: ../data/SettingsWeb.ui:865 msgid "?" -msgstr "" +msgstr "?" #: ../data/SettingsWeb.ui:882 msgid "API key" @@ -969,7 +969,7 @@ #: ../data/Shortcuts.ui:87 msgctxt "shortcut window" msgid "Mini player" -msgstr "" +msgstr "Miniplayer" #: ../data/Shortcuts.ui:96 msgctxt "shortcut window" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/subprojects/po/eo.po new/lollypop-1.3.4/subprojects/po/eo.po --- old/lollypop-1.3.3/subprojects/po/eo.po 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/subprojects/po/eo.po 2020-08-10 13:23:07.000000000 +0200 @@ -11,7 +11,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-06-16 15:05+0200\n" -"PO-Revision-Date: 2020-01-28 23:50+0000\n" +"PO-Revision-Date: 2020-08-04 22:32+0000\n" "Last-Translator: Sebastien Zurfluh <[email protected]>\n" "Language-Team: Esperanto <https://hosted.weblate.org/projects/gnumdk/" "lollypop/eo/>\n" @@ -20,7 +20,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.2-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -87,11 +87,11 @@ #: ../data/org.gnome.Lollypop.gschema.xml:95 msgid "Shown suggestions" -msgstr "" +msgstr "Montrataj sugestoj" #: ../data/org.gnome.Lollypop.gschema.xml:100 msgid "Play featured tracks" -msgstr "" +msgstr "Ludi elstaritajn pecojn" #: ../data/org.gnome.Lollypop.gschema.xml:105 msgid "Allow syncing to USB disks" @@ -111,7 +111,7 @@ #: ../data/org.gnome.Lollypop.gschema.xml:125 msgid "Show year below album name" -msgstr "" +msgstr "Montri la jaron sub l'albuma nomo" #: ../data/org.gnome.Lollypop.gschema.xml:130 msgid "Import playlists from collections" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/subprojects/po/it.po new/lollypop-1.3.4/subprojects/po/it.po --- old/lollypop-1.3.3/subprojects/po/it.po 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/subprojects/po/it.po 2020-08-10 13:23:07.000000000 +0200 @@ -17,7 +17,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-06-16 15:05+0200\n" -"PO-Revision-Date: 2020-06-03 06:41+0000\n" +"PO-Revision-Date: 2020-08-04 22:32+0000\n" "Last-Translator: Gianluca Boiano <[email protected]>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/gnumdk/lollypop/" "it/>\n" @@ -26,7 +26,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.1-dev\n" +"X-Generator: Weblate 4.2-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -369,7 +369,7 @@ #: ../data/AboutDialog.ui.in:27 msgctxt "Add your names here, do not remove previous names!" msgid "translator1, translator2, ..." -msgstr "" +msgstr "Gianluca Boiano" #: ../data/AboutDialog.ui.in:28 msgid "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-1.3.3/subprojects/po/uk.po new/lollypop-1.3.4/subprojects/po/uk.po --- old/lollypop-1.3.3/subprojects/po/uk.po 2020-07-30 12:30:11.000000000 +0200 +++ new/lollypop-1.3.4/subprojects/po/uk.po 2020-08-10 13:23:07.000000000 +0200 @@ -10,7 +10,7 @@ "Project-Id-Version: lollypop\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-06-16 15:05+0200\n" -"PO-Revision-Date: 2020-04-16 11:11+0000\n" +"PO-Revision-Date: 2020-08-01 11:12+0000\n" "Last-Translator: strixaluco <[email protected]>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/gnumdk/" "lollypop/uk/>\n" @@ -20,7 +20,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.0.1-dev\n" +"X-Generator: Weblate 4.2-dev\n" #: ../data/org.gnome.Lollypop.gschema.xml:35 msgid "Window size" @@ -1478,7 +1478,7 @@ #: ../lollypop/menu_selectionlist.py:112 msgid "Options" -msgstr "Опції" +msgstr "Параметри" #: ../lollypop/menu_selectionlist.py:137 msgid "Sections"
