Hello community,

here is the log from the commit of package gnome-shell for 
openSUSE:12.1:Update:Test checked in at 2012-01-03 17:43:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.1:Update:Test/gnome-shell (Old)
 and      /work/SRC/openSUSE:12.1:Update:Test/.gnome-shell.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-shell", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:12.1:Update:Test/gnome-shell/gnome-shell.changes 
2011-11-24 20:14:53.000000000 +0100
+++ /work/SRC/openSUSE:12.1:Update:Test/.gnome-shell.new/gnome-shell.changes    
2012-01-03 17:43:46.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Dec 23 02:41:02 UTC 2011 - [email protected]
+
+- Add gnome-shell-network-private-connections-by-default.patch to
+  create the private connections by default [bnc#731812]
+
+-------------------------------------------------------------------

New:
----
  gnome-shell-network-private-connections-by-default.patch

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

Other differences:
------------------
++++++ gnome-shell.spec ++++++
--- /var/tmp/diff_new_pack.ooXEqv/_old  2012-01-03 17:43:46.000000000 +0100
+++ /var/tmp/diff_new_pack.ooXEqv/_new  2012-01-03 17:43:46.000000000 +0100
@@ -31,6 +31,8 @@
 Patch1:         gnome-shell-fix-deprecated-call.patch
 # PATCH-FIX-UPSTREAM gnome-shell-fix-extension-tool-error-after-creating.patch 
bgo#661623, bnc#730106 [email protected] -- Fix error after creating 
extension and use gvfs-open (not xdg-open) as gnome-open is deprecated.
 Patch2:         gnome-shell-fix-extension-tool-error-after-creating.patch
+# PATCH-FIX-OPENSUSE 
gnome-shell-network-create-private-connections-by-default.patch bnc#731812 
[email protected] -- Create the private connections by default
+Patch3:         gnome-shell-network-private-connections-by-default.patch
 BuildRequires:  intltool
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
@@ -117,6 +119,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 translation-update-upstream
 
 %build

++++++ gnome-shell-network-private-connections-by-default.patch ++++++
based on the patch from https://bugzilla.gnome.org/show_bug.cgi?id=646187#c5
---
 js/ui/status/network.js |   18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -710,12 +710,14 @@
         let connection = new NetworkManager.Connection();
         connection._uuid = NetworkManager.utils_uuid_generate();
         connection.add_setting(new NetworkManager.SettingWired());
-        connection.add_setting(new NetworkManager.SettingConnection({
+        let connectionSetting = new NetworkManager.SettingConnection({
             uuid: connection._uuid,
             id: this._autoConnectionName,
             type: NetworkManager.SETTING_WIRED_SETTING_NAME,
             autoconnect: true
-        }));
+        });
+        connectionSetting.add_permission('user', GLib.get_user_name(), null);
+        connection.add_setting(connectionSetting);
         return connection;
     }
 };
@@ -863,12 +865,14 @@
         let connection = new NetworkManager.Connection;
         connection._uuid = NetworkManager.utils_uuid_generate();
         connection.add_setting(new NetworkManager.SettingBluetooth);
-        connection.add_setting(new NetworkManager.SettingConnection({
+        let connectionSetting = new NetworkManager.SettingConnection({
             uuid: connection._uuid,
             id: this._autoConnectionName,
             type: NetworkManager.SETTING_BLUETOOTH_SETTING_NAME,
             autoconnect: false
-        }));
+        });
+        connectionSetting.add_permission('user', GLib.get_user_name(), null);
+        connection.add_setting(connectionSetting);
         return connection;
     },
 
@@ -1473,12 +1477,14 @@
 
         let connection = new NetworkManager.Connection();
         connection.add_setting(new NetworkManager.SettingWireless());
-        connection.add_setting(new NetworkManager.SettingConnection({
+        let connectionSetting = new NetworkManager.SettingConnection({
             id: name,
             autoconnect: true, // NetworkManager will know to ignore this if 
appropriate
             uuid: NetworkManager.utils_uuid_generate(),
             type: NetworkManager.SETTING_WIRELESS_SETTING_NAME
-        }));
+        });
+        connectionSetting.add_permission('user', GLib.get_user_name(), null);
+        connection.add_setting(connectionSetting);
         return connection;
     },
 
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to