Hello community,
here is the log from the commit of package gnome-control-center for
openSUSE:Factory checked in at 2017-04-29 10:51:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-control-center (Old)
and /work/SRC/openSUSE:Factory/.gnome-control-center.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-control-center"
Sat Apr 29 10:51:01 2017 rev:152 rq:490927 version:3.24.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2017-03-22 23:07:17.233225989 +0100
+++
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
2017-04-29 10:51:02.341293606 +0200
@@ -1,0 +2,15 @@
+Mon Apr 24 16:56:35 UTC 2017 - [email protected]
+
+- Update to version 3.24.1:
+ + Fix check for existing shortcut settings.
+ + Fix possible crash when exiting Printers panel.
+ + Fix blurry icons in night light dialogue.
+
+-------------------------------------------------------------------
+Thu Apr 13 09:47:27 UTC 2017 - [email protected]
+
+- Add gnome-control-center-more-power-button-actions.patch:
+ Bring back the "shutdown" and "interactive" power key actions in
+ "Power" panel (bsc#993381).
+
+-------------------------------------------------------------------
Old:
----
gnome-control-center-3.24.0.tar.xz
New:
----
gnome-control-center-3.24.1.tar.xz
gnome-control-center-more-power-button-actions.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-control-center.spec ++++++
--- /var/tmp/diff_new_pack.NYBzxw/_old 2017-04-29 10:51:03.501129755 +0200
+++ /var/tmp/diff_new_pack.NYBzxw/_new 2017-04-29 10:51:03.505129190 +0200
@@ -29,7 +29,7 @@
%define with_cacert_patch 0
Name: gnome-control-center
-Version: 3.24.0
+Version: 3.24.1
Release: 0
Summary: The GNOME Control Center
License: GPL-2.0+
@@ -50,6 +50,8 @@
Patch20: gnome-control-center-disable-error-message-for-NM.patch
# PATCH-FIX-OPENSUSE gnome-control-center-info-never-use-gnome-software.patch
bsc#999336 [email protected] -- info: Never search for gnome-software as an
option when checking for updates on SLE and Leap 42.2, because we use
gpk-update-viewer.
Patch21: gnome-control-center-info-never-use-gnome-software.patch
+# PATCH-FIX-OPENSUSE gnome-control-center-more-power-button-actions.patch
bsc#993381 [email protected] -- power: Bring back the "shutdown" and
"interactive" power button actions.
+Patch22: gnome-control-center-more-power-button-actions.patch
BuildRequires: cups-devel
BuildRequires: desktop-file-utils
BuildRequires: fdupes
@@ -215,6 +217,7 @@
%if 0%{?suse_version} == 1315
%patch21 -p1
%endif
+%patch22 -p1
%build
ACLOCAL_FLAGS="-I libgd" NOCONFIGURE=1 gnome-autogen.sh
++++++ gnome-control-center-3.24.0.tar.xz -> gnome-control-center-3.24.1.tar.xz
++++++
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center-3.24.0.tar.xz
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center-3.24.1.tar.xz
differ: char 26, line 1
++++++ gnome-control-center-more-power-button-actions.patch ++++++
diff --git a/panels/power/cc-power-panel.c b/panels/power/cc-power-panel.c
index e631e0b..fed19dd 100644
--- a/panels/power/cc-power-panel.c
+++ b/panels/power/cc-power-panel.c
@@ -2020,9 +2020,11 @@ populate_power_button_model (GtkTreeModel *model)
char *name;
GsdPowerButtonActionType value;
} actions[] = {
- { N_("Suspend"), GSD_POWER_BUTTON_ACTION_SUSPEND },
{ N_("Hibernate"), GSD_POWER_BUTTON_ACTION_HIBERNATE },
- { N_("Nothing"), GSD_POWER_BUTTON_ACTION_NOTHING }
+ { N_("Interactive"), GSD_POWER_BUTTON_ACTION_INTERACTIVE},
+ { N_("Nothing"), GSD_POWER_BUTTON_ACTION_NOTHING },
+ { N_("Shutdown"), GSD_POWER_BUTTON_ACTION_SHUTDOWN },
+ { N_("Suspend"), GSD_POWER_BUTTON_ACTION_SUSPEND }
};
guint i;