Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package azote for openSUSE:Factory checked 
in at 2021-11-03 17:26:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azote (Old)
 and      /work/SRC/openSUSE:Factory/.azote.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "azote"

Wed Nov  3 17:26:20 2021 rev:11 rq:928962 version:1.9.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/azote/azote.changes      2021-04-01 
14:18:18.124072529 +0200
+++ /work/SRC/openSUSE:Factory/.azote.new.1890/azote.changes    2021-11-03 
17:27:16.889370550 +0100
@@ -1,0 +2,8 @@
+Wed Nov  3 08:28:42 UTC 2021 - Michael Vetter <[email protected]>
+
+- Update to 1.9.2:
+  * escape some special characters #155
+  * fixed improper environment detection on dwl, and possibly some
+    other wlroots-based compositors
+
+-------------------------------------------------------------------

Old:
----
  azote-1.9.1.tar.gz

New:
----
  azote-1.9.2.tar.gz

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

Other differences:
------------------
++++++ azote.spec ++++++
--- /var/tmp/diff_new_pack.ET2lNJ/_old  2021-11-03 17:27:17.261370753 +0100
+++ /var/tmp/diff_new_pack.ET2lNJ/_new  2021-11-03 17:27:17.261370753 +0100
@@ -18,7 +18,7 @@
 
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 Name:           azote
-Version:        1.9.1
+Version:        1.9.2
 Release:        0
 Summary:        Wallpaper manager for Sway, i3 and some other WMs
 License:        GPL-3.0-only

++++++ azote-1.9.1.tar.gz -> azote-1.9.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azote-1.9.1/.gitignore new/azote-1.9.2/.gitignore
--- old/azote-1.9.1/.gitignore  2021-03-28 03:08:24.000000000 +0200
+++ new/azote-1.9.2/.gitignore  2021-10-29 04:00:56.000000000 +0200
@@ -1,2 +1,3 @@
 /.idea
+.vscode
 /venv
Binary files old/azote-1.9.1/azote/images/azote-wallpaper.jpg and 
new/azote-1.9.2/azote/images/azote-wallpaper.jpg differ
Binary files old/azote-1.9.1/azote/images/azote-wallpaper1.jpg and 
new/azote-1.9.2/azote/images/azote-wallpaper1.jpg differ
Binary files old/azote-1.9.1/azote/images/azote-wallpaper2.jpg and 
new/azote-1.9.2/azote/images/azote-wallpaper2.jpg differ
Binary files old/azote-1.9.1/azote/images/nwg-shell-sgs.png and 
new/azote-1.9.2/azote/images/nwg-shell-sgs.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azote-1.9.1/azote/main.py 
new/azote-1.9.2/azote/main.py
--- old/azote-1.9.1/azote/main.py       2021-03-28 03:08:24.000000000 +0200
+++ new/azote-1.9.2/azote/main.py       2021-10-29 04:00:56.000000000 +0200
@@ -462,8 +462,11 @@
                 else:
                     display_name = box.display_name
 
+                # Escape some special characters which would mess up the script
+                wallpaper_path=box.wallpaper_path.replace('\\', 
'\\\\').replace("$", "\$").replace("`", "\\`").replace('"', '\\"')
+
                 batch_content.append(
-                    "swaybg -o '{}' -i '{}' -m {} &".format(display_name, 
box.wallpaper_path, box.mode))
+                    "swaybg -o '{}' -i \"{}\" -m {} &".format(display_name, 
wallpaper_path, box.mode))
 
                 # build the json file content
                 if 
box.wallpaper_path.startswith("{}/backgrounds-sway/flipped-".format(common.data_home)):
@@ -866,7 +869,7 @@
         displays_box.set_orientation(Gtk.Orientation.HORIZONTAL)
 
         # Restore saved wallpapers if any
-        f_name = "swaybg.json" if common.sway else "feh.json"
+        f_name = "swaybg.json" if common.sway or common.env['wayland'] else 
"feh.json"
         f_path = os.path.join(common.data_home, f_name)
         
         if os.path.isfile(f_path):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azote-1.9.1/azote/tools.py 
new/azote-1.9.2/azote/tools.py
--- old/azote-1.9.1/azote/tools.py      2021-03-28 03:08:24.000000000 +0200
+++ new/azote-1.9.2/azote/tools.py      2021-10-29 04:00:56.000000000 +0200
@@ -14,7 +14,7 @@
 import glob
 import hashlib
 import logging
-from PIL import Image, ImageOps
+from PIL import Image
 import common
 import pickle
 import subprocess
@@ -27,7 +27,7 @@
 import gi
 
 gi.require_version('Gtk', '3.0')
-from gi.repository import Gtk, GdkPixbuf, Gdk, GLib
+from gi.repository import Gtk, GdkPixbuf, GLib
 
 
 def log(message, level=None):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azote-1.9.1/setup.py new/azote-1.9.2/setup.py
--- old/azote-1.9.1/setup.py    2021-03-28 03:08:24.000000000 +0200
+++ new/azote-1.9.2/setup.py    2021-10-29 04:00:56.000000000 +0200
@@ -8,7 +8,7 @@
 
 setup(
     name='azote',
-    version='1.9.1',
+    version='1.9.2',
     description='Wallpaper manager for Sway, i3 and some other WMs',
     packages=['azote'],
     include_package_data=True,

Reply via email to