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.changes 2019-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 - [email protected] + +- 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 @@ <services> <service mode="disabled" name="tar_scm"> <param name="changesgenerate">enable</param> - <param name="revision">1.1.4.11</param> + <param name="revision">1.1.4.12</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.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 @@ <servicedata> <service name="tar_scm"> <param name="url">https://gitlab.gnome.org/World/lollypop.git</param> - <param name="changesrevision">0bc9a68beb6414f4e740ca587cca7a00678d715c</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">03f728791d0e17bf5ac102066b82185fad7c2eb8</param></service></servicedata> \ 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.000000000 +0200 +++ new/lollypop-1.1.4.12/lollypop/container_lists.py 2019-08-11 23:13:42.000000000 +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.000000000 +0200 +++ new/lollypop-1.1.4.12/lollypop/pop_current.py 2019-08-11 23:13:42.000000000 +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)
