diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-03-16 16:28:48 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-03-16 16:28:48 -0400 |
commit | e8ef5645b6f5b75fe4e029855b7a3ad8d3f772ea (patch) | |
tree | dce09d9acff6542226da1acf8ec1e32462e694ef /debian | |
parent | c6384725e5580e021a9d6f95685c54dad9619153 (diff) | |
parent | 1058de265dd08b2c3e8dd1c9dff9a21dee40e787 (diff) | |
download | ayatana-indicator-application-e8ef5645b6f5b75fe4e029855b7a3ad8d3f772ea.tar.gz ayatana-indicator-application-e8ef5645b6f5b75fe4e029855b7a3ad8d3f772ea.tar.bz2 ayatana-indicator-application-e8ef5645b6f5b75fe4e029855b7a3ad8d3f772ea.zip |
releasing version 0.2.95-0ubuntu1
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 11 | ||||
-rw-r--r-- | debian/patches/fix-null-string-to-variant-crash.patch | 19 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 11 insertions, 20 deletions
diff --git a/debian/changelog b/debian/changelog index 89cc5e8..076e8a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +indicator-application (0.2.95-0ubuntu1) natty; urgency=low + + * New upstream release. + ∘ Fix ordering of indicators + ∘ No more duplication of indicators on the panel (LP: #708243) + ∘ Using proper object on async call (LP: #734584) + ∘ Protect from the accessible description being NULL. (LP: #724767) + * Drop debian/patches/fix-null-string-to-variant-crash.patch + + -- Ted Gould <ted@ubuntu.com> Wed, 16 Mar 2011 14:50:37 -0500 + indicator-application (0.2.94-0ubuntu2) natty; urgency=low * debian/control, debian/rules: diff --git a/debian/patches/fix-null-string-to-variant-crash.patch b/debian/patches/fix-null-string-to-variant-crash.patch deleted file mode 100644 index ebcad4c..0000000 --- a/debian/patches/fix-null-string-to-variant-crash.patch +++ /dev/null @@ -1,19 +0,0 @@ -=== modified file 'src/application-service-appstore.c' -Index: indicator-application.ubu/src/application-service-appstore.c -=================================================================== ---- indicator-application.ubu.orig/src/application-service-appstore.c 2011-02-25 08:50:32.170749000 -0500 -+++ indicator-application.ubu/src/application-service-appstore.c 2011-02-25 08:53:26.313552982 -0500 -@@ -1238,9 +1238,10 @@ - } - - g_variant_builder_add (&builder, "(sisossss)", app->icon, -- position++, app->dbus_name, app->menu, -- app->icon_theme_path, app->label, -- app->guide, app->icon_desc); -+ position++, app->dbus_name, app->menu, -+ app->icon_theme_path, app->label, -+ app->guide, -+ (app->icon_desc != NULL) ? app->icon_desc : ""); - } - - out = g_variant_builder_end(&builder); diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 8d2cb6b..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -fix-null-string-to-variant-crash.patch |