aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2011-04-15 17:23:40 -0400
committerKen VanDine <ken.vandine@canonical.com>2011-04-15 17:23:40 -0400
commitd6caaaa548a3ba7d9a82b04fcf692df62769ab62 (patch)
tree9af5b8dd8c00a24035eb301fe3ef7fba66678cc8 /debian
parent1f8270d3e11c19c6b3068ebfc151a258dcf83ef1 (diff)
downloadayatana-indicator-sound-d6caaaa548a3ba7d9a82b04fcf692df62769ab62.tar.gz
ayatana-indicator-sound-d6caaaa548a3ba7d9a82b04fcf692df62769ab62.tar.bz2
ayatana-indicator-sound-d6caaaa548a3ba7d9a82b04fcf692df62769ab62.zip
releasing version 0.6.6.1-0ubuntu2
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rw-r--r--debian/patches/lp_759390.patch14
2 files changed, 21 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 2208384..9ba7e38 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+indicator-sound (0.6.6.1-0ubuntu2) natty; urgency=low
+
+ * debian/patches/lp_759390.patch
+ - Sound Preferences link doesn't work in gnome3 (LP: #759390)
+
+ -- Ken VanDine <ken.vandine@canonical.com> Fri, 15 Apr 2011 17:12:32 -0400
+
indicator-sound (0.6.6.1-0ubuntu1) natty; urgency=low
* New upstream release.
diff --git a/debian/patches/lp_759390.patch b/debian/patches/lp_759390.patch
new file mode 100644
index 0000000..5a63311
--- /dev/null
+++ b/debian/patches/lp_759390.patch
@@ -0,0 +1,14 @@
+=== modified file 'src/sound-service-dbus.c'
+--- src/sound-service-dbus.c 2011-04-01 12:59:32 +0000
++++ src/sound-service-dbus.c 2011-04-13 05:23:24 +0000
+@@ -200,7 +200,8 @@
+ {
+ GError * error = NULL;
+ if (!g_spawn_command_line_async("gnome-volume-control --page=applications", &error) &&
+- !g_spawn_command_line_async("xfce4-mixer", &error))
++ !g_spawn_command_line_async("gnome-control-center sound", &error) &&
++ !g_spawn_command_line_async("xfce4-mixer", &error))
+ {
+ g_warning("Unable to show dialog: %s", error->message);
+ g_error_free(error);
+