Accepting request 224528 from home:Zaitor:branches:GNOME:Factory

- Update to version 3.10.3:
  + Background: Chooser dialog is too wide.
  + Color:
    - Fix a crash if the user closes the window after calibrating.
    - Show the whitepoint selector.
  + Display:
    - Hide unsupported UI elements.
    - Add an 'upside-down' button.
  + Info:
    - Crash if PackageKit is not present.
    - Use gnome-software for showing the list of updates if
      installed.
  + Network:
    - Fix build with NM 0.9.8.x.
    - Can't assign IP address without gateway.
    - Can't create team connection.
  + Online Accounts: Panel is too wide.
  + Power: Wrong battery indicator when fully charged (99% instead
    of 100%).
  + Printers: Show correct time of print job.
  + Sharing:
    - Fix crash when turning off Sharing.
    - Make it possible to add new folders.
    - Not able to enable bluetooth.
  + Shell:
    - Activate application when launching a panel.
    - Overview is too wide.
  + Users:
    - Improve logged-in check when deleting users.
  + Wacom:

OBS-URL: https://build.opensuse.org/request/show/224528
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-control-center?expand=0&rev=235
This commit is contained in:
Dominique Leuenberger 2014-03-03 20:06:37 +00:00 committed by Git OBS Bridge
parent 7e7ad81559
commit 19fb293fda
5 changed files with 42 additions and 148 deletions

View File

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

View File

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

View File

