forked from pool/gnome-control-center
Accepting request 252157 from GNOME:Factory
Push GNOME 3.14.0 OBS-URL: https://build.opensuse.org/request/show/252157 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-control-center?expand=0&rev=119
This commit is contained in:
commit
340a4c42b8
@ -19,25 +19,25 @@ https://bugzilla.gnome.org/show_bug.cgi?id=646187
|
||||
panels/network/network-dialogs.h | 6 ++++--
|
||||
7 files changed, 94 insertions(+), 9 deletions(-)
|
||||
|
||||
Index: gnome-control-center-3.11.1/configure.ac
|
||||
Index: gnome-control-center-3.13.90/configure.ac
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/configure.ac
|
||||
+++ gnome-control-center-3.11.1/configure.ac
|
||||
@@ -134,7 +134,8 @@ PKG_CHECK_MODULES(KEYBOARD_PANEL, $COMMO
|
||||
--- gnome-control-center-3.13.90.orig/configure.ac
|
||||
+++ gnome-control-center-3.13.90/configure.ac
|
||||
@@ -137,7 +137,8 @@ PKG_CHECK_MODULES(KEYBOARD_PANEL, $COMMO
|
||||
PKG_CHECK_MODULES(MEDIA_PANEL, $COMMON_MODULES)
|
||||
PKG_CHECK_MODULES(MOUSE_PANEL, $COMMON_MODULES xi >= 1.2
|
||||
gnome-settings-daemon >= $GSD_REQUIRED_VERSION x11)
|
||||
-PKG_CHECK_MODULES(NETWORK_PANEL, $COMMON_MODULES gmodule-2.0)
|
||||
+PKG_CHECK_MODULES(NETWORK_PANEL, $COMMON_MODULES gmodule-2.0
|
||||
+ polkit-gobject-1 >= $POLKIT_REQUIRED_VERSION)
|
||||
PKG_CHECK_MODULES(NOTIFICATIONS_PANEL, $COMMON_MODULES libgnome-menu-3.0)
|
||||
+ polkit-gobject-1 >= $POLKIT_REQUIRED_VERSION)
|
||||
PKG_CHECK_MODULES(NOTIFICATIONS_PANEL, $COMMON_MODULES)
|
||||
PKG_CHECK_MODULES(ONLINE_ACCOUNTS_PANEL, $COMMON_MODULES goa-1.0 goa-backend-1.0 >= $GOA_REQUIRED_VERSION)
|
||||
PKG_CHECK_MODULES(POWER_PANEL, $COMMON_MODULES upower-glib >= 0.99.0
|
||||
Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
Index: gnome-control-center-3.13.90/panels/network/cc-network-panel.c
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/panels/network/cc-network-panel.c
|
||||
+++ gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
@@ -24,6 +24,8 @@
|
||||
--- gnome-control-center-3.13.90.orig/panels/network/cc-network-panel.c
|
||||
+++ gnome-control-center-3.13.90/panels/network/cc-network-panel.c
|
||||
@@ -23,6 +23,8 @@
|
||||
#include <glib/gi18n.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
@ -46,7 +46,7 @@ Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
#include "cc-network-panel.h"
|
||||
#include "cc-network-resources.h"
|
||||
|
||||
@@ -87,6 +89,9 @@ struct _CcNetworkPanelPrivate
|
||||
@@ -86,6 +88,9 @@ struct _CcNetworkPanelPrivate
|
||||
gchar *arg_device;
|
||||
gchar *arg_access_point;
|
||||
gboolean operation_done;
|
||||
@ -56,7 +56,7 @@ Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
};
|
||||
|
||||
enum {
|
||||
@@ -574,13 +579,13 @@ handle_argv_for_device (CcNetworkPanel *
|
||||
@@ -582,13 +587,13 @@ handle_argv_for_device (CcNetworkPanel *
|
||||
return TRUE;
|
||||
} else if (g_strcmp0 (nm_object_get_path (NM_OBJECT (device)), priv->arg_device) == 0) {
|
||||
if (priv->arg_operation == OPERATION_CONNECT_MOBILE) {
|
||||
@ -72,7 +72,7 @@ Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
reset_command_line_args (panel); /* done */
|
||||
select_tree_iter (panel, iter);
|
||||
return TRUE;
|
||||
@@ -1355,6 +1360,9 @@ cc_network_panel_init (CcNetworkPanel *p
|
||||
@@ -1400,6 +1405,9 @@ cc_network_panel_init (CcNetworkPanel *p
|
||||
GtkWidget *widget;
|
||||
GtkWidget *toplevel;
|
||||
GDBusConnection *system_bus;
|
||||
@ -82,7 +82,7 @@ Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
|
||||
panel->priv = NETWORK_PANEL_PRIVATE (panel);
|
||||
g_resources_register (cc_network_get_resource ());
|
||||
@@ -1458,4 +1466,32 @@ cc_network_panel_init (CcNetworkPanel *p
|
||||
@@ -1503,4 +1511,32 @@ cc_network_panel_init (CcNetworkPanel *p
|
||||
widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder,
|
||||
"vbox1"));
|
||||
gtk_container_add (GTK_CONTAINER (panel), widget);
|
||||
@ -115,11 +115,11 @@ Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.c
|
||||
+{
|
||||
+ return panel->priv->default_private;
|
||||
}
|
||||
Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.h
|
||||
Index: gnome-control-center-3.13.90/panels/network/cc-network-panel.h
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/panels/network/cc-network-panel.h
|
||||
+++ gnome-control-center-3.11.1/panels/network/cc-network-panel.h
|
||||
@@ -67,6 +67,8 @@ GType cc_network_panel_get_type (void) G
|
||||
--- gnome-control-center-3.13.90.orig/panels/network/cc-network-panel.h
|
||||
+++ gnome-control-center-3.13.90/panels/network/cc-network-panel.h
|
||||
@@ -66,6 +66,8 @@ GType cc_network_panel_get_type (void) G
|
||||
|
||||
GPtrArray *cc_network_panel_get_devices (CcNetworkPanel *panel);
|
||||
|
||||
@ -128,10 +128,10 @@ Index: gnome-control-center-3.11.1/panels/network/cc-network-panel.h
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* _CC_NETWORK_PANEL_H */
|
||||
Index: gnome-control-center-3.11.1/panels/network/net-device-mobile.c
|
||||
Index: gnome-control-center-3.13.90/panels/network/net-device-mobile.c
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/panels/network/net-device-mobile.c
|
||||
+++ gnome-control-center-3.11.1/panels/network/net-device-mobile.c
|
||||
--- gnome-control-center-3.13.90.orig/panels/network/net-device-mobile.c
|
||||
+++ gnome-control-center-3.13.90/panels/network/net-device-mobile.c
|
||||
@@ -141,12 +141,15 @@ mobile_connection_changed_cb (GtkComboBo
|
||||
COLUMN_ID, &object_path,
|
||||
-1);
|
||||
@ -149,11 +149,11 @@ Index: gnome-control-center-3.11.1/panels/network/net-device-mobile.c
|
||||
goto out;
|
||||
}
|
||||
|
||||
Index: gnome-control-center-3.11.1/panels/network/net-device-wifi.c
|
||||
Index: gnome-control-center-3.13.90/panels/network/net-device-wifi.c
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/panels/network/net-device-wifi.c
|
||||
+++ gnome-control-center-3.11.1/panels/network/net-device-wifi.c
|
||||
@@ -696,6 +696,9 @@ wireless_try_to_connect (NetDeviceWifi *
|
||||
--- gnome-control-center-3.13.90.orig/panels/network/net-device-wifi.c
|
||||
+++ gnome-control-center-3.13.90/panels/network/net-device-wifi.c
|
||||
@@ -697,6 +697,9 @@ wireless_try_to_connect (NetDeviceWifi *
|
||||
NMDevice *device;
|
||||
NMSettingWireless *setting_wireless;
|
||||
NMClient *client;
|
||||
@ -163,7 +163,7 @@ Index: gnome-control-center-3.11.1/panels/network/net-device-wifi.c
|
||||
|
||||
if (device_wifi->priv->updating_device)
|
||||
goto out;
|
||||
@@ -747,10 +750,21 @@ wireless_try_to_connect (NetDeviceWifi *
|
||||
@@ -748,10 +751,21 @@ wireless_try_to_connect (NetDeviceWifi *
|
||||
/* create one, as it's missing */
|
||||
g_debug ("no existing connection found for %s, creating", ssid_target);
|
||||
|
||||
@ -186,15 +186,15 @@ Index: gnome-control-center-3.11.1/panels/network/net-device-wifi.c
|
||||
device, ap_object_path,
|
||||
connection_add_activate_cb, device_wifi);
|
||||
} else {
|
||||
@@ -965,6 +979,7 @@ start_shared_connection (NetDeviceWifi *
|
||||
GSList *l;
|
||||
@@ -995,6 +1009,7 @@ start_shared_connection (NetDeviceWifi *
|
||||
NMClient *client;
|
||||
const char *mode;
|
||||
NMDeviceWifiCapabilities caps;
|
||||
+ CcNetworkPanel *panel;
|
||||
|
||||
device = net_device_get_nm_device (NET_DEVICE (device_wifi));
|
||||
g_assert (nm_device_get_device_type (device) == NM_DEVICE_TYPE_WIFI);
|
||||
@@ -1001,6 +1016,14 @@ start_shared_connection (NetDeviceWifi *
|
||||
@@ -1031,6 +1046,14 @@ start_shared_connection (NetDeviceWifi *
|
||||
"id", "Hotspot",
|
||||
"autoconnect", FALSE,
|
||||
NULL);
|
||||
@ -209,10 +209,10 @@ Index: gnome-control-center-3.11.1/panels/network/net-device-wifi.c
|
||||
nm_connection_add_setting (c, (NMSetting *)sc);
|
||||
|
||||
sw = (NMSettingWireless *)nm_setting_wireless_new ();
|
||||
Index: gnome-control-center-3.11.1/panels/network/network-dialogs.c
|
||||
Index: gnome-control-center-3.13.90/panels/network/network-dialogs.c
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/panels/network/network-dialogs.c
|
||||
+++ gnome-control-center-3.11.1/panels/network/network-dialogs.c
|
||||
--- gnome-control-center-3.13.90.orig/panels/network/network-dialogs.c
|
||||
+++ gnome-control-center-3.13.90/panels/network/network-dialogs.c
|
||||
@@ -41,6 +41,7 @@ typedef struct {
|
||||
NMClient *client;
|
||||
NMRemoteSettings *settings;
|
||||
@ -298,10 +298,10 @@ Index: gnome-control-center-3.11.1/panels/network/network-dialogs.c
|
||||
|
||||
caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device));
|
||||
if (caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) {
|
||||
Index: gnome-control-center-3.11.1/panels/network/network-dialogs.h
|
||||
Index: gnome-control-center-3.13.90/panels/network/network-dialogs.h
|
||||
===================================================================
|
||||
--- gnome-control-center-3.11.1.orig/panels/network/network-dialogs.h
|
||||
+++ gnome-control-center-3.11.1/panels/network/network-dialogs.h
|
||||
--- gnome-control-center-3.13.90.orig/panels/network/network-dialogs.h
|
||||
+++ gnome-control-center-3.13.90/panels/network/network-dialogs.h
|
||||
@@ -38,11 +38,13 @@ void cc_network_panel_connect_to_8021x_n
|
||||
NMClient *client,
|
||||
NMRemoteSettings *settings,
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5297d448eff0ec58f6c0ad9fbd1b94bed0a850496df0ee65571c0622b49c1582
|
||||
size 6866544
|
3
gnome-control-center-3.14.0.tar.xz
Normal file
3
gnome-control-center-3.14.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a476da984e05b8e5252f2b4f014b30101680e097e5c27697bbfed013c7ba3bc1
|
||||
size 6930332
|
@ -8,10 +8,10 @@ Subject: [PATCH] allow extra tools in shell
|
||||
shell/cc-window.c | 43 ++++++++++++++++++++++++++++++++++
|
||||
2 files changed, 81 insertions(+), 23 deletions(-)
|
||||
|
||||
Index: gnome-control-center-3.12.1/shell/cc-panel-loader.c
|
||||
Index: gnome-control-center-3.13.4/shell/cc-panel-loader.c
|
||||
===================================================================
|
||||
--- gnome-control-center-3.12.1.orig/shell/cc-panel-loader.c
|
||||
+++ gnome-control-center-3.12.1/shell/cc-panel-loader.c
|
||||
--- gnome-control-center-3.13.4.orig/shell/cc-panel-loader.c
|
||||
+++ gnome-control-center-3.13.4/shell/cc-panel-loader.c
|
||||
@@ -73,35 +73,42 @@ static struct {
|
||||
GType (*get_type)(void);
|
||||
#endif
|
||||
@ -88,7 +88,7 @@ Index: gnome-control-center-3.12.1/shell/cc-panel-loader.c
|
||||
+ desktop_name = g_strconcat (all_panels[i].name,
|
||||
+ ".desktop", NULL);
|
||||
+ name = g_strconcat ("suse-",all_panels[i].name, NULL);
|
||||
+ }
|
||||
+ }
|
||||
+ else
|
||||
+#endif
|
||||
+ {
|
||||
@ -117,11 +117,11 @@ Index: gnome-control-center-3.12.1/shell/cc-panel-loader.c
|
||||
GOptionGroup *group = cc_panel_get_option_group (get_type(), builder);
|
||||
if (group == NULL)
|
||||
continue;
|
||||
Index: gnome-control-center-3.12.1/shell/cc-window.c
|
||||
Index: gnome-control-center-3.13.4/shell/cc-window.c
|
||||
===================================================================
|
||||
--- gnome-control-center-3.12.1.orig/shell/cc-window.c
|
||||
+++ gnome-control-center-3.12.1/shell/cc-window.c
|
||||
@@ -139,6 +139,41 @@ get_icon_name_from_g_icon (GIcon *gicon)
|
||||
--- gnome-control-center-3.13.4.orig/shell/cc-window.c
|
||||
+++ gnome-control-center-3.13.4/shell/cc-window.c
|
||||
@@ -140,6 +140,41 @@ get_icon_name_from_g_icon (GIcon *gicon)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -163,7 +163,7 @@ Index: gnome-control-center-3.12.1/shell/cc-window.c
|
||||
static gboolean
|
||||
activate_panel (CcWindow *self,
|
||||
const gchar *id,
|
||||
@@ -152,6 +187,12 @@ activate_panel (CcWindow *self
|
||||
@@ -153,6 +188,12 @@ activate_panel (CcWindow *self
|
||||
|
||||
if (!id)
|
||||
return FALSE;
|
||||
|
83
gnome-control-center-hide-firewall-zone-entry.patch
Normal file
83
gnome-control-center-hide-firewall-zone-entry.patch
Normal file
@ -0,0 +1,83 @@
|
||||
From 889ce41e87872377b6f728fadd0e0ffaa927406a Mon Sep 17 00:00:00 2001
|
||||
From: Felix Zhang <fezhang@suse.com>
|
||||
Date: Thu, 11 Sep 2014 16:07:43 +0800
|
||||
Subject: [PATCH] bnc894394 hide firewall zone entry
|
||||
|
||||
The Firewall Zone entry is only activated if firewalld package is installed.
|
||||
As openSUSE doesn't have this package, the entry never works. So removing the
|
||||
entry to avoid confusions.
|
||||
---
|
||||
panels/network/connection-editor/ethernet-page.ui | 4 ++--
|
||||
panels/network/connection-editor/vpn-page.ui | 4 ++--
|
||||
panels/network/connection-editor/wifi-page.ui | 4 ++--
|
||||
3 files changed, 6 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/panels/network/connection-editor/ethernet-page.ui b/panels/network/connection-editor/ethernet-page.ui
|
||||
index 59d1a35..f6f604e 100644
|
||||
--- a/panels/network/connection-editor/ethernet-page.ui
|
||||
+++ b/panels/network/connection-editor/ethernet-page.ui
|
||||
@@ -264,7 +264,7 @@
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="heading_zone">
|
||||
- <property name="visible">True</property>
|
||||
+ <property name="visible">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="label" translatable="yes">Firewall _Zone</property>
|
||||
@@ -280,7 +280,7 @@
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="combo_zone">
|
||||
- <property name="visible">True</property>
|
||||
+ <property name="visible">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="entry_text_column">0</property>
|
||||
<property name="id_column">1</property>
|
||||
diff --git a/panels/network/connection-editor/vpn-page.ui b/panels/network/connection-editor/vpn-page.ui
|
||||
index dea9a4a..c0f5e92 100644
|
||||
--- a/panels/network/connection-editor/vpn-page.ui
|
||||
+++ b/panels/network/connection-editor/vpn-page.ui
|
||||
@@ -57,7 +57,7 @@
|
||||
<property name="spacing">6</property>
|
||||
<child>
|
||||
<object class="GtkLabel" id="heading_zone">
|
||||
- <property name="visible">True</property>
|
||||
+ <property name="visible">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="label" translatable="yes">Firewall _Zone</property>
|
||||
<property name="use_underline">True</property>
|
||||
@@ -71,7 +71,7 @@
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="combo_zone">
|
||||
- <property name="visible">True</property>
|
||||
+ <property name="visible">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="entry_text_column">0</property>
|
||||
<property name="id_column">1</property>
|
||||
diff --git a/panels/network/connection-editor/wifi-page.ui b/panels/network/connection-editor/wifi-page.ui
|
||||
index 3986015..bb154da 100644
|
||||
--- a/panels/network/connection-editor/wifi-page.ui
|
||||
+++ b/panels/network/connection-editor/wifi-page.ui
|
||||
@@ -174,7 +174,7 @@
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkLabel" id="heading_zone">
|
||||
- <property name="visible">True</property>
|
||||
+ <property name="visible">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="xalign">1</property>
|
||||
<property name="label" translatable="yes">Firewall _Zone</property>
|
||||
@@ -190,7 +190,7 @@
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBoxText" id="combo_zone">
|
||||
- <property name="visible">True</property>
|
||||
+ <property name="visible">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="entry_text_column">0</property>
|
||||
<property name="id_column">1</property>
|
||||
--
|
||||
1.7.12.4
|
||||
|
@ -1,3 +1,176 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 24 04:53:24 UTC 2014 - badshah400@gmail.com
|
||||
|
||||
- Add explicit libgnomekbd Requires to fix issue with keyboard
|
||||
layout utility not showing up when "Show keyboard layout" is
|
||||
chosen from control-center or top-bar (boo#898096).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 22 17:09:55 UTC 2014 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.14.0:
|
||||
+ Fix restart notifications' text getting clipped under some
|
||||
translations.
|
||||
+ Updated translations
|
||||
- Drop gnome-control-center-bg-translation.patch: Fixed upstream..
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 21 14:26:20 UTC 2014 - fezhang@suse.com
|
||||
|
||||
- Add gnome-control-center-hide-firewall-zone-entry.patch: Hide
|
||||
Firewall zone entry in Network panel (bnc#894394). The Firewall
|
||||
Zone entry is only activated if firewalld package is installed.
|
||||
As openSUSE doesn't have this package, the entry never works.
|
||||
So removing the entry to avoid confusions.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 16 20:09:22 UTC 2014 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.13.92:
|
||||
+ Background:
|
||||
- Fix background chooser dialog resizing when switching views.
|
||||
- Use a stack with three views for the chooser dialog.
|
||||
- Fix memory leak in Flickr support.
|
||||
+ Date & Time: Don't hard-code font size.
|
||||
+ Keyboard: Fix a crash if the WM changes (or restarts).
|
||||
+ Network:
|
||||
- Fix possible crash when wireless-enabled changes.
|
||||
- Fix more potential crashers for WWAN.
|
||||
- Report hotspot is running only if device is active.
|
||||
- Really hide all of the virtualisation bridges.
|
||||
- Don't show underlying device for VPN connections.
|
||||
+ Sharing: Fix empty folder list by default.
|
||||
+ User Accounts:
|
||||
- Fix various UI padding issues.
|
||||
- Fix focus in the account dialog.
|
||||
+ Updated libgd to fix GdNotification theming
|
||||
+ Updated translations.
|
||||
- Add gnome-control-center-bg-translation.patch: Fix Bulgarian
|
||||
translation for Sharing desktop file.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 7 11:55:48 UTC 2014 - zaitor@opensuse.org
|
||||
|
||||
- Update to version 3.13.91:
|
||||
+ Date & Time: Fix crash when setting year to 0.
|
||||
+ Network:
|
||||
- Center "Wi-Fi hotspot" properties.
|
||||
- Fix warning on startup with hotspot enabled.
|
||||
- Show an error when we fail to turn off hotspot.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 22 08:49:24 UTC 2014 - glin@suse.com
|
||||
|
||||
- Enable gnome-control-center-probe-radius-server-cert.patch since
|
||||
the patch in NetworkManager-gnome was rebased.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 19 19:17:19 UTC 2014 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.13.90:
|
||||
+ Color: Do not set the 'Details' button for virtual profiles.
|
||||
+ Keyboard: Suggest to automatically set reverse bindings.
|
||||
+ Network:
|
||||
- Make broken configuration entries red.
|
||||
- Create WPA protected AP hotspot if supported.
|
||||
- Fix network icon names for newer versions.
|
||||
- Remove "..." from dialogue titles.
|
||||
- Add DNS to the keywords.
|
||||
- Fix typo in NetworkManager version checking.
|
||||
+ Printers: Allow to add AppSocket/HP JetDirect and LPD printers.
|
||||
+ Privacy: Add location setting.
|
||||
+ Search: add support for default disabled search providers.
|
||||
+ Sharing:
|
||||
- Fix crash in media preferences.
|
||||
- Avoid truncated folders list in media sharing.
|
||||
- Make it possible to share remote folders.
|
||||
+ User Accounts:
|
||||
- fix response sensitivity of photo dialog.
|
||||
- allow password changing if old password isn't set or empty.
|
||||
- Add restart notification.
|
||||
- fix enterprise toggle.
|
||||
- prefill domain entry.
|
||||
- Rebase gcc-private-connection.patch.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 7 12:31:31 UTC 2014 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.13.4:
|
||||
+ Use correct window icon.
|
||||
+ Background:
|
||||
- Several small fixes.
|
||||
- Fix emblems on HiDPI.
|
||||
- Re-add drag'n'drop support.
|
||||
- Allow dropping colours as well.
|
||||
- Remember added colours.
|
||||
- Copy all the manually added backgrounds.
|
||||
+ Info: Fix logo on HiDPI.
|
||||
+ Keyboard: Allow "print screen" and "scroll lock" as compose key
|
||||
options.
|
||||
+ Mouse: Fix scroll test background on HiDPI.
|
||||
+ Notifications: Fix duplicates in application list.
|
||||
+ Power: Update automatic suspend label when CanHibernate is
|
||||
false.
|
||||
+ Region: Make it possible to add an input source by activating
|
||||
its row.
|
||||
+ Sharing:
|
||||
- Add maximum height for the networks list box.
|
||||
- Use the selected URI from the file chooser, instead of the
|
||||
current directory.
|
||||
+ User Accounts: Do not generate previews for directories.
|
||||
+ Wacom:
|
||||
- Fix x/y ranges' swapping when calibrating on rotated screens.
|
||||
- Fix stylus back/forward button assignments.
|
||||
+ Updated translations.
|
||||
- Add pkgconfig(cairo-gobject) BuildRequires: new dependency.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 7 12:31:30 UTC 2014 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 3.13.3:
|
||||
+ Fix automake warnings.
|
||||
+ Fix compilation warnings in a number of panels.
|
||||
+ Update Sharing panel for gnome-settings-daemon API change.
|
||||
- Changes from version 3.13.2:
|
||||
+ Use new RTL icons support in GTK+.
|
||||
+ Background: Use higher resolution thumbnails on HiDpi displays.
|
||||
+ Color: Update the UI if the ICC profile title changes.
|
||||
+ Date & Time: Fix initial state when NTP isn't supported.
|
||||
+ Details: Fix crash when using vboxvideo glx driver.
|
||||
+ Display:
|
||||
- Make monitor label look better.
|
||||
- Add "Monitor" to keywords.
|
||||
- Make the Apply button unsensitive for invalid configuration.
|
||||
- Fix layout when rotating the left-most of the displays.
|
||||
+ Keyboard: Add shortcut to launch gnome-control-center.
|
||||
+ Network:
|
||||
- Fix warning on startup.
|
||||
- Hide the Virtualisation bridge.
|
||||
+ Notifications: Drop the dep on libgnome-menu.
|
||||
+ Online Accounts: Use a header bar for the "Add Account" dialog.
|
||||
+ Privacy: Fix "Immediately" option not truthful.
|
||||
+ Printers: Ellipsize long names and locations.
|
||||
+ Sharing: Add per-network Media, File and Screen sharing.
|
||||
+ Shell: Make search results sorting smarter.
|
||||
+ User Accounts:
|
||||
- Fix DateTime instance leaks.
|
||||
- Fix wrong language being shown.
|
||||
- Add filter to the avatar file chooser.
|
||||
- Changes from version 3.13.1:
|
||||
+ Use header bars in dialogs.
|
||||
+ Color: Do not crash when toggling devices and reopening the
|
||||
panel.
|
||||
+ Details: Don't crash on Wayland.
|
||||
+ Keyboard: Drop hard X dependency.
|
||||
+ Network: Do not pretend we can overrule hardware rfkill.
|
||||
+ Updated translations.
|
||||
- Drop pkgconfig(libgnome-menu-3.0) BuildRequires: no longer
|
||||
required.
|
||||
- Rebase gcc-private-connection.patch.
|
||||
- Disable gnome-control-center-probe-radius-server-cert.patch for
|
||||
now: NetworkManager must have this capability rebased first.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 7 12:31:29 UTC 2014 - fcrozat@suse.com
|
||||
|
||||
|
@ -27,16 +27,18 @@
|
||||
%endif
|
||||
|
||||
Name: gnome-control-center
|
||||
Version: 3.12.1
|
||||
Version: 3.14.0
|
||||
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
|
||||
License: GPL-2.0+
|
||||
Group: System/GUI/GNOME
|
||||
Url: http://www.gnome.org
|
||||
Source: http://download.gnome.org/sources/gnome-control-center/3.12/%{name}-%{version}.tar.xz
|
||||
Source: http://download.gnome.org/sources/gnome-control-center/3.14/%{name}-%{version}.tar.xz
|
||||
# PATCH-FEATURE-OPENSUSE gnome-control-center-allow-extra-tools-in-shell.patch fezhang@suse.com -- Add dconf-editor, pkg-prefs, gnome-tweak-tool and tracker-preferences to gnome-control-center-allow-yast-in-shell.patch so that they can launch from g-c-c shell like YaST does. Also change the patch with a more generic name.
|
||||
Patch0: gnome-control-center-allow-extra-tools-in-shell.patch
|
||||
# PATCH-FEATURE-OPENSUSE gnome-control-center-hide-firewall-zone-entry.patch bnc#894394 fezhang@suse.com -- network: hide the firewall zone entry for firewalld, which is not used in opensuse
|
||||
Patch1: gnome-control-center-hide-firewall-zone-entry.patch
|
||||
# PATCH-FEATURE-OPENSUSE gnome-control-center-allow-yast-in-shell.patch vuntz@opensuse.org -- Allow the launch of the yast shell from the g-c-c shell; it's quite ugly, but on the other hand, we don't want to change the behavior of the shell except for yast...
|
||||
Patch14: gnome-control-center-system-proxy-configuration.patch
|
||||
# PATCH-FIX-UPSTREAM gcc-private-connection.patch bnc#751211 bgo#646187 dimstar@opensuse.org -- network: create private connections if the user if not authorized
|
||||
@ -52,6 +54,7 @@ BuildRequires: krb5-devel
|
||||
BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: pkgconfig(accountsservice) >= 0.6.30
|
||||
BuildRequires: pkgconfig(cairo-gobject)
|
||||
BuildRequires: pkgconfig(cheese)
|
||||
BuildRequires: pkgconfig(cheese-gtk) >= 3.3.91
|
||||
BuildRequires: pkgconfig(clutter-gtk-1.0)
|
||||
@ -71,14 +74,13 @@ BuildRequires: pkgconfig(goa-1.0) >= 3.9.90
|
||||
BuildRequires: pkgconfig(goa-backend-1.0)
|
||||
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
||||
BuildRequires: pkgconfig(grilo-0.2)
|
||||
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= 3.9.91
|
||||
BuildRequires: pkgconfig(gsettings-desktop-schemas) >= 3.13.91
|
||||
BuildRequires: pkgconfig(gstreamer-1.0)
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.11.1
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.13.0
|
||||
%if %{with_ibus}
|
||||
BuildRequires: pkgconfig(ibus-1.0) >= 1.5.2
|
||||
%endif
|
||||
BuildRequires: pkgconfig(libcanberra-gtk3)
|
||||
BuildRequires: pkgconfig(libgnome-menu-3.0)
|
||||
BuildRequires: pkgconfig(libgtop-2.0)
|
||||
BuildRequires: pkgconfig(libnm-glib) >= 0.9.8
|
||||
BuildRequires: pkgconfig(libnm-glib-vpn) >= 0.9.8
|
||||
@ -110,6 +112,8 @@ Requires: gnome-settings-daemon
|
||||
Requires: gnome-themes-accessibility
|
||||
Requires: gnome-version
|
||||
Requires: iso-codes
|
||||
# Needed for showing keyboard layout, boo#898096
|
||||
Requires: libgnomekbd
|
||||
Requires: nautilus
|
||||
Recommends: %{name}-lang
|
||||
Recommends: %{name}-user-faces
|
||||
@ -170,6 +174,7 @@ GNOME control center.
|
||||
%setup -q
|
||||
#ranslation-update-upstream
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch15 -p1
|
||||
%patch16 -p1
|
||||
#NEEDS-REBASE
|
||||
|
Loading…
x
Reference in New Issue
Block a user