diff options
-rw-r--r-- | ChangeLog | 16 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/session-dbus.c | 2 |
5 files changed, 26 insertions, 3 deletions
@@ -1,5 +1,21 @@ # Generated by Makefile. Do not edit. +2011-04-14 Ted Gould <ted@gould.cx> + + 0.2.17 + +2011-04-14 Ted Gould <ted@gould.cx> + + Don't crash, especially for something so small + +2011-04-13 Ted Gould <ted@gould.cx> + + Attaching bug + +2011-04-13 Ted Gould <ted@gould.cx> + + It sucks that the icon wouldn't change, but eh, not worth aborting over. + 2011-04-07 Ted Gould <ted@gould.cx> 0.2.16 @@ -2882,7 +2882,7 @@ fi # Define the identity of the package. PACKAGE=indicator-session - VERSION=0.2.16 + VERSION=0.2.17 cat >>confdefs.h <<_ACEOF diff --git a/configure.ac b/configure.ac index f6ef2c2..a882555 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_INIT(src/indicator-session.c) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(indicator-session, 0.2.16) +AM_INIT_AUTOMAKE(indicator-session, 0.2.17) AM_MAINTAINER_MODE diff --git a/debian/changelog b/debian/changelog index cfe625a..0c0fdcf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-session (0.2.17-0ubuntu1~ppa1) UNRELEASED; urgency=low + + * New upstream release. + * Don't die if we can't send an image update (LP: #747818) + + -- Ted Gould <ted@ubuntu.com> Thu, 14 Apr 2011 16:04:23 -0500 + indicator-session (0.2.16-0ubuntu1) natty; urgency=low * New upstream release. diff --git a/src/session-dbus.c b/src/session-dbus.c index 3c60a4e..fa9ea54 100644 --- a/src/session-dbus.c +++ b/src/session-dbus.c @@ -247,7 +247,7 @@ session_dbus_set_name (SessionDbus * session, const gchar * name) &error); if (error != NULL) { - g_error("Unable to send IconUpdated signal: %s", error->message); + g_warning("Unable to send IconUpdated signal: %s", error->message); g_error_free(error); return; } |