diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-05-03 16:05:57 -0700 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-05-03 16:05:57 -0700 |
commit | b1e8f00bdfe265bedcfed20be7396e60ed7f74ce (patch) | |
tree | 4829cc75fe2033f8e9e17e0d47584ab442c1f1b9 /debian/patches | |
parent | 314748d2f582c341b93f7353653d6eed116edee3 (diff) | |
download | ayatana-indicator-sound-b1e8f00bdfe265bedcfed20be7396e60ed7f74ce.tar.gz ayatana-indicator-sound-b1e8f00bdfe265bedcfed20be7396e60ed7f74ce.tar.bz2 ayatana-indicator-sound-b1e8f00bdfe265bedcfed20be7396e60ed7f74ce.zip |
releasing version 0.8.5.0-0ubuntu2
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/sound_ubuntustudio.patch | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series index 2e365f2..6439010 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1,3 @@ sound_nua.patch sound_xubuntu.patch +sound_ubuntustudio.patch diff --git a/debian/patches/sound_ubuntustudio.patch b/debian/patches/sound_ubuntustudio.patch new file mode 100644 index 0000000..23d27de --- /dev/null +++ b/debian/patches/sound_ubuntustudio.patch @@ -0,0 +1,18 @@ +Description: Use pavucontrol on Ubuntu Studio by default + Xfce4-mixer uses gstreamer0.10-pulseaudio, which doesn't provide full access + to all audio channels, only to 'Master'. +Author: Lionel Le Folgoc <mrpouit@ubuntu.com> +Author: Janne Jokitalo (astraljava) <astraljava@kapsi.fi> +Last-Update: 2012-04-03 + +--- indicator-sound-0.8.5.0.orig/src/sound-service-dbus.c ++++ indicator-sound-0.8.5.0/src/sound-service-dbus.c +@@ -232,6 +232,8 @@ show_sound_settings_dialog (DbusmenuMenu + cmd = "gnome-control-center sound-nua"; + else if (!g_strcmp0 (g_getenv ("DESKTOP_SESSION"), "xubuntu")) + cmd = "pavucontrol"; ++ else if (!g_strcmp0 (g_getenv ("DESKTOP_SESSION"), "ubuntustudio")) ++ cmd = "pavucontrol"; + else + cmd = "gnome-control-center sound"; + |