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.changes        2019-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 @@
 <services>
   <service mode="disabled" name="tar_scm">
     <param name="changesgenerate">enable</param>
-    <param name="revision">0.9.909</param>
+    <param name="revision">0.9.910</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.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 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://gitlab.gnome.org/World/lollypop.git</param>
-              <param 
name="changesrevision">62ff39790e3eed7bfcab9d4f77ec3625f33a58ce</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">3df19ff7a6f0ccc7113133da1ea3e02d9337df33</param></service></servicedata>
\ 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.000000000 +0100
+++ new/lollypop-0.9.910/data/org.gnome.Lollypop.appdata.xml.in 2019-01-08 
18:02:53.000000000 +0100
@@ -27,10 +27,9 @@
     </ul>
   </description>
   <releases>
-    <release version="0.9.909" date="2019-01-03">
+    <release version="0.9.910" date="2019-01-08">
       <description>
-        <ul>Enhanced Drag and Drop</ul>
-        <ul>Bug Fixes</ul>
+        <ul>Fix an issue with adaptive mode</ul>
       </description>
     </release>
   </releases>
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.py    2019-01-03 
15:06:00.000000000 +0100
+++ new/lollypop-0.9.910/lollypop/container_lists.py    2019-01-08 
18:02:53.000000000 +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 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)
 
     def __on_list_one_populated(self, selection_list):
         """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.909/meson.build 
new/lollypop-0.9.910/meson.build
--- old/lollypop-0.9.909/meson.build    2019-01-03 15:06:00.000000000 +0100
+++ new/lollypop-0.9.910/meson.build    2019-01-08 18:02:53.000000000 +0100
@@ -1,5 +1,5 @@
 project('lollypop',
-  version: '0.9.909',
+  version: '0.9.910',
   meson_version: '>= 0.40.0'
 )
 i18n = import('i18n')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.909/subprojects/po/ar.po 
new/lollypop-0.9.910/subprojects/po/ar.po
--- old/lollypop-0.9.909/subprojects/po/ar.po   2019-01-03 15:06:00.000000000 
+0100
+++ new/lollypop-0.9.910/subprojects/po/ar.po   2019-01-08 18:02:53.000000000 
+0100
@@ -8,7 +8,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-26 23:31+0100\n"
-"PO-Revision-Date: 2018-12-10 13:08+0000\n"
+"PO-Revision-Date: 2019-01-03 19:06+0000\n"
 "Last-Translator: mohammadA <mohammadabdulha...@gmail.com>\n"
 "Language-Team: Arabic <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "ar/>\n"
@@ -187,7 +187,6 @@
 msgstr "استخدم سمة جتك الداكنة"
 
 #: ../data/org.gnome.Lollypop.gschema.xml:183
-#, fuzzy
 msgid "Disable use of client side window decorations (headerbar)"
 msgstr "عطِّل زخارف نافذة العميل (شريط العنوان)"
 
@@ -410,11 +409,11 @@
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:33
 msgid "New smart playlists"
-msgstr ""
+msgstr "قوائم تشغيل جديدة وذكية"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:34
 msgid "Faster album loading"
-msgstr ""
+msgstr "تحميل أسرع للألبوم"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:35
 msgid "Faster track loading"
@@ -422,15 +421,15 @@
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:36
 msgid "Better sync to device"
-msgstr ""
+msgstr "مزامنة أفضل للأجهزة"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:37
 msgid "Restore playback position on start"
-msgstr ""
+msgstr "استعادة موضع عند البدء"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:38
 msgid "Better adaptive mode: radio support, toolbar buttons, search, ..."
-msgstr ""
+msgstr "وضع متكيف أفضل: دعم أزرار الراديو، أزرار شريط الأدوات، البحث،  ..."
 
 #: ../data/org.gnome.Lollypop.desktop.in:4
 msgid "Music Player"
@@ -575,7 +574,7 @@
 
 #: ../data/LastfmPopover.ui:46
 msgid "No results"
-msgstr ""
+msgstr "لا نتائج"
 
 #: ../data/LyricsView.ui:75
 msgid "Translate"
@@ -617,7 +616,7 @@
 
 #: ../data/PlaylistView.ui:197 ../data/ToolbarEnd.ui:13
 msgid "Configure"
-msgstr ""
+msgstr "اضبط"
 
 #: ../data/QueuePopover.ui:37
 msgid "Clear queue"
@@ -1421,11 +1420,11 @@
 
 #: ../lollypop/view_lyrics.py:130
 msgid "You need to install python3-textblob module"
-msgstr ""
+msgstr "تحتاج إلى تثبيت الوحدة python3-textblob"
 
 #: ../lollypop/view_lyrics.py:135
 msgid "Can't translate this lyrics"
-msgstr ""
+msgstr "تعذرت ترجمة هذه الكلمات"
 
 #: ../lollypop/view_lyrics.py:260
 msgid "No lyrics found "
@@ -1519,7 +1518,7 @@
 
 #: ../lollypop/widgets_playlist_edit.py:115
 msgid "Remove ?"
-msgstr ""
+msgstr "إزالة ؟"
 
 #: ../lollypop/widgets_playlist_rounded.py:174
 msgid "Remove"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.909/subprojects/po/de.po 
new/lollypop-0.9.910/subprojects/po/de.po
--- old/lollypop-0.9.909/subprojects/po/de.po   2019-01-03 15:06:00.000000000 
+0100
+++ new/lollypop-0.9.910/subprojects/po/de.po   2019-01-08 18:02:53.000000000 
+0100
@@ -20,7 +20,7 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-26 23:31+0100\n"
-"PO-Revision-Date: 2018-12-26 22:29+0000\n"
+"PO-Revision-Date: 2019-01-08 13:06+0000\n"
 "Last-Translator: Vincent Bermel <willovi...@openmailbox.org>\n"
 "Language-Team: German <https://hosted.weblate.org/projects/gnumdk/lollypop/";
 "de/>\n"
@@ -1009,7 +1009,7 @@
 
 #: ../data/SmartPlaylistView.ui:179 ../lollypop/view_playlist_smart.py:216
 msgid "Smart playlist"
-msgstr ""
+msgstr "Smarte Wiedergabeliste"
 
 #: ../data/SmartPlaylistView.ui:202
 msgid "all"
@@ -1535,7 +1535,7 @@
 
 #: ../lollypop/widgets_playlist_edit.py:115
 msgid "Remove ?"
-msgstr ""
+msgstr "Entfernen?"
 
 #: ../lollypop/widgets_playlist_rounded.py:174
 msgid "Remove"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lollypop-0.9.909/subprojects/po/eo.po 
new/lollypop-0.9.910/subprojects/po/eo.po
--- old/lollypop-0.9.909/subprojects/po/eo.po   2019-01-03 15:06:00.000000000 
+0100
+++ new/lollypop-0.9.910/subprojects/po/eo.po   2019-01-08 18:02:53.000000000 
+0100
@@ -11,7 +11,7 @@
 "Project-Id-Version: lollypop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-26 23:31+0100\n"
-"PO-Revision-Date: 2018-12-19 21:08+0000\n"
+"PO-Revision-Date: 2019-01-08 13:06+0000\n"
 "Last-Translator: Sebastien Zurfluh <sebastien.zurf...@gmail.com>\n"
 "Language-Team: Esperanto <https://hosted.weblate.org/projects/gnumdk/";
 "lollypop/eo/>\n"
@@ -366,8 +366,8 @@
 #: ../data/org.gnome.Lollypop.appdata.xml.in:16
 msgid "Artist bio, lyrics: Get artist and track information from the web"
 msgstr ""
-"Biografio de la artisto, tekstoj: Akiru artiston kaj informon pri la trako "
-"el la reto"
+"Biografio de la artisto, kantparoloj: Akiru artiston kaj informon pri la "
+"trako el la reto"
 
 #: ../data/org.gnome.Lollypop.appdata.xml.in:17
 msgid "Party mode: No awkward silences, let Lollypop choose music for you"
@@ -501,7 +501,7 @@
 
 #: ../data/ArtistInformation.ui:156 ../lollypop/pop_menu.py:263
 msgid "Show lyrics"
-msgstr "Montri tekstojn"
+msgstr "Montri tekston"
 
 #: ../data/ArtistView.ui:65
 msgid "Photo"
@@ -887,7 +887,7 @@
 #: ../data/Shortcuts.ui:73
 msgctxt "shortcut window"
 msgid "Show lyrics"
-msgstr "Montri tekstojn"
+msgstr "Montri tekston"
 
 #: ../data/Shortcuts.ui:80
 msgctxt "shortcut window"
@@ -1221,7 +1221,7 @@
 
 #: ../lollypop/pop_menu.py:264
 msgid "Lyrics"
-msgstr "Tekstoj"
+msgstr "Kantparoloj"
 
 #: ../lollypop/pop_menu.py:267 ../lollypop/pop_menu.py:352
 #: ../lollypop/pop_menu.py:375 ../lollypop/shown.py:42
@@ -1431,7 +1431,7 @@
 
 #: ../lollypop/view_lyrics.py:260
 msgid "No lyrics found "
-msgstr "Neniuj tekstoj trovitaj "
+msgstr "Maltrovas tekston "
 
 #: ../lollypop/view_playlists_manager.py:36
 msgid "New playlist"


Reply via email to