Accepting request 203561 from home:dimstar:branches:GNOME:Factory

Update to 3.10.1 - part of GNOME stable stack.

OBS-URL: https://build.opensuse.org/request/show/203561
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=186
This commit is contained in:
Richard Brown 2013-10-17 10:31:42 +00:00 committed by Git OBS Bridge
parent de71adf3e5
commit d217eb8a57
5 changed files with 67 additions and 24 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb98ca6274e82e446834221b2dfd9af0e12e5ebce651319435524fd6cd5f4ec9
size 1518624

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:52f43dcd6df9dd00e5fbcd16a0d7551801cbc77f8777f047e548e7803bb90e02
size 1520568

View File

@ -1,4 +1,4 @@
From 16ef77fd194f2f10ae81f273a5dea2a3c06904b6 Mon Sep 17 00:00:00 2001
From f9a23ba5908fb93d25ef702510ea182c220db8aa Mon Sep 17 00:00:00 2001
From: Giovanni Campagna <gcampagna@src.gnome.org>
Date: Thu, 31 Mar 2011 15:56:13 +0200
Subject: [PATCH] NetworkMenu: create private connections if the user is not
@ -11,11 +11,11 @@ if the system administrator decides so.
https://bugzilla.gnome.org/show_bug.cgi?id=646187
---
js/ui/status/network.js | 39 +++++++++++++++++++++++++++++++++++----
1 file changed, 35 insertions(+), 4 deletions(-)
js/ui/status/network.js | 38 +++++++++++++++++++++++++++++++++-----
1 file changed, 33 insertions(+), 5 deletions(-)
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index b7e6bf9..9367a26 100644
index 0ff2037..7deb7f4 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -7,6 +7,7 @@ const Gtk = imports.gi.Gtk;
@ -26,19 +26,21 @@ index b7e6bf9..9367a26 100644
const NMGtk = imports.gi.NMGtk;
const Signals = imports.signals;
const St = imports.gi.St;
@@ -477,6 +478,11 @@ const NMDeviceBluetooth = new Lang.Class({
@@ -506,10 +507,12 @@ const NMDeviceBluetooth = new Lang.Class({
Extends: NMConnectionDevice,
category: NMConnectionCategory.WWAN,
+ _init: function(client, device, settings, privateConnections) {
+ this._privateConnections = privateConnections;
+ this.parent(client, device);
+ },
- _init: function(client, device, settings) {
+
+ _init: function(client, device, settings, privateConnections) {
this.parent(client, device, settings);
this.item.menu.addMenuItem(createSettingsAction(_("Mobile Broadband Settings"), device));
+ this._privateConnections = privateConnections;
},
_autoConnect: function() {
// FIXME: DUN devices are configured like modems, so
// We need to spawn the mobile wizard
@@ -485,6 +491,11 @@ const NMDeviceBluetooth = new Lang.Class({
@@ -520,6 +523,11 @@ const NMDeviceBluetooth = new Lang.Class({
// that this phone supports PAN
let connection = new NetworkManager.Connection();
@ -50,7 +52,7 @@ index b7e6bf9..9367a26 100644
this._client.add_and_activate_connection(connection, this._device, null, null);
return true;
},
@@ -571,11 +582,12 @@ const NMWirelessDialog = new Lang.Class({
@@ -624,11 +632,12 @@ const NMWirelessDialog = new Lang.Class({
Name: 'NMWirelessDialog',
Extends: ModalDialog.ModalDialog,
@ -64,7 +66,7 @@ index b7e6bf9..9367a26 100644
this._networks = [];
this._buildLayout();
@@ -713,6 +725,11 @@ const NMWirelessDialog = new Lang.Class({
@@ -766,6 +775,11 @@ const NMWirelessDialog = new Lang.Class({
this._device.get_path(), accessPoints[0].dbus_path]);
} else {
let connection = new NetworkManager.Connection();
@ -76,7 +78,7 @@ index b7e6bf9..9367a26 100644
this._client.add_and_activate_connection(connection, this._device, accessPoints[0].dbus_path, null)
}
}
@@ -938,10 +955,11 @@ const NMDeviceWireless = new Lang.Class({
@@ -994,10 +1008,11 @@ const NMDeviceWireless = new Lang.Class({
Name: 'NMDeviceWireless',
category: NMConnectionCategory.WIRELESS,
@ -89,7 +91,7 @@ index b7e6bf9..9367a26 100644
this._description = '';
@@ -1000,7 +1018,7 @@ const NMDeviceWireless = new Lang.Class({
@@ -1065,7 +1080,7 @@ const NMDeviceWireless = new Lang.Class({
},
_showDialog: function() {
@ -98,7 +100,7 @@ index b7e6bf9..9367a26 100644
this._dialog.connect('closed', Lang.bind(this, this._dialogClosed));
this._dialog.open();
},
@@ -1251,6 +1269,19 @@ const NMApplet = new Lang.Class({
@@ -1326,6 +1341,19 @@ const NMApplet = new Lang.Class({
if (!this._client || !this._settings)
return;
@ -118,7 +120,7 @@ index b7e6bf9..9367a26 100644
this._activeConnections = [ ];
this._connections = [ ];
@@ -1366,7 +1397,7 @@ const NMApplet = new Lang.Class({
@@ -1441,7 +1469,7 @@ const NMApplet = new Lang.Class({
let wrapperClass = this._dtypes[device.get_device_type()];
if (wrapperClass) {

View File

@ -1,3 +1,44 @@
-------------------------------------------------------------------
Wed Oct 16 06:48:54 UTC 2013 - dimstar@opensuse.org
- Update to version 3.10.1:
+ Make sure lock screen is drawn once before switching user
(bgo#708051).
+ Fix signal strength indicators in network selector
(bgo#708442).
+ Scroll search results when focusing provider icons
(bgo#708868).
+ Add separate hover/active states to page indicators
(bgo#708852).
+ Tweak appearance of user name and avatar (bgo#702309).
+ Hide "Turn On" in network menu when disabled by hardware
(bgo#709635).
+ Cancel open keyring prompts when the screen is locked
(bgo#708910).
+ Differentiate "Not Connected" and "Off" in network menu
(bgo#709043).
+ Make network settings items point to the right device
(bgo#709246).
+ Remove animation of window preview titles (bgo#709392).
+ Add 'Notifications' switch to tray menu (bgo#707073).
+ Make dropdown arrows consistent (bgo#709564).
+ power: Use icon from primary device for status (bgo#709925).
+ Fix XDND drags to overview (bgo#708887).
+ Fix workspace switcher disappearing with too many workspaces
(bgo#694881).
+ Handle search results with 'special:' prefix specially
(bgo#707055).
+ gdm: Support pre-authenticated logins from oVirt (bgo#702162).
+ Use ARROW role for labels representing arrows (bgo#710120).
+ Make selected view in app picker persistent (bgo#710042).
+ Make network selector navigable by keyboard (bgo#710144).
+ Misc bug fixes: bgo##709034, bgo#709263, bgo#698486,
bgo#709286, bgo#709248, bgo#709543, bgo#696564, bgo#703265,
bgo#709638, bgo#709866, bgo#709998, bgo#710019, bgo#710104,
bgo#710115.
+ Updated translations.
- Rebease gnome-shell-private-connection.patch (Gary Lin).
-------------------------------------------------------------------
Wed Oct 2 03:47:39 UTC 2013 - glin@suse.com

View File

@ -17,7 +17,7 @@
Name: gnome-shell
Version: 3.10.0.1
Version: 3.10.1
Release: 0
Summary: GNOME Shell
License: GPL-2.0+
@ -39,7 +39,7 @@ BuildRequires: pkgconfig(clutter-1.0) >= 1.13.4
BuildRequires: pkgconfig(gcr-base-3) >= 3.7.5
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
BuildRequires: pkgconfig(gio-2.0) >= 2.37.0
BuildRequires: pkgconfig(gjs-1.0) >= 1.33.2
BuildRequires: pkgconfig(gjs-1.0) >= 1.38.1
BuildRequires: pkgconfig(gnome-bluetooth-1.0) >= 3.9.0
BuildRequires: pkgconfig(gnome-desktop-3.0) >= 3.7.90
BuildRequires: pkgconfig(gnome-keybindings)
@ -54,7 +54,7 @@ BuildRequires: pkgconfig(libcanberra-gtk)
BuildRequires: pkgconfig(libcroco-0.6) >= 0.6.8
BuildRequires: pkgconfig(libedataserver-1.2) >= 3.5.3
BuildRequires: pkgconfig(libgnome-menu-3.0) >= 3.5.3
BuildRequires: pkgconfig(libmutter) >= 3.10.0
BuildRequires: pkgconfig(libmutter) >= 3.10.1
BuildRequires: pkgconfig(libnm-glib)
BuildRequires: pkgconfig(libnm-gtk) >= 0.9.8
BuildRequires: pkgconfig(libnm-util) >= 0.9.8