diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-04-07 15:24:04 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-04-07 15:24:04 -0400 |
commit | 326b4074fa379095309cccb1b4e97d87f3d505a1 (patch) | |
tree | a302e5024ab5942b3c2660e9408e55149e2aefc8 | |
parent | fa469a6593dcda9d4cefe2d9f5a4510102774967 (diff) | |
parent | b5696579e7160deff8e0e1529a87f454ba3c0b6c (diff) | |
download | ayatana-indicator-session-326b4074fa379095309cccb1b4e97d87f3d505a1.tar.gz ayatana-indicator-session-326b4074fa379095309cccb1b4e97d87f3d505a1.tar.bz2 ayatana-indicator-session-326b4074fa379095309cccb1b4e97d87f3d505a1.zip |
releasing version 0.2.16-0ubuntu1
-rw-r--r-- | ChangeLog | 12 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | src/indicator-session.c | 2 |
5 files changed, 22 insertions, 3 deletions
@@ -1,5 +1,17 @@ # Generated by Makefile. Do not edit. +2011-04-07 Ted Gould <ted@gould.cx> + + 0.2.16 + +2011-04-05 Ted Gould <ted@gould.cx> + + Only warn when not getting the proxy, so we don't bring Unity down + +2011-04-04 Ted Gould <ted@gould.cx> + + Removing a g_error so we don't bring the whole kit-and-kaboodle down. + 2011-03-10 Ted Gould <ted@gould.cx> 0.2.15 @@ -2882,7 +2882,7 @@ fi # Define the identity of the package. PACKAGE=indicator-session - VERSION=0.2.15 + VERSION=0.2.16 cat >>confdefs.h <<_ACEOF diff --git a/configure.ac b/configure.ac index 724831f..f6ef2c2 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.15) +AM_INIT_AUTOMAKE(indicator-session, 0.2.16) AM_MAINTAINER_MODE diff --git a/debian/changelog b/debian/changelog index f7694ef..cfe625a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +indicator-session (0.2.16-0ubuntu1) natty; urgency=low + + * New upstream release. + * Don't error and crash Unity (LP: #745323) + + -- Ted Gould <ted@ubuntu.com> Thu, 07 Apr 2011 12:46:00 -0500 + indicator-session (0.2.15-0ubuntu1) natty; urgency=low * New upstream release. diff --git a/src/indicator-session.c b/src/indicator-session.c index 97e2ce9..e8a2f97 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -162,7 +162,7 @@ service_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data) } if (error != NULL) { - g_error("Could not grab DBus proxy for %s: %s", INDICATOR_SESSION_DBUS_NAME, error->message); + g_warning("Could not grab DBus proxy for %s: %s", INDICATOR_SESSION_DBUS_NAME, error->message); g_error_free(error); return; } |