mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
tcf-agent: update its patch's Upstream-Status screen: update its patch's Upstream-Status which (GPLv2): update its patch's Upstream-Status gnome-vfs: update its patch's Upstream-Status libart-lgpl: update its patch's Upstream-Status librsvg: update its patch's Upstream-Status fontconfig: update its patch's Upstream-Status freetype: update its patch's Upstream-Status libxsettings-client: update its patch's Upstream-Status libxcb: update its patch's Upstream-Status libx11: update its patch's Upstream-Status - remove 2 unused xim.patch. libx11-trim: update its patch's Upstream-Status libxcalibrate: update its patch's Upstream-Status libxcomposite: update its patch's Upstream-Status libxfont: update its patch's Upstream-Status xtrans: update its patch's Upstream-Status - remove abstract_socket_fix.patch as it's not used at all for long. calibrateproto: update its patch's Upstream-Status latencytop: update its patch's Upstream-Status powertop: update its patch's Upstream-Status settings-daemon: update its patch's Upstream-Status gnome-settings-daemon: update its patch's Upstream-Status libxklavier: update its patch's Upstream-Status liblbxutil: update its patch's Upstream-Status oprofile: update its patch's Upstream-Status and remove an unused patch - delete xml_callgraph_details.patch as it's not used at all. (From OE-Core rev: 94991fb73586887bfc740eacf190032dfb206a65) Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.7 KiB
Diff
50 lines
1.7 KiB
Diff
Upstream-Status: Pending
|
|
|
|
Index: settings-daemon/settings-daemon.c
|
|
===================================================================
|
|
--- settings-daemon.orig/settings-daemon.c 2009-05-22 14:57:05.000000000 +0100
|
|
+++ settings-daemon/settings-daemon.c 2009-05-22 14:58:22.000000000 +0100
|
|
@@ -187,6 +187,10 @@
|
|
GCONF_VALUE_STRING, translate_string_string },
|
|
{ "/desktop/poky/interface/gtk_color_scheme", "Gtk/ColorScheme",
|
|
GCONF_VALUE_STRING, translate_string_string },
|
|
+ { "/desktop/gnome/sound/theme_name", "Net/SoundThemeName",
|
|
+ GCONF_VALUE_STRING, translate_string_string },
|
|
+ { "/desktop/gnome/sound/event_sounds", "Net/EnableEventSounds" ,
|
|
+ GCONF_VALUE_BOOL, translate_bool_int },
|
|
};
|
|
|
|
static const TranslationEntry*
|
|
Index: settings-daemon/settings-daemon.schemas
|
|
===================================================================
|
|
--- settings-daemon.orig/settings-daemon.schemas 2009-05-22 15:49:17.000000000 +0100
|
|
+++ settings-daemon/settings-daemon.schemas 2009-05-22 15:51:31.000000000 +0100
|
|
@@ -196,6 +196,27 @@
|
|
</locale>
|
|
</schema>
|
|
|
|
+ <schema>
|
|
+ <key>/schemas/desktop/gnome/sound/theme_name</key>
|
|
+ <applyto>/desktop/gnome/sound/theme_name</applyto>
|
|
+ <owner>gnome</owner>
|
|
+ <type>string</type>
|
|
+ <default>freedesktop</default>
|
|
+ <locale name="C">
|
|
+ <short>Sound Theme Name</short>
|
|
+ </locale>
|
|
+ </schema>
|
|
+
|
|
+ <schema>
|
|
+ <key>/schemas/desktop/gnome/sound/event_sounds</key>
|
|
+ <applyto>/desktop/gnome/sound/event_sounds</applyto>
|
|
+ <owner>gnome</owner>
|
|
+ <type>bool</type>
|
|
+ <default>true</default>
|
|
+ <locale name="C">
|
|
+ <short>Enable Sound Events</short>
|
|
+ </locale>
|
|
+ </schema>
|
|
|
|
</schemalist>
|
|
</gconfschemafile>
|