Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cinnamon for openSUSE:Factory 
checked in at 2021-01-21 21:57:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cinnamon (Old)
 and      /work/SRC/openSUSE:Factory/.cinnamon.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cinnamon"

Thu Jan 21 21:57:16 2021 rev:47 rq:865361 version:4.8.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/cinnamon/cinnamon.changes        2021-01-11 
17:15:10.544512092 +0100
+++ /work/SRC/openSUSE:Factory/.cinnamon.new.28504/cinnamon.changes     
2021-01-21 21:57:17.845855632 +0100
@@ -1,0 +2,10 @@
+Thu Jan 14 10:17:58 UTC 2021 - andy great <[email protected]>
+
+- Update to version 4.8.6.
+  * Remove executable from xapp-status applet files (#9820)
+  * messageTray.js: Remove call to nonexistant method.
+  * spices: Fix URL timestamp not being used
+  * cinnamon-file-dialog: Import GTK properly (#9843)
+
+
+-------------------------------------------------------------------

Old:
----
  cinnamon-4.8.5.tar.gz

New:
----
  cinnamon-4.8.6.tar.gz

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

Other differences:
------------------
++++++ cinnamon.spec ++++++
--- /var/tmp/diff_new_pack.CgNbV2/_old  2021-01-21 21:57:18.437855833 +0100
+++ /var/tmp/diff_new_pack.CgNbV2/_new  2021-01-21 21:57:18.441855835 +0100
@@ -18,7 +18,7 @@
 
 %define _version 4.0.0
 Name:           cinnamon
-Version:        4.8.5
+Version:        4.8.6
 Release:        0
 Summary:        GNU/Linux Desktop featuring a traditional layout
 License:        GPL-2.0-or-later AND LGPL-2.1-only

++++++ cinnamon-4.8.5.tar.gz -> cinnamon-4.8.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-4.8.5/debian/changelog 
new/cinnamon-4.8.6/debian/changelog
--- old/cinnamon-4.8.5/debian/changelog 2021-01-02 19:23:49.000000000 +0100
+++ new/cinnamon-4.8.6/debian/changelog 2021-01-13 15:22:39.000000000 +0100
@@ -1,3 +1,19 @@
+cinnamon (4.8.6) ulyssa; urgency=medium
+
+  [ Fabio Fantoni ]
+  * Remove executable from xapp-status applet files (#9820)
+
+  [ Michael Webster ]
+  * messageTray.js: Remove call to nonexistant method.
+
+  [ Clement Lefebvre ]
+  * spices: Fix URL timestamp not being used
+
+  [ Joshua Peisach ]
+  * cinnamon-file-dialog: Import GTK properly (#9843)
+
+ -- Clement Lefebvre <[email protected]>  Wed, 13 Jan 2021 14:22:09 +0000
+
 cinnamon (4.8.5) ulyssa; urgency=medium
 
   [ icarter09 ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-4.8.5/files/usr/bin/cinnamon-file-dialog 
new/cinnamon-4.8.6/files/usr/bin/cinnamon-file-dialog
--- old/cinnamon-4.8.5/files/usr/bin/cinnamon-file-dialog       2021-01-02 
19:23:49.000000000 +0100
+++ new/cinnamon-4.8.6/files/usr/bin/cinnamon-file-dialog       2021-01-13 
15:22:39.000000000 +0100
@@ -11,6 +11,8 @@
 from setproctitle import setproctitle
 setproctitle("cinnamon-file-dialog")
 
+import gi
+gi.require_version('Gtk', '3.0')
 from gi.repository import Gtk
 
 cancelButton = (Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cinnamon-4.8.5/files/usr/share/cinnamon/cinnamon-settings/bin/Spices.py 
new/cinnamon-4.8.6/files/usr/share/cinnamon/cinnamon-settings/bin/Spices.py
--- old/cinnamon-4.8.5/files/usr/share/cinnamon/cinnamon-settings/bin/Spices.py 
2021-01-02 19:23:49.000000000 +0100
+++ new/cinnamon-4.8.6/files/usr/share/cinnamon/cinnamon-settings/bin/Spices.py 
2021-01-13 15:22:39.000000000 +0100
@@ -10,7 +10,6 @@
     import html
     import subprocess
     import threading
-    import time
     import dbus
     from PIL import Image
     import datetime
@@ -393,7 +392,8 @@
             else:
                 connection = HTTPSConnection(host, timeout=15)
             headers = { "Accept-Encoding": "identity", "Host": host, 
"User-Agent": "Python/3" }
-            connection.request("GET", parsed_url.path, headers=headers)
+            full_path = "%s?%s" % (parsed_url.path, parsed_url.query)
+            connection.request("GET", full_path, headers=headers)
             urlobj = connection.getresponse()
             assert urlobj.getcode() == 200
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-4.8.5/js/ui/messageTray.js 
new/cinnamon-4.8.6/js/ui/messageTray.js
--- old/cinnamon-4.8.5/js/ui/messageTray.js     2021-01-02 19:23:49.000000000 
+0100
+++ new/cinnamon-4.8.6/js/ui/messageTray.js     2021-01-13 15:22:39.000000000 
+0100
@@ -1011,7 +1011,6 @@
     _showNotification: function() {
         this._notification = this._notificationQueue.shift();
         if (this._notification.actor._parent_container) {
-            this._notification.collapseCompleted();
             
this._notification.actor._parent_container.remove_actor(this._notification.actor);
         }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-4.8.5/meson.build 
new/cinnamon-4.8.6/meson.build
--- old/cinnamon-4.8.5/meson.build      2021-01-02 19:23:49.000000000 +0100
+++ new/cinnamon-4.8.6/meson.build      2021-01-13 15:22:39.000000000 +0100
@@ -1,4 +1,4 @@
-project('Cinnamon', 'c', version : '4.8.5', meson_version : '>=0.46.0')
+project('Cinnamon', 'c', version : '4.8.6', meson_version : '>=0.46.0')
 
 gnome = import('gnome')
 i18n = import('i18n')

Reply via email to