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.changes 2018-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 - [email protected] + +- 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 @@ <services> <service mode="disabled" name="tar_scm"> <param name="changesgenerate">enable</param> - <param name="revision">0.9.602</param> + <param name="revision">0.9.604</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.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 @@ <servicedata> <service name="tar_scm"> <param name="url">https://gitlab.gnome.org/World/lollypop.git</param> - <param name="changesrevision">5b4c8679e8147ebb27a52bea206974de208a5853</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">fc324e0ab26e2eb16c756e31916d336e789526e7</param></service></servicedata> \ 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.000000000 +0200 +++ new/lollypop-0.9.604/data/ArtistView.ui 2018-10-08 08:20:35.000000000 +0200 @@ -124,7 +124,7 @@ </packing> </child> <child> - <object class="GtkToggleButton"> + <object class="GtkToggleButton" id="lastfm-button"> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> 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.000000000 +0200 +++ new/lollypop-0.9.604/data/org.gnome.Lollypop.appdata.xml.in 2018-10-08 08:20:35.000000000 +0200 @@ -27,6 +27,13 @@ </ul> </description> <releases> + <release version="0.9.603" date="2018-10-08"> + <description> + <ul> + <li>Fix a crash in artist view</li> + </ul> + </description> + </release> <release version="0.9.602" date="2018-10-06"> <description> <ul> 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.000000000 +0200 +++ new/lollypop-0.9.604/lollypop/container.py 2018-10-08 08:20:35.000000000 +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.build 2018-10-06 18:11:14.000000000 +0200 +++ new/lollypop-0.9.604/meson.build 2018-10-08 08:20:35.000000000 +0200 @@ -1,5 +1,5 @@ project('lollypop', - version: '0.9.602', + version: '0.9.604', meson_version: '>= 0.40.0' ) i18n = import('i18n') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lollypop-0.9.602/subprojects/po/tr.po new/lollypop-0.9.604/subprojects/po/tr.po --- old/lollypop-0.9.602/subprojects/po/tr.po 2018-10-06 18:11:14.000000000 +0200 +++ new/lollypop-0.9.604/subprojects/po/tr.po 2018-10-08 08:20:35.000000000 +0200 @@ -12,7 +12,7 @@ "Project-Id-Version: Turkish (gnumdk)\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-10-01 07:34+0200\n" -"PO-Revision-Date: 2018-08-23 12:37+0000\n" +"PO-Revision-Date: 2018-10-07 15:37+0000\n" "Last-Translator: Emin Tufan Çetin <[email protected]>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/gnumdk/lollypop/" "tr/>\n" @@ -21,7 +21,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.2-dev\n" +"X-Generator: Weblate 3.2\n" #: ../data/org.gnome.Lollypop.gschema.xml:28 msgid "Window size" @@ -398,19 +398,19 @@ #: ../data/org.gnome.Lollypop.appdata.xml.in:33 msgid "Fix a crash" -msgstr "" +msgstr "Çökümü onar" #: ../data/org.gnome.Lollypop.appdata.xml.in:34 msgid "Reworked playlist management" -msgstr "" +msgstr "Yeniden çalışılan çalma listesi yönetimi" #: ../data/org.gnome.Lollypop.appdata.xml.in:35 msgid "Reworked sync to MTP" -msgstr "" +msgstr "Yeniden çalışılan MTP'ye eşzamanlama" #: ../data/org.gnome.Lollypop.appdata.xml.in:36 msgid "lollypop-portal not needed anymore" -msgstr "" +msgstr "lollypop-portal artık gerekli değil" #: ../data/org.gnome.Lollypop.desktop.in:4 msgid "Music Player" @@ -1145,11 +1145,11 @@ #: ../lollypop/pop_search.py:105 msgid "<big>No results for this search</big>" -msgstr "" +msgstr "<big>Bu arama için sonuç yok</big>" #: ../lollypop/pop_search.py:112 msgid "<big>Search for artists, albums and tracks</big>" -msgstr "" +msgstr "<big>Sanatçılar, albümler ve parçalar için ara</big>" #: ../lollypop/pop_tunein.py:92 ../lollypop/pop_tunein.py:401 msgid "Can't connect to TuneIn…" @@ -1289,7 +1289,7 @@ #: ../lollypop/view_device.py:83 msgid "Synchronize" -msgstr "" +msgstr "Eşzamanla" #: ../lollypop/view_device.py:84 ../lollypop/view_device.py:205 #, python-format @@ -1347,7 +1347,7 @@ #: ../lollypop/widgets_albums_decade.py:94 msgid "Open" -msgstr "" +msgstr "Aç" #: ../lollypop/widgets_context.py:110 msgid "Add to playlist" @@ -1371,7 +1371,7 @@ #: ../lollypop/widgets_playlist_rounded.py:193 msgid "Modify playlist" -msgstr "" +msgstr "Çalma listesini düzenle" #: ../lollypop/widgets_radio.py:187 msgid "Modify radio"
