Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2022-02-18 23:02:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-shell.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-shell"

Fri Feb 18 23:02:43 2022 rev:219 rq:955686 version:41.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2022-02-17 
00:31:18.969425175 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new.1958/gnome-shell.changes        
2022-02-18 23:03:00.725412518 +0100
@@ -1,0 +2,6 @@
+Thu Feb 17 02:01:38 UTC 2022 - Xiaoguang Wang <xiaoguang.w...@suse.com>
+
+- Add gnome-shell-fix-NMDevice-get-path.patch: Fix the NMDevice
+  get_path is null(bsc#1176553 glgo#GNOME/gnome-shell#4565).
+
+-------------------------------------------------------------------

New:
----
  gnome-shell-fix-NMDevice-get-path.patch

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

Other differences:
------------------
++++++ gnome-shell.spec ++++++
--- /var/tmp/diff_new_pack.G1M8Un/_old  2022-02-18 23:03:01.729412440 +0100
+++ /var/tmp/diff_new_pack.G1M8Un/_new  2022-02-18 23:03:01.733412440 +0100
@@ -51,6 +51,8 @@
 Patch8:         gnome-shell-exit-crash-workaround.patch
 # PATCH-FIX-UPSTREAM 2078.patch -- Fix build with meson 0.61 and newer
 Patch9:         
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2078.patch
+# PATCH-FIX-UPSTREAM gnome-shell-fix-NMDevice-get-path.patch bsc#1176553 
glgo#GNOME/gnome-shell#4565 xw...@suse.com -- Fix NMDevice get path fail
+Patch10:        gnome-shell-fix-NMDevice-get-path.patch
 
 ## NOTE: Keep SLE-only patches at bottom (starting on 1000).
 # PATCH-FEATURE-SLE gnome-shell-gdm-login-applet.patch fate#314545 
dli...@suse.com -- Add an applet on login UI to display suse icon, product 
name, hostname.
@@ -190,6 +192,7 @@
 %patch7 -p1
 %patch8 -p1
 %patch9 -p1
+%patch10 -p1
 
 %if 0%{?sle_version}
 %patch1001 -p1

++++++ gnome-shell-fix-NMDevice-get-path.patch ++++++
Index: gnome-shell-41.4/js/ui/status/network.js
===================================================================
--- gnome-shell-41.4.orig/js/ui/status/network.js
+++ gnome-shell-41.4/js/ui/status/network.js
@@ -1001,7 +1001,7 @@ class NMWirelessDialog extends ModalDial
                 // 802.1x-enabled APs require further configuration, so they're
                 // handled in gnome-control-center
                 launchSettingsPanel('wifi', 'connect-8021x-wifi',
-                    this._device.get_path(), accessPoints[0].get_path());
+                    NM.Object.prototype.get_path.call(this._device), 
accessPoints[0].get_path());
             } else {
                 let connection = new NM.SimpleConnection();
                 if (this._privateConnections) {

Reply via email to