Accepting request 36024 from home:vuntz:branches:GNOME:Factory
Copy from home:vuntz:branches:GNOME:Factory/gnome-settings-daemon via accept of submit request 36024 revision 2. Request was accepted with message: ok OBS-URL: https://build.opensuse.org/request/show/36024 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-settings-daemon?expand=0&rev=59
This commit is contained in:
parent
a2f8ef80f8
commit
f327735514
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c27097f5db4e19926729d961e30ec8e0f7a9c565daa0d2674c4f02d0cb2c8c19
|
||||
size 1223347
|
3
gnome-settings-daemon-2.30.0.tar.bz2
Normal file
3
gnome-settings-daemon-2.30.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb759f2aa403ad10f7b0a196c523fa0b3842cf4432b26a4b308ed1e5bf67e6aa
|
||||
size 1230687
|
@ -1,8 +1,8 @@
|
||||
Index: data/apps_gnome_settings_daemon_keybindings.schemas.in
|
||||
===================================================================
|
||||
--- data/apps_gnome_settings_daemon_keybindings.schemas.in.orig 2010-01-13 02:51:57.000000000 +1100
|
||||
+++ data/apps_gnome_settings_daemon_keybindings.schemas.in 2010-01-13 16:44:53.000000000 +1100
|
||||
@@ -14,6 +14,17 @@
|
||||
--- data/apps_gnome_settings_daemon_keybindings.schemas.in.orig
|
||||
+++ data/apps_gnome_settings_daemon_keybindings.schemas.in
|
||||
@@ -25,6 +25,17 @@
|
||||
</schema>
|
||||
|
||||
<schema>
|
||||
@ -22,25 +22,25 @@ Index: data/apps_gnome_settings_daemon_keybindings.schemas.in
|
||||
<type>string</type>
|
||||
Index: plugins/media-keys/gsd-media-keys-manager.c
|
||||
===================================================================
|
||||
--- plugins/media-keys/gsd-media-keys-manager.c.orig 2010-01-13 02:51:57.000000000 +1100
|
||||
+++ plugins/media-keys/gsd-media-keys-manager.c 2010-01-13 16:44:53.000000000 +1100
|
||||
@@ -636,8 +636,10 @@ do_sound_action (GsdMediaKeysManager *ma
|
||||
--- plugins/media-keys/gsd-media-keys-manager.c.orig
|
||||
+++ plugins/media-keys/gsd-media-keys-manager.c
|
||||
@@ -681,9 +681,11 @@ do_sound_action (GsdMediaKeysManager *ma
|
||||
int type)
|
||||
{
|
||||
gboolean muted;
|
||||
+ gboolean toggle_mute;
|
||||
guint vol, norm_vol_step;
|
||||
int vol_step;
|
||||
gboolean sound_changed;
|
||||
+ GError *error;
|
||||
|
||||
if (manager->priv->stream == NULL)
|
||||
return;
|
||||
@@ -658,7 +660,23 @@ do_sound_action (GsdMediaKeysManager *ma
|
||||
@@ -704,7 +706,21 @@ do_sound_action (GsdMediaKeysManager *ma
|
||||
|
||||
switch (type) {
|
||||
case MUTE_KEY:
|
||||
muted = !muted;
|
||||
- gvc_mixer_stream_change_is_muted (manager->priv->stream, muted);
|
||||
+
|
||||
- muted = !muted;
|
||||
+ error = NULL;
|
||||
+ toggle_mute = gconf_client_get_bool (manager->priv->conf_client,
|
||||
+ GCONF_MISC_DIR "/toggle_mute",
|
||||
@ -52,11 +52,10 @@ Index: plugins/media-keys/gsd-media-keys-manager.c
|
||||
+ }
|
||||
+
|
||||
+ if (toggle_mute)
|
||||
+ gvc_mixer_stream_change_is_muted (manager->priv->stream,
|
||||
+ muted);
|
||||
+ muted = !muted;
|
||||
+ else
|
||||
+ gvc_mixer_stream_change_is_muted (manager->priv->stream,
|
||||
+ TRUE);
|
||||
+ muted = TRUE;
|
||||
+
|
||||
gvc_mixer_stream_change_is_muted (manager->priv->stream, muted);
|
||||
sound_changed = TRUE;
|
||||
break;
|
||||
case VOLUME_DOWN_KEY:
|
||||
if (!muted && (vol <= norm_vol_step)) {
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 29 17:38:21 CEST 2010 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 2.30.0:
|
||||
+ Protect XInput code by ifdefs if XInput isn't available
|
||||
(bgo#611670)
|
||||
+ Don't play a sound when the volume doesn't change (bgo#610001)
|
||||
+ Fix linking with pedantic linkers (bgo#610244)
|
||||
+ Remove unused do_sleep_action function
|
||||
+ Apply all keyboard settings to new keyboards (bgo#610245)
|
||||
+ Ensure the window is realized before we invalidate it
|
||||
(bgo#604918)
|
||||
+ Replace "eject" spawn with GIO code (bgo#580779)
|
||||
+ Don't spawn xrdb (bgo#586276)
|
||||
+ Add translator hint (bgo#613647)
|
||||
+ Disable font plugin by default (bgo#613604)
|
||||
+ Updated translations.
|
||||
- Rebase gnome-settings-daemon-bnc462640-mute-action.patch.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 26 22:58:04 UTC 2010 - sreeves@novell.com
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package gnome-settings-daemon (Version 2.29.92)
|
||||
# spec file for package gnome-settings-daemon (Version 2.30.0)
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -19,7 +19,7 @@
|
||||
|
||||
Name: gnome-settings-daemon
|
||||
%define _name gnome-settings-daemon
|
||||
Version: 2.29.92
|
||||
Version: 2.30.0
|
||||
Release: 1
|
||||
License: GPLv2+
|
||||
Summary: Settings daemon for the GNOME desktop
|
||||
|
Loading…
Reference in New Issue
Block a user