Accepting request 424514 from home:zhangxiaofei:branches:GNOME:Factory

- Update gnome-control-center-allow-extra-tools-in-shell.patch:

  + Fix leak of strings.

  + Add tools with category X-GNOME-DesktopSettings into the
    personal g-c-c category to enable itweb-settings.

  + Disable logspam in absence of optional components (bnc#866235
    bsc#952008).

- Specfile cleanup:

  + fix one mismatched patch tag;
 
  + abbreviate lengthy summary of one patch tag

- Changelog format: + remove trailing spaces

OBS-URL: https://build.opensuse.org/request/show/424514
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-control-center?expand=0&rev=327
This commit is contained in:
Bjørn Lie 2016-09-02 17:12:16 +00:00 committed by Git OBS Bridge
parent 98ff12fb74
commit 3c01e29ae8
3 changed files with 129 additions and 153 deletions

View File

@ -1,81 +1,41 @@
From fbdfce5abb17cae9a1b9b8df8f3c5f87af345789 Mon Sep 17 00:00:00 2001
From 8469e4ac57f3b5d3efbf533ba23512612997ffff Mon Sep 17 00:00:00 2001
From: Felix Zhang <fezhang@suse.com>
Date: Thu, 12 Jun 2014 20:17:05 +0800
Date: Fri, 2 Sep 2016 14:55:12 +0800
Subject: [PATCH] allow extra tools in shell
---
shell/cc-panel-loader.c | 61 ++++++++++++++++++++++++++++++-------------------
shell/cc-window.c | 43 ++++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+), 23 deletions(-)
shell/cc-panel-loader.c | 28 ++++++++++++++++++++++++++--
shell/cc-window.c | 41 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+), 2 deletions(-)
Index: gnome-control-center-3.17.90/shell/cc-panel-loader.c
===================================================================
--- gnome-control-center-3.17.90.orig/shell/cc-panel-loader.c
+++ gnome-control-center-3.17.90/shell/cc-panel-loader.c
@@ -73,35 +73,41 @@ static struct {
GType (*get_type)(void);
#endif
} all_panels[] = {
- PANEL_TYPE("background", cc_background_panel_get_type ),
+ PANEL_TYPE("background", cc_background_panel_get_type ),
#ifdef BUILD_BLUETOOTH
- PANEL_TYPE("bluetooth", cc_bluetooth_panel_get_type ),
+ PANEL_TYPE("bluetooth", cc_bluetooth_panel_get_type ),
#endif
- PANEL_TYPE("color", cc_color_panel_get_type ),
- PANEL_TYPE("datetime", cc_date_time_panel_get_type ),
- PANEL_TYPE("display", cc_display_panel_get_type ),
- PANEL_TYPE("info", cc_info_panel_get_type ),
- PANEL_TYPE("keyboard", cc_keyboard_panel_get_type ),
- PANEL_TYPE("mouse", cc_mouse_panel_get_type ),
+ PANEL_TYPE("color", cc_color_panel_get_type ),
+ PANEL_TYPE("datetime", cc_date_time_panel_get_type ),
+ PANEL_TYPE("display", cc_display_panel_get_type ),
+ PANEL_TYPE("info", cc_info_panel_get_type ),
+ PANEL_TYPE("keyboard", cc_keyboard_panel_get_type ),
+ PANEL_TYPE("mouse", cc_mouse_panel_get_type ),
#ifdef BUILD_NETWORK
- PANEL_TYPE("network", cc_network_panel_get_type ),
+ PANEL_TYPE("network", cc_network_panel_get_type ),
#endif
- PANEL_TYPE("notifications", cc_notifications_panel_get_type),
- PANEL_TYPE("online-accounts", cc_goa_panel_get_type ),
- PANEL_TYPE("power", cc_power_panel_get_type ),
+ PANEL_TYPE("notifications", cc_notifications_panel_get_type),
+ PANEL_TYPE("online-accounts", cc_goa_panel_get_type ),
+ PANEL_TYPE("power", cc_power_panel_get_type ),
#ifdef BUILD_PRINTERS
- PANEL_TYPE("printers", cc_printers_panel_get_type ),
+ PANEL_TYPE("printers", cc_printers_panel_get_type ),
#endif
- PANEL_TYPE("privacy", cc_privacy_panel_get_type ),
- PANEL_TYPE("region", cc_region_panel_get_type ),
- PANEL_TYPE("search", cc_search_panel_get_type ),
- PANEL_TYPE("sharing", cc_sharing_panel_get_type ),
- PANEL_TYPE("sound", cc_sound_panel_get_type ),
- PANEL_TYPE("universal-access", cc_ua_panel_get_type ),
- PANEL_TYPE("user-accounts", cc_user_panel_get_type ),
+ PANEL_TYPE("privacy", cc_privacy_panel_get_type ),
+ PANEL_TYPE("region", cc_region_panel_get_type ),
+ PANEL_TYPE("search", cc_search_panel_get_type ),
+ PANEL_TYPE("sharing", cc_sharing_panel_get_type ),
+ PANEL_TYPE("sound", cc_sound_panel_get_type ),
+ PANEL_TYPE("universal-access", cc_ua_panel_get_type ),
+ PANEL_TYPE("user-accounts", cc_user_panel_get_type ),
diff --git a/shell/cc-panel-loader.c b/shell/cc-panel-loader.c
index de9c5df..e24fc6e 100644
--- a/shell/cc-panel-loader.c
+++ b/shell/cc-panel-loader.c
@@ -102,6 +102,12 @@ static struct {
#ifdef BUILD_WACOM
- PANEL_TYPE("wacom", cc_wacom_panel_get_type ),
+ PANEL_TYPE("wacom", cc_wacom_panel_get_type ),
PANEL_TYPE("wacom", cc_wacom_panel_get_type ),
#endif
+ PANEL_TYPE("ca.desrt.dconf-editor", NULL ),
+ PANEL_TYPE("gpk-prefs", NULL ),
+ PANEL_TYPE("tracker-preferences", NULL ),
+ PANEL_TYPE("itweb-settings", NULL ),
+ PANEL_TYPE("gnome-tweak-tool", NULL ),
+ PANEL_TYPE("YaST", NULL ),
+ PANEL_TYPE("ca.desrt.dconf-editor", NULL ),
+ PANEL_TYPE("gnome-tweak-tool", NULL ),
+ PANEL_TYPE("gpk-prefs", NULL ),
+ PANEL_TYPE("itweb-settings", NULL ),
+ PANEL_TYPE("tracker-preferences", NULL ),
+ PANEL_TYPE("YaST", NULL ),
};
GList *
@@ -158,10 +165,22 @@ cc_panel_loader_fill_model (CcShellModel
@@ -133,7 +139,8 @@ parse_categories (GDesktopAppInfo *app)
{
if (strcmp (split[i], "HardwareSettings") == 0)
retval = CC_CATEGORY_HARDWARE;
- else if (strcmp (split[i], "X-GNOME-PersonalSettings") == 0)
+ else if ((strcmp (split[i], "X-GNOME-PersonalSettings") == 0)
+ || (strcmp (split[i], "X-GNOME-DesktopSettings") == 0))
retval = CC_CATEGORY_PERSONAL;
else if (strcmp (split[i], "X-GNOME-SystemSettings") == 0)
retval = CC_CATEGORY_SYSTEM;
@@ -158,17 +165,33 @@ cc_panel_loader_fill_model (CcShellModel *model)
{
GDesktopAppInfo *app;
char *desktop_name;
@ -83,10 +43,11 @@ Index: gnome-control-center-3.17.90/shell/cc-panel-loader.c
int category;
+#ifndef CC_PANEL_LOADER_NO_GTYPES
+ if (all_panels[i].get_type == NULL) {
+ desktop_name = g_strconcat (all_panels[i].name,
+ ".desktop", NULL);
+ name = g_strconcat ("suse-",all_panels[i].name, NULL);
+ if (all_panels[i].get_type == NULL)
+ {
+ desktop_name = g_strconcat (all_panels[i].name,
+ ".desktop", NULL);
+ name = g_strconcat ("suse-",all_panels[i].name, NULL);
+ }
+ else
+#endif
@ -98,19 +59,30 @@ Index: gnome-control-center-3.17.90/shell/cc-panel-loader.c
app = g_desktop_app_info_new (desktop_name);
g_free (desktop_name);
@@ -176,7 +195,7 @@ cc_panel_loader_fill_model (CcShellModel
if (app == NULL)
{
+ if (!g_str_has_prefix(name, "suse-"))
+ {
g_warning ("Ignoring broken panel %s (missing desktop file)",
all_panels[i].name);
+ }
continue;
}
@@ -176,7 +199,8 @@ cc_panel_loader_fill_model (CcShellModel *model)
if (G_UNLIKELY (category < 0))
continue;
- cc_shell_model_add_item (model, category, G_APP_INFO (app), all_panels[i].name);
+ cc_shell_model_add_item (model, category, G_APP_INFO (app), name);
+ g_free (name);
g_object_unref (app);
}
}
Index: gnome-control-center-3.17.90/shell/cc-window.c
===================================================================
--- gnome-control-center-3.17.90.orig/shell/cc-window.c
+++ gnome-control-center-3.17.90/shell/cc-window.c
diff --git a/shell/cc-window.c b/shell/cc-window.c
index 7c85f5c..d10ba9e 100644
--- a/shell/cc-window.c
+++ b/shell/cc-window.c
@@ -140,6 +140,41 @@ get_icon_name_from_g_icon (GIcon *gicon)
return NULL;
}
@ -153,7 +125,7 @@ Index: gnome-control-center-3.17.90/shell/cc-window.c
static gboolean
activate_panel (CcWindow *self,
const gchar *id,
@@ -153,6 +188,12 @@ activate_panel (CcWindow *self
@@ -153,6 +188,12 @@ activate_panel (CcWindow *self,
if (!id)
return FALSE;
@ -166,12 +138,6 @@ Index: gnome-control-center-3.17.90/shell/cc-window.c
priv->current_panel = GTK_WIDGET (cc_panel_loader_load_by_name (CC_SHELL (self), id, parameters));
cc_shell_set_active_panel (CC_SHELL (self), CC_PANEL (priv->current_panel));
@@ -1502,7 +1543,7 @@ create_header (CcWindow *self)
gtk_button_set_image (GTK_BUTTON (priv->search_button), image);
gtk_widget_set_valign (priv->search_button, GTK_ALIGN_CENTER);
gtk_style_context_add_class (gtk_widget_get_style_context (priv->search_button),
- "image-button");
+ "image-button");
gtk_header_bar_pack_end (GTK_HEADER_BAR (priv->header), priv->search_button);
priv->top_right_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
--
2.6.6

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Fri Sep 2 13:03:45 UTC 2016 - fezhang@suse.com
- Update gnome-control-center-allow-extra-tools-in-shell.patch:
+ Fix leak of strings.
+ Add tools with category X-GNOME-DesktopSettings into the
personal g-c-c category to enable itweb-settings.
+ Disable logspam in absence of optional components (bnc#866235
bsc#952008).
-------------------------------------------------------------------
Wed Aug 31 19:40:38 UTC 2016 - zaitor@opensuse.org
@ -90,7 +100,7 @@ Tue Apr 12 10:00:06 UTC 2016 - fezhang@suse.com
fixed upstream
- Drop gnome-control-center-change-password-i18n.patch (bnc#880303):
fixed upstream
- Drop gnome-control-center-datetime-i18n.patch (bnc#884425, bgo#732585):
- Drop gnome-control-center-datetime-i18n.patch (bnc#884425, bgo#732585):
fixed upstream
- Drop gnome-control-center-display-login-region.patch (bsc#955322):
fixed upstream
@ -233,7 +243,7 @@ Mon Dec 14 02:54:57 UTC 2015 - badshah400@gmail.com
-------------------------------------------------------------------
Mon Nov 30 13:52:06 UTC 2015 - fezhang@suse.com
- Fix the unlocalised heading on the Add Profile dialog on Color
- Fix the unlocalised heading on the Add Profile dialog on Color
panel (bnc#947761)
- Add gnome-control-center-bnc947761-fix-color-dialog-translations.patch
@ -405,7 +415,7 @@ Wed Aug 19 19:53:20 UTC 2015 - dimstar@opensuse.org
Wed Jul 29 10:01:00 UTC 2015 - zaitor@opensuse.org
- Add gnome-control-center-fix-nb-tans.patch: Fix translation of
Keyboard brightness in Norwegian bokmål (bgo#753005).
Keyboard brightness in Norwegian bokmål (bgo#753005).
-------------------------------------------------------------------
Wed Jul 22 07:39:55 UTC 2015 - zaitor@opensuse.org
@ -830,7 +840,7 @@ Tue Sep 16 20:09:22 UTC 2014 - dimstar@opensuse.org
Tue Sep 9 11:41:54 UTC 2014 - fezhang@suse.com
- Hide Firewall zone entry in Network panel (bnc#894394)
+ added patch: gnome-control-center-bnc894394-hide-firewall-zone-entry.patch
+ added patch: gnome-control-center-bnc894394-hide-firewall-zone-entry.patch
-------------------------------------------------------------------
Sun Sep 7 11:55:48 UTC 2014 - zaitor@opensuse.org
@ -1014,7 +1024,7 @@ Fri Jun 13 08:03:48 UTC 2014 - fezhang@suse.com
- Rename gnome-control-center-allow-yast-in-shell.patch to
gnome-control-center-allow-extra-tools-in-shell.patch
(bnc#866235). Add dconf-editor, gnome-tweak-tool, pkg-prefs and
(bnc#866235). Add dconf-editor, gnome-tweak-tool, pkg-prefs and
tracker-preferences, alongside yast, to the patch so that g-c-c
shell show them all.
%suse_update_desktop_file are meanwhile added to specfiles of the
@ -1030,7 +1040,7 @@ Thu May 15 07:34:19 UTC 2014 - fezhang@suse.com
-------------------------------------------------------------------
Wed May 7 23:35:53 UTC 2014 - dliang@suse.com
- Lower 'Requires' to 'Recommends' for cups-pk-helper (bnc#875606)
- Lower 'Requires' to 'Recommends' for cups-pk-helper (bnc#875606)
-------------------------------------------------------------------
Wed Apr 16 14:44:25 UTC 2014 - zaitor@opensuse.org
@ -1574,7 +1584,7 @@ Fri Jul 19 23:36:39 CST 2013 - hillwood@linuxfans.org
Tue Jul 2 03:48:05 UTC 2013 - dliang@suse.com
- Rebase gnome-control-center-allow-yast-in-shell.patch.
to prevent it from crash.
to prevent it from crash.
-------------------------------------------------------------------
Fri Jun 21 18:00:16 UTC 2013 - dimstar@opensuse.org
@ -3453,7 +3463,7 @@ Thu Aug 18 12:01:05 CEST 2011 - dimstar@opensuse.org
Wed Aug 3 12:22:47 UTC 2011 - andrea@opensuse.org
- split out faces package so that any Display manager other than
gnome with gdm can use it
gnome with gdm can use it
-------------------------------------------------------------------
Mon Jul 25 22:47:06 CEST 2011 - vuntz@opensuse.org
@ -4821,7 +4831,7 @@ Tue Nov 4 12:36:33 CET 2008 - vuntz@novell.com
Sat Oct 4 08:56:24 WST 2008 - mboman@suse.de
- Update to version 2.24.0.1:
+ Fix newly-introduced crash in theme tab (bgo#553541)
+ Fix newly-introduced crash in theme tab (bgo#553541)
-------------------------------------------------------------------
Fri Sep 26 14:57:04 CEST 2008 - vuntz@novell.com
@ -4838,11 +4848,11 @@ Tue Sep 23 12:46:05 CEST 2008 - rodrigo@novell.com
+ Accessibility:
- Improve tooltip wording
+ Appearance:
* when a hidden theme is selected, and therefore becomes visible,
* when a hidden theme is selected, and therefore becomes visible,
create a thumbnail for it (bgo#547301)
* don't fail if the destination files already exist and the user tries
* don't fail if the destination files already exist and the user tries
to overwrite them (bgo#552671)
* set GtkAdjustment page size to 0 to avoid roblems due to newly enforced
* set GtkAdjustment page size to 0 to avoid roblems due to newly enforced
value boundaries in GTK+ 2.14 (bgo#551740)
+ Common:
* properly initialize the callback data (bgo#550263)
@ -4850,7 +4860,7 @@ Tue Sep 23 12:46:05 CEST 2008 - rodrigo@novell.com
* don't advertise startup-notify. The script doesn't support it (bgo#550694)
* use a11y icon instead of searchtool (bgo#550742)
+ Display:
* Use "Mirror Screens" instead of "Cloned Output" in the display of monitors,
* Use "Mirror Screens" instead of "Cloned Output" in the display of monitors,
to be consistent with the corresponding checkbox from the Glade file
* use theme colours for the background (bgo#545117)
+ Keybindings:
@ -4908,7 +4918,7 @@ Thu Aug 28 14:27:42 CEST 2008 - ro@suse.de
- fix build: sound settings are not being built at the moment
(configure does not find CANBERRA)
skip the update-desktop-file if it is not being installed
skip the update-desktop-file if it is not being installed
- vfs-methods have been removed, remove in filelist as well
-------------------------------------------------------------------
@ -4987,13 +4997,13 @@ Fri Apr 25 18:46:50 CEST 2008 - federico@novell.com
-------------------------------------------------------------------
Tue Apr 15 00:41:30 CEST 2008 - ro@suse.de
- added also provides for old name, not just obsoletes
- added also provides for old name, not just obsoletes
-------------------------------------------------------------------
Mon Apr 14 17:43:39 CEST 2008 - rodrigo@suse.de
- Renamed to gnome-control-center, like upstream
- Removed desktop-effects patch, moved to simple-ccsm
- Removed desktop-effects patch, moved to simple-ccsm
-------------------------------------------------------------------
Fri Apr 11 00:33:44 CEST 2008 - maw@suse.de
@ -5037,7 +5047,7 @@ Mon Mar 31 13:00:06 CEST 2008 - rodrigo@suse.de
- Added control-center2-desktop-effects.patch to add compiz
activation GUI to the appearance capplet.
- Finish tagging of patches
- Finish tagging of patches
-------------------------------------------------------------------
Fri Mar 14 04:50:57 CET 2008 - maw@suse.de
@ -5070,14 +5080,14 @@ Mon Feb 4 17:23:13 CET 2008 - rodrigo@suse.de
- Added very much needed dependency for upcoming alpha on
gnome-settings-daemon, a runtime dependency which is not being
picked up in any pattern
picked up in any pattern
-------------------------------------------------------------------
Fri Feb 1 13:06:26 CET 2008 - rodrigo@suse.de
- Update to version 2.21.90:
* http://ftp.acc.umu.se/pub/GNOME/sources/gnome-control-center/2.21/gnome-control-center-2.21.90.news
- Re-enable gnome-patch*
- Re-enable gnome-patch*
-------------------------------------------------------------------
Wed Jan 30 22:02:40 CET 2008 - maw@suse.de
@ -5088,7 +5098,7 @@ Wed Jan 30 22:02:40 CET 2008 - maw@suse.de
-------------------------------------------------------------------
Tue Jan 29 14:14:29 CET 2008 - thoenig@suse.de
- Fix build: Add %dir %{_libdir}/nautilus/extensions-2.0
- Fix build: Add %dir %{_libdir}/nautilus/extensions-2.0
-------------------------------------------------------------------
Tue Jan 29 12:33:00 CET 2008 - rodrigo@suse.de
@ -5096,7 +5106,7 @@ Tue Jan 29 12:33:00 CET 2008 - rodrigo@suse.de
- Updated to 2.21.5:
* http://ftp.gnome.org/pub/GNOME/sources/gnome-control-center/2.21/gnome-control-center-2.21.5.news
- Disabled patches that need rebase
- Removed suse_update_desktop_file for no longer existing files.
- Removed suse_update_desktop_file for no longer existing files.
- Removed gnome-settings-daemon related files
- Disable temporarily gnome-patch-translation*, since it's
complaining about files removed upstream ??
@ -5147,7 +5157,7 @@ Mon Sep 10 22:31:52 CEST 2007 - maw@suse.de
-------------------------------------------------------------------
Mon Sep 10 17:15:01 CEST 2007 - rodrigo@suse.de
- Remove workaround for upstream bug already fixed (#223798)
- Remove workaround for upstream bug already fixed (#223798)
-------------------------------------------------------------------
Thu Sep 6 00:10:45 CEST 2007 - maw@suse.de
@ -5240,12 +5250,12 @@ Fri Aug 31 16:45:10 CEST 2007 - maw@suse.de
Wed Aug 22 17:09:05 CEST 2007 - rodrigo@suse.de
- Patched gnomecc.desktop file to have the control center entry
show up on the traditional menu bar (#260545)
show up on the traditional menu bar (#260545)
-------------------------------------------------------------------
Thu Aug 16 20:31:17 CEST 2007 - rodrigo@suse.de
- Fixed location of gnome-passwd.glade file (#296721)
- Fixed location of gnome-passwd.glade file (#296721)
-------------------------------------------------------------------
Wed Aug 8 18:52:13 CEST 2007 - maw@suse.de
@ -5283,8 +5293,8 @@ Thu Aug 2 23:59:57 CEST 2007 - maw@suse.de
* Show readable_name in cursor theme list instead of name
* Fix mnemonics and customize theme window title
* Fix theme installation
* Update icon cache when installing icon themes
* Prevent some memory leaks
* Update icon cache when installing icon themes
* Prevent some memory leaks
* Add controls for applying suggested backgrounds and/or fonts from
metathemes
* Only show background/font suggestions if they haven't already been
@ -5304,7 +5314,7 @@ Thu Aug 2 23:59:57 CEST 2007 - maw@suse.de
* Remove spurious desktop entries
+ keyboard:
* Improved layout and sorting
* Implement DND in the selected layouts list
* Implement DND in the selected layouts list
* Eliminate up/down buttons in the layout list
+ network:
* Also use new icon in the window title bar
@ -5327,9 +5337,9 @@ Thu Aug 2 23:59:57 CEST 2007 - maw@suse.de
* Prevent cursor themes from being recognized as icon themes
* Read a cursor themes's name from its index.theme file if it has one
* Expand check for empty metatheme color scheme to include blank color scheme
strings
strings
* Add tooltip foreground and background colors to the list of recognized
symbolic colors
symbolic colors
+ updated translations
- Remove control-center2-dont-update-mimedb.patch
- Use %fdupes.
@ -5362,14 +5372,14 @@ Mon Jul 9 17:57:09 CEST 2007 - maw@suse.de
- Concomitant with the tarball name change, a number of directories
packaged have been renamed from control-center to
gnome-control-center
- Remove the following upstreamed patches:
- Remove the following upstreamed patches:
* control-center2-217790-sanitize-dpi.diff
* control-center2-compiz-keybindings.patch
* control-center2-static-libslab.patch
* control-center-control-key-events.patch
* control-center-no-x-suse.patch
- Bug fixes, updated translations
- s#%run_ldconfig#/sbin/ldconfig# in the %post and %postun
- s#%run_ldconfig#/sbin/ldconfig# in the %post and %postun
sections.
-------------------------------------------------------------------
@ -5387,7 +5397,7 @@ Tue May 22 12:20:06 CEST 2007 - sbrabec@suse.cz
-------------------------------------------------------------------
Thu May 17 10:19:21 CEST 2007 - rodrigo@suse.de
- Look for gnome-passwd.glade file in the correct dir (#272702)
- Look for gnome-passwd.glade file in the correct dir (#272702)
-------------------------------------------------------------------
Mon May 14 12:53:29 CDT 2007 - maw@suse.de
@ -5404,7 +5414,7 @@ Thu Apr 12 16:00:32 CEST 2007 - rodrigo@suse.de
Tue Apr 10 11:05:17 CEST 2007 - rodrigo@suse.de
- Added patch for building libslab statically.
- Patched schemas file to contain our default values.
- Patched schemas file to contain our default values.
-------------------------------------------------------------------
Thu Apr 5 17:29:51 CEST 2007 - sbrabec@suse.cz
@ -5495,7 +5505,7 @@ Mon Oct 2 22:58:11 CEST 2006 - jhargadon@suse.de
- update to version 2.16.1
- display:
- Never pass negative values for the rates
- Never pass negative values for the rates
- keyboard:
- Make sure 'model' is never NULL
- themus:
@ -5510,7 +5520,7 @@ Thu Sep 14 01:20:29 CEST 2006 - jhargadon@suse.de
- update to versin 2.16.0
- avoid excess strduping
- avoid extra key events processing
- avoid grabbing all keyboard when the key code cannot be retrieved
- avoid grabbing all keyboard when the key code cannot be retrieved
- add missing maximize button
- translation updates
@ -5528,7 +5538,7 @@ Wed Aug 30 23:04:09 CEST 2006 - jhargadon@suse.de
- free 'resolution' string after using it, not before
- fix memory leak
- patches from "generate visible previews first"
- translation updates
- translation updates
-------------------------------------------------------------------
Mon Aug 21 21:57:51 CEST 2006 - jhargadon@suse.de
@ -5641,7 +5651,7 @@ Thu Mar 23 18:16:12 CET 2006 - rodrigo@suse.de
- Updated control-center2-multiple-displays.patch to use the correct
DISPLAY for bonobo-activation, and fixed ultra-quick error dialog
(#156801).
(#156801).
-------------------------------------------------------------------
Thu Mar 23 02:04:32 CET 2006 - federico@novell.com
@ -5795,17 +5805,17 @@ Mon Aug 29 16:19:30 CEST 2005 - rodrigo@suse.de
Mon Aug 22 22:34:20 CEST 2005 - gekker@suse.de
- Update to 2.11.92
- Remove upstreamed theme-thumbnail patch
- Remove upstreamed theme-thumbnail patch
-------------------------------------------------------------------
Mon Aug 22 00:49:33 CEST 2005 - ro@suse.de
- added pangoxft to liblist
- added pangoxft to liblist
-------------------------------------------------------------------
Fri Aug 19 00:12:13 CEST 2005 - gekker@suse.de
- Fix theme-thumbnail
- Fix theme-thumbnail
-------------------------------------------------------------------
Tue Aug 16 19:21:51 CEST 2005 - rodrigo@suse.de
@ -5828,18 +5838,18 @@ Wed Aug 10 15:51:02 CEST 2005 - rodrigo@suse.de
Tue Aug 2 17:11:51 CEST 2005 - gekker@suse.de
- Update to version 2.11.90
- Add scrollkeeper magic
- Add scrollkeeper magic
-------------------------------------------------------------------
Fri Jul 29 16:40:50 CEST 2005 - jpr@suse.de
- Depend on kereberos libs for building
- Depend on kereberos libs for building
-------------------------------------------------------------------
Mon Jul 25 17:01:22 CEST 2005 - gekker@suse.de
- Update to 2.11.6
- Backout fix for (b.g.o309558) fixed bug in xorg-x11
- Backout fix for (b.g.o309558) fixed bug in xorg-x11
-------------------------------------------------------------------
Mon Jul 18 13:16:19 CEST 2005 - sbrabec@suse.cz
@ -5852,7 +5862,7 @@ Mon Jul 18 13:16:19 CEST 2005 - sbrabec@suse.cz
-------------------------------------------------------------------
Fri Jun 17 19:01:16 CEST 2005 - gekker@suse.de
- Update to version 2.11.4
- Update to version 2.11.4
-------------------------------------------------------------------
Wed Jun 1 18:23:06 CEST 2005 - sbrabec@suse.cz
@ -5894,12 +5904,12 @@ Tue Mar 15 14:16:20 CET 2005 - sbrabec@suse.cz
-------------------------------------------------------------------
Thu Mar 10 23:02:29 CET 2005 - gekker@suse.de
- Add new version of the system-proxy-configuration patch (71202).
- Add new version of the system-proxy-configuration patch (71202).
-------------------------------------------------------------------
Thu Mar 10 04:26:13 CET 2005 - gekker@suse.de
- Update to version 2.10.0 (GNOME 2.10).
- Update to version 2.10.0 (GNOME 2.10).
-------------------------------------------------------------------
Mon Feb 28 11:57:11 CET 2005 - sbrabec@suse.cz
@ -5919,12 +5929,12 @@ Fri Feb 18 21:41:24 CET 2005 - clahey@suse.de
-------------------------------------------------------------------
Thu Feb 17 22:25:25 CET 2005 - gekker@suse.de
- add federico's system-proxy-configuration patch
- add federico's system-proxy-configuration patch
-------------------------------------------------------------------
Thu Feb 10 22:28:41 CET 2005 - gekker@suse.de
- Update to version 2.9.91
- Update to version 2.9.91
-------------------------------------------------------------------
Fri Jan 28 16:20:28 CET 2005 - sbrabec@suse.cz
@ -5941,7 +5951,7 @@ Wed Jan 26 17:49:43 CET 2005 - jody@suse.de
-------------------------------------------------------------------
Wed Dec 15 14:05:53 CET 2004 - hvogel@suse.de
- fix desktop file
- fix desktop file
-------------------------------------------------------------------
Fri Oct 29 23:57:44 CEST 2004 - ro@suse.de
@ -5985,7 +5995,7 @@ Tue Sep 07 18:43:30 CEST 2004 - sbrabec@suse.cz
-------------------------------------------------------------------
Mon Sep 6 10:50:17 CEST 2004 - shprasad@suse.de
- Not applying patch6 because it is taken care by gnome-audio.
- Not applying patch6 because it is taken care by gnome-audio.
-------------------------------------------------------------------
Mon Aug 30 18:10:55 CEST 2004 - rml@suse.de
@ -6064,7 +6074,7 @@ Fri Feb 20 15:48:37 CET 2004 - sbrabec@suse.cz
-------------------------------------------------------------------
Thu Feb 12 09:21:41 CET 2004 - hhetter@suse.de
- gconf schema (de-)installation in %post and %postun
- gconf schema (de-)installation in %post and %postun
-------------------------------------------------------------------
Sat Jan 10 11:53:49 CET 2004 - adrian@suse.de
@ -6090,7 +6100,7 @@ Thu Aug 07 16:16:37 CEST 2003 - sbrabec@suse.cz
-------------------------------------------------------------------
Wed Aug 6 10:12:49 CEST 2003 - hhetter@suse.de
- remove prefix clash fix patch
- remove prefix clash fix patch
-------------------------------------------------------------------
Mon Jul 14 15:47:28 CEST 2003 - sbrabec@suse.cz
@ -6106,7 +6116,7 @@ Wed Jun 25 13:03:59 CEST 2003 - sbrabec@suse.cz
-------------------------------------------------------------------
Mon Jun 23 01:06:04 CEST 2003 - ro@suse.de
- package directories
- package directories
-------------------------------------------------------------------
Thu May 15 18:07:17 CEST 2003 - sbrabec@suse.cz
@ -6116,13 +6126,13 @@ Thu May 15 18:07:17 CEST 2003 - sbrabec@suse.cz
-------------------------------------------------------------------
Fri Feb 14 15:50:15 CET 2003 - hhetter@suse.de
- look in /opt/gnome2 for GTK Themes instead of
- look in /opt/gnome2 for GTK Themes instead of
the GTK prefix, to get metathemes to work
-------------------------------------------------------------------
Fri Feb 7 10:01:14 CET 2003 - hhetter@suse.de
- updated to version 2.2.0.1 [GNOME 2.2.0]
- updated to version 2.2.0.1 [GNOME 2.2.0]
-------------------------------------------------------------------
Mon Feb 3 16:23:35 CET 2003 - ro@suse.de
@ -6146,7 +6156,7 @@ Thu Nov 21 16:08:18 CET 2002 - schwab@suse.de
Tue Oct 22 09:24:53 CEST 2002 - hhetter@suse.de
- updated to version 2.0.2.91
- remove wrong docdir
- remove wrong docdir
-------------------------------------------------------------------
Tue Oct 01 16:01:12 CEST 2002 - sbrabec@suse.cz
@ -6169,12 +6179,12 @@ Thu Sep 19 10:54:08 CEST 2002 - sbrabec@suse.cz
Tue Sep 3 09:43:42 CEST 2002 - hhetter@suse.de
- provide option to start xscreensaver-demo from control-center
( Bug Id #18789)
( Bug Id #18789)
-------------------------------------------------------------------
Tue Aug 20 09:52:22 CEST 2002 - hhetter@suse.de
- added prereq: filesystem
- added prereq: filesystem
-------------------------------------------------------------------
Sat Jul 27 18:14:59 CEST 2002 - adrian@suse.de
@ -6184,7 +6194,7 @@ Sat Jul 27 18:14:59 CEST 2002 - adrian@suse.de
-------------------------------------------------------------------
Thu Jun 20 16:50:14 CEST 2002 - hhetter@suse.de
- don't install schemas while make install
- don't install schemas while make install
-------------------------------------------------------------------
Tue Jun 18 16:17:48 CEST 2002 - meissner@suse.de
@ -6195,18 +6205,18 @@ Tue Jun 18 16:17:48 CEST 2002 - meissner@suse.de
Tue Jun 18 11:25:10 CEST 2002 - hhetter@suse.de
- updated to version 2.0.0
- added missing schema file
- added missing schema file
-------------------------------------------------------------------
Fri Jun 14 13:35:56 CEST 2002 - hhetter@suse.de
- supply schema files
- supply schema files
-------------------------------------------------------------------
Wed Jun 12 09:56:09 CEST 2002 - hhetter@suse.de
- added control-center gconf schemas and
glade xml files to filelist
glade xml files to filelist
-------------------------------------------------------------------
Wed Jun 5 13:17:36 CEST 2002 - hhetter@suse.de
@ -6216,7 +6226,7 @@ Wed Jun 5 13:17:36 CEST 2002 - hhetter@suse.de
-------------------------------------------------------------------
Fri Apr 26 15:27:53 CEST 2002 - ro@suse.de
- replaced gnome-core2 by gnome-desktop in neededforbuild
- replaced gnome-core2 by gnome-desktop in neededforbuild
-------------------------------------------------------------------
Fri Feb 1 00:26:05 CET 2002 - ro@suse.de
@ -6226,5 +6236,5 @@ Fri Feb 1 00:26:05 CET 2002 - ro@suse.de
-------------------------------------------------------------------
Thu Jan 24 13:34:37 CET 2002 - hhetter@suse.de
- initial SuSE package for GNOME 2.0 platform
- initial SuSE package for GNOME 2.0 platform

View File

@ -36,13 +36,13 @@ License: GPL-2.0+
Group: System/GUI/GNOME
Url: http://www.gnome.org
Source: http://download.gnome.org/sources/gnome-control-center/3.20/%{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.
# PATCH-FEATURE-OPENSUSE gnome-control-center-allow-extra-tools-in-shell.patch fezhang@suse.com -- Add dconf-editor, gnome-tweak-tool, pkg-prefs, itweb-settings, tracker-preferences and Yast to g-c-c.
Patch0: gnome-control-center-allow-extra-tools-in-shell.patch
# PATCH-FEATURE-SLE gnome-control-center-add-alacarte-for-sle.patch badshah400@gmail.com -- Add back alacarte for SLE since they require it for their classic mode, on the other hand for TW and other openSUSE versions it should be enough that alacarte is still available from shell overview, just not in the g-c-c shell. This patch must be applied only if required and then immediately after gnome-control-center-allow-extra-tools-in-shell.patch
Patch100: gnome-control-center-add-alacarte-for-sle.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...
# PATCH-FEATURE-OPENSUSE gnome-control-center-system-proxy-configuration.patch federico@gnome.org -- Integrate openSUSE's network proxy configuration with GNOME's.
Patch14: gnome-control-center-system-proxy-configuration.patch
# PATCH-NEEDS-REBASE gcc-private-connection.patch bnc#751211 bgo#646187 dimstar@opensuse.org -- network: create private connections if the user if not authorized (WAS: PATCH-FIX-UPSTREAM)
Patch15: gcc-private-connection.patch