@ -1,141 +0,0 @@
From b0b43d149471e3463fedaa0ba80e0c315c810ce0 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Thu, 14 Nov 2013 08:22:05 +0000
Subject: sharing: Fix Bluetooth label always being off
https://bugzilla.gnome.org/show_bug.cgi?id=712252
---
diff --git a/panels/sharing/cc-sharing-panel.c b/panels/sharing/cc-sharing-panel.c
index 586085d..a246654 100644
--- a/panels/sharing/cc-sharing-panel.c
+++ b/panels/sharing/cc-sharing-panel.c
@@ -384,6 +384,10 @@ cc_sharing_panel_setup_bluetooth_sharing_dialog (CcSharingPanel *self)
g_signal_connect_swapped (priv->bluetooth_killswitch, "state-changed",
G_CALLBACK (bluetooth_state_changed), self);
+ cc_sharing_panel_bind_switch_to_label (self,
+ WID ("save-received-files-to-downloads-switch"),
+ WID ("bluetooth-sharing-status-label"));
+
cc_sharing_panel_bind_switch_to_widgets (WID ("save-received-files-to-downloads-switch"),
WID ("receive-files-grid"),
NULL);
--
cgit v0.9.2
From db7f29b67579e02a7c8c49c135da994f409928b1 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Thu, 14 Nov 2013 08:16:34 +0000
Subject: sharing: Add more debug for duplicate folders
---
diff --git a/panels/sharing/cc-sharing-panel.c b/panels/sharing/cc-sharing-panel.c
index a246654..a5d4235 100644
--- a/panels/sharing/cc-sharing-panel.c
+++ b/panels/sharing/cc-sharing-panel.c
@@ -433,6 +433,10 @@ cc_sharing_panel_add_folder (GtkWidget *button,
"shared-folders-liststore");
folder = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (dialog));
+ if (!folder || g_str_equal (folder, ""))
+ goto bail;
+
+ g_debug ("Trying to add %s", folder);
for (valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (store), &iter);
valid;
@@ -445,14 +449,17 @@ cc_sharing_panel_add_folder (GtkWidget *button,
g_free (string);
if (matching)
- break;
+ {
+ g_debug ("Found a duplicate for %s", folder);
+ break;
+ }
}
- if (!matching && folder && !g_str_equal (folder, ""))
+ if (!matching)
gtk_list_store_insert_with_values (store, NULL, -1, 0, folder, -1);
+bail:
g_free (folder);
-
gtk_widget_destroy (dialog);
}
--
cgit v0.9.2
From 40d672cce3b700f08baa36da7f2c7f00f322e30f Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Thu, 14 Nov 2013 08:25:30 +0000
Subject: sharing: Make it possible to add new folders
The media panel wouldn't let you add more folder because the
test for equality was reversed.
https://bugzilla.gnome.org/show_bug.cgi?id=710580
---
diff --git a/panels/sharing/cc-sharing-panel.c b/panels/sharing/cc-sharing-panel.c
index a5d4235..1782180 100644
--- a/panels/sharing/cc-sharing-panel.c
+++ b/panels/sharing/cc-sharing-panel.c
@@ -445,7 +445,7 @@ cc_sharing_panel_add_folder (GtkWidget *button,
gchar *string;
gtk_tree_model_get (GTK_TREE_MODEL (store), &iter, 0, &string, -1);
- matching = (g_strcmp0 (string, folder) != 0);
+ matching = (g_strcmp0 (string, folder) == 0);
g_free (string);
if (matching)
--
cgit v0.9.2
From f5ec0cd8d6e41628d8a6663f448988aeec2885a2 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Thu, 14 Nov 2013 22:46:00 +0000
Subject: sharing: Fix crash when turning off Sharing
Another fallout from:
05a4f6d3d9620782fa5d1a279ef84c11701247d1
https://bugzilla.gnome.org/show_bug.cgi?id=712338
---
diff --git a/panels/sharing/cc-sharing-panel.c b/panels/sharing/cc-sharing-panel.c
index 1782180..8947e80 100644
--- a/panels/sharing/cc-sharing-panel.c
+++ b/panels/sharing/cc-sharing-panel.c
@@ -100,7 +100,7 @@ cc_sharing_panel_master_switch_notify (GtkSwitch *gtkswitch,
gtk_switch_set_active (GTK_SWITCH (WID ("share-public-folder-on-network-switch")),
FALSE);
gtk_switch_set_active (GTK_SWITCH (WID ("share-media-switch")), FALSE);
- gtk_switch_set_active (GTK_SWITCH (WID ("share-public-folder-switch")),
+ gtk_switch_set_active (GTK_SWITCH (WID ("save-received-files-to-downloads-switch")),
FALSE);
}
--
cgit v0.9.2
From f730abd6a3ee86cf90eef79609a0f8e1538827b8 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Thu, 14 Nov 2013 22:55:04 +0000
Subject: sharing: Fix compile time warning
Another warning in cc_sharing_panel_add_folder()
---
diff --git a/panels/sharing/cc-sharing-panel.c b/panels/sharing/cc-sharing-panel.c
index 8947e80..db0089b 100644
--- a/panels/sharing/cc-sharing-panel.c
+++ b/panels/sharing/cc-sharing-panel.c
@@ -417,7 +417,7 @@ cc_sharing_panel_add_folder (GtkWidget *button,
gchar *folder;
GtkTreeIter iter;
gboolean valid;
- gboolean matching;
+ gboolean matching = FALSE;
dialog = gtk_file_chooser_dialog_new (_("Choose a Folder"),
GTK_WINDOW (gtk_widget_get_toplevel (button)),
--
cgit v0.9.2

View File

@ -1,3 +1,41 @@
-------------------------------------------------------------------
Mon Mar 3 18:55:31 UTC 2014 - zaitor@opensuse.org
- Update to version 3.10.3:
+ Background: Chooser dialog is too wide.
+ Color:
- Fix a crash if the user closes the window after calibrating.
- Show the whitepoint selector.
+ Display:
- Hide unsupported UI elements.
- Add an 'upside-down' button.
+ Info:
- Crash if PackageKit is not present.
- Use gnome-software for showing the list of updates if
installed.
+ Network:
- Fix build with NM 0.9.8.x.
- Can't assign IP address without gateway.
- Can't create team connection.
+ Online Accounts: Panel is too wide.
+ Power: Wrong battery indicator when fully charged (99% instead
of 100%).
+ Printers: Show correct time of print job.
+ Sharing:
- Fix crash when turning off Sharing.
- Make it possible to add new folders.
- Not able to enable bluetooth.
+ Shell:
- Activate application when launching a panel.
- Overview is too wide.
+ Users:
- Improve logged-in check when deleting users.
+ Wacom:
- Fix animations on the calibration UI.
- Calibration on monitors other than (x,y=0,0) come out wrong.
- Clear background on "target" actor in calibration UI.
- Drop gnome-control-center-BT-sharing.patch: fixed upstream.
-------------------------------------------------------------------
Thu Jan 30 13:00:38 UTC 2014 - fcrozat@suse.com

View File

@ -27,7 +27,7 @@
%endif
Name: gnome-control-center
Version: 3.10.2
Version: 3.10.3
Release: 0
# FIXME: in 12.3 and later, check if we still need patch2 (gnome-control-center-hide-region-system-tab.patch) (see bnc#703833)
Summary: The GNOME Control Center
@ -43,8 +43,6 @@ Patch14: gnome-control-center-system-proxy-configuration.patch
Patch15: gcc-private-connection.patch
# PATCH-FIX-UPSTREAM gnome-control-center-probe-radius-server-cert.patch bnc#574266 glin@suse.com -- network: Probe the RADIUS server certificate
Patch16: gnome-control-center-probe-radius-server-cert.patch
# PATCH-FIX-UPSTREAM gnome-control-center-BT-sharing.patch bgo#712252 dimstar@opensuse.org -- Fix Bluetooth label always being off
Patch17: gnome-control-center-BT-sharing.patch
# PATCH-FEATURE-UPSTREAM gnome-control-center-upower-fix-build.patch mgorse@suse.com -- Build fix for UPower 0.99
Patch18: gnome-control-center-upower-fix-build.patch
# PATCH-FEATURE-UPSTREAM gnome-control-center-upower-DeviceChanged-signal.patch mgorse@suse.com -- DeviceChanged signal no longer exists in upower-glib 0.99
@ -183,7 +181,6 @@ translation-update-upstream
%patch0 -p1
%patch15 -p1
%patch16 -p1
%patch17 -p1
%patch18 -p1
%patch19 -p1
%patch20 -p1