aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2011-06-16 17:21:27 -0400
committerBazaar Package Importer <james.westby@ubuntu.com>2011-06-16 17:21:27 -0400
commita16822cf5cf1435e10e34850affcac24687da130 (patch)
tree1aa03a50675abd7110676e6aee3d3dac69f44254 /debian
parent7a20a205c496bed5d7c779ff60a5730b55b60060 (diff)
parent2ada6ebcaa4d92f1e1374c8ad7564c720e5930b2 (diff)
downloadayatana-indicator-sound-a16822cf5cf1435e10e34850affcac24687da130.tar.gz
ayatana-indicator-sound-a16822cf5cf1435e10e34850affcac24687da130.tar.bz2
ayatana-indicator-sound-a16822cf5cf1435e10e34850affcac24687da130.zip
* New upstream release.
- "Sound Preferences..." should be "Sound Settings" (LP: #785571) - Not obvious what track info menu item does (LP: #699899) * debian/patches/lp_750823.patch - Dropped patch, merged upstream * debian/control - Updated standards version to 3.9.2 - Cleaned up description to quiet lintian
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog13
-rw-r--r--debian/control8
-rw-r--r--debian/indicator-sound.debhelper.log1
-rw-r--r--debian/patches/lp_750823.patch38
4 files changed, 16 insertions, 44 deletions
diff --git a/debian/changelog b/debian/changelog
index f8c9a98..9694512 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+indicator-sound (0.7.1-0ubuntu1) oneiric; urgency=low
+
+ * New upstream release.
+ - "Sound Preferences..." should be "Sound Settings" (LP: #785571)
+ - Not obvious what track info menu item does (LP: #699899)
+ * debian/patches/lp_750823.patch
+ - Dropped patch, merged upstream
+ * debian/control
+ - Updated standards version to 3.9.2
+ - Cleaned up description to quiet lintian
+
+ -- Ken VanDine <ken.vandine@canonical.com> Thu, 16 Jun 2011 21:21:27 -0400
+
indicator-sound (0.7.0-0ubuntu1) oneiric; urgency=low
* New upstream release.
diff --git a/debian/control b/debian/control
index 02a8467..7d45ccb 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Build-Depends: debhelper (>= 7),
libnotify-dev,
valac-0.12,
dh-autoreconf
-Standards-Version: 3.9.1
+Standards-Version: 3.9.2
Homepage: https://launchpad.net/indicator-sound
Package: indicator-sound
@@ -28,8 +28,6 @@ Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
pulseaudio
-Description: A system sound indicator.
- A system sound indicator which provides easy control of the PulseAudio sound
+Description: System sound indicator.
+ System sound indicator which provides easy control of the PulseAudio sound
daemon.
-
-
diff --git a/debian/indicator-sound.debhelper.log b/debian/indicator-sound.debhelper.log
deleted file mode 100644
index 4b04259..0000000
--- a/debian/indicator-sound.debhelper.log
+++ /dev/null
@@ -1 +0,0 @@
-dh_autoreconf_clean
diff --git a/debian/patches/lp_750823.patch b/debian/patches/lp_750823.patch
deleted file mode 100644
index 837c183..0000000
--- a/debian/patches/lp_750823.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-=== modified file 'src/mpris2-controller.vala'
---- src/mpris2-controller.vala 2011-03-29 10:43:34 +0000
-+++ src/mpris2-controller.vala 2011-04-18 19:02:26 +0000
-@@ -83,13 +83,7 @@
- }
- Variant? meta_v = changed_properties.lookup("Metadata");
- if(meta_v != null){
-- GLib.HashTable<string, Variant?> changed_updates = clean_metadata();
-- PlayerItem metadata = this.owner.custom_items[PlayerController.widget_order.METADATA];
-- metadata.reset ( MetadataMenuitem.attributes_format());
-- metadata.update ( changed_updates,
-- MetadataMenuitem.attributes_format());
-- metadata.property_set_bool ( MENUITEM_PROP_VISIBLE,
-- metadata.populated(MetadataMenuitem.attributes_format()));
-+ Timeout.add (300, this.ensure_correct_metadata);
- }
- Variant? playlist_v = changed_properties.lookup("ActivePlaylist");
- if ( playlist_v != null && this.owner.use_playlists == true ){
-@@ -113,7 +107,17 @@
- title.alter_label (this.mpris2_root.Identity);
- }
- }
--
-+
-+ private bool ensure_correct_metadata(){
-+ GLib.HashTable<string, Variant?> changed_updates = clean_metadata();
-+ PlayerItem metadata = this.owner.custom_items[PlayerController.widget_order.METADATA];
-+ metadata.reset ( MetadataMenuitem.attributes_format());
-+ metadata.update ( changed_updates,
-+ MetadataMenuitem.attributes_format());
-+ metadata.property_set_bool ( MENUITEM_PROP_VISIBLE,
-+ metadata.populated(MetadataMenuitem.attributes_format()));
-+ return false;
-+ }
- private bool ensure_correct_playback_status(){
- //debug("TEST playback status = %s", this.player.PlaybackStatus);
- Transport.State p = (Transport.State)this.determine_play_state(this.player.PlaybackStatus);
-