Hello community, here is the log from the commit of package gnome-shell for openSUSE:Factory checked in at 2020-09-14 12:11:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old) and /work/SRC/openSUSE:Factory/.gnome-shell.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-shell" Mon Sep 14 12:11:56 2020 rev:186 rq:833697 version:3.36.6 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes 2020-08-15 21:17:30.711525104 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-shell.new.4249/gnome-shell.changes 2020-09-14 12:14:14.168296488 +0200 @@ -1,0 +2,16 @@ +Thu Sep 10 01:58:30 UTC 2020 - Xiaoguang Wang <xiaoguang.w...@suse.com> + +- Move branding image file to branding-SLE package + (jsc#SLE-11720 bsc#1176304). + + Update gnome-shell-1007468-lock-screen-SUSE-logo-missing.patch + + Remove sle-background.png + +------------------------------------------------------------------- +Tue Sep 8 12:08:30 UTC 2020 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 3.36.6: + + Fix lock screen on systems without GLSL shader support. + + Fix app icon scaling regression on HiDPI displays. + + Updated translations. + +------------------------------------------------------------------- Old: ---- gnome-shell-3.36.5.obscpio sle-background.png New: ---- gnome-shell-3.36.6.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-shell.spec ++++++ --- /var/tmp/diff_new_pack.5lrraq/_old 2020-09-14 12:14:18.668301085 +0200 +++ /var/tmp/diff_new_pack.5lrraq/_new 2020-09-14 12:14:18.672301089 +0200 @@ -19,7 +19,7 @@ %global __requires_exclude typelib\\(Meta\\) Name: gnome-shell -Version: 3.36.5 +Version: 3.36.6 Release: 0 Summary: GNOME Shell # shew extension is LGPL 2.1; gnome-shell-extension-tool is GPL-3.0-or-later @@ -29,8 +29,6 @@ Source: %{name}-%{version}.tar.xz # SOURCE-FEATURE-SLE aboutMenu fate#314545 dli...@suse.com -- Add an applet on login UI to display suse icon, product name, hostname. Source1: aboutMenu.js -# SOURCE-FEATURE-SLE sle-background bsc#1007468 xw...@suse.com -- Add SUSE logo on lock screen for GNOME theme -Source2: sle-background.png # PATCH-FIX-UPSTREAM gnome-shell-private-connection.patch bnc#751211 bgo#646187 dims...@opensuse.org -- create private connections if the user is not authorized Patch1: gnome-shell-private-connection.patch @@ -197,7 +195,6 @@ %if 0%{?sle_version} cp %{SOURCE1} js/ui/ -cp %{SOURCE2} data/theme/ %endif %build ++++++ _service ++++++ --- /var/tmp/diff_new_pack.5lrraq/_old 2020-09-14 12:14:18.700301118 +0200 +++ /var/tmp/diff_new_pack.5lrraq/_new 2020-09-14 12:14:18.700301118 +0200 @@ -2,7 +2,7 @@ <service name="obs_scm" mode="disabled" > <param name="url">https://gitlab.gnome.org/GNOME/gnome-shell.git</param> <param name="scm">git</param> - <param name="revision">3.36.5</param> + <param name="revision">3.36.6</param> <param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param> <param name="versionrewrite-pattern">(.*)\+0</param> <param name="versionrewrite-replacement">\1</param> ++++++ gnome-shell-1007468-lock-screen-SUSE-logo-missing.patch ++++++ --- /var/tmp/diff_new_pack.5lrraq/_old 2020-09-14 12:14:18.724301142 +0200 +++ /var/tmp/diff_new_pack.5lrraq/_new 2020-09-14 12:14:18.728301146 +0200 @@ -1,37 +1,15 @@ -Index: gnome-shell-3.34.1+7/data/gnome-shell-theme.gresource.xml +Index: gnome-shell-3.34.5/js/ui/unlockDialog.js =================================================================== ---- gnome-shell-3.34.1+7.orig/data/gnome-shell-theme.gresource.xml -+++ gnome-shell-3.34.1+7/data/gnome-shell-theme.gresource.xml -@@ -31,5 +31,6 @@ - <file>toggle-on.svg</file> - <file>toggle-on-dark.svg</file> - <file>toggle-on-hc.svg</file> -+ <file>sle-background.png</file> - </gresource> - </gresources> -Index: gnome-shell-3.34.1+7/data/theme/gnome-shell-sass/_common.scss -=================================================================== ---- gnome-shell-3.34.1+7.orig/data/theme/gnome-shell-sass/_common.scss -+++ gnome-shell-3.34.1+7/data/theme/gnome-shell-sass/_common.scss -@@ -1919,6 +1919,9 @@ StScrollBar { - max-width: 23em; - } - -+.login-dialog-sle { -+ background: #2e3436 url(sle-background.png); } -+ - .login-dialog { - //reset - border: none; -Index: gnome-shell-3.34.1+7/js/ui/unlockDialog.js -=================================================================== ---- gnome-shell-3.34.1+7.orig/js/ui/unlockDialog.js -+++ gnome-shell-3.34.1+7/js/ui/unlockDialog.js -@@ -23,6 +23,7 @@ var UnlockDialog = GObject.registerClass +--- gnome-shell-3.34.5.orig/js/ui/unlockDialog.js ++++ gnome-shell-3.34.5/js/ui/unlockDialog.js +@@ -23,6 +23,10 @@ var UnlockDialog = GObject.registerClass visible: false, }); -+ this.add_style_class_name('login-dialog-sle'); ++ let path = '/usr/share/gnome-shell/theme/SLE-background.png'; ++ if (GLib.file_test(path, GLib.FileTest.EXISTS)) ++ this.style = 'background: url(' + path + ')'; ++ this.add_constraint(new Layout.MonitorConstraint({ primary: true })); parentActor.add_child(this); ++++++ gnome-shell-3.36.5.obscpio -> gnome-shell-3.36.6.obscpio ++++++ /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell-3.36.5.obscpio /work/SRC/openSUSE:Factory/.gnome-shell.new.4249/gnome-shell-3.36.6.obscpio differ: char 49, line 1 ++++++ gnome-shell.obsinfo ++++++ --- /var/tmp/diff_new_pack.5lrraq/_old 2020-09-14 12:14:18.780301199 +0200 +++ /var/tmp/diff_new_pack.5lrraq/_new 2020-09-14 12:14:18.784301203 +0200 @@ -1,5 +1,5 @@ name: gnome-shell -version: 3.36.5 -mtime: 1597177577 -commit: 5d1c241f53863a818f8631106a25c3d9942efbe5 +version: 3.36.6 +mtime: 1599510584 +commit: 682d4588bc6b2c1826013f98c52cc0b5afccea29