diff options
author | Ted Gould <ted@gould.cx> | 2011-04-14 16:03:51 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-04-14 16:03:51 -0500 |
commit | 45202574ef59c25b66b07eba42ea780941766aae (patch) | |
tree | 51c81ade4a59a581aed82885131eb0ca3b8d0b69 | |
parent | 15acda177d827fc555d51d360ee1b3170b8bcff5 (diff) | |
parent | f133202143adf833bc8f6de78826a1325932a13e (diff) | |
download | ayatana-indicator-session-45202574ef59c25b66b07eba42ea780941766aae.tar.gz ayatana-indicator-session-45202574ef59c25b66b07eba42ea780941766aae.tar.bz2 ayatana-indicator-session-45202574ef59c25b66b07eba42ea780941766aae.zip |
Import upstream version 0.2.17
-rw-r--r-- | ChangeLog | 16 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/session-dbus.c | 2 |
4 files changed, 19 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/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; } |