aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-04-14 16:04:45 -0500
committerTed Gould <ted@gould.cx>2011-04-14 16:04:45 -0500
commitfe3ef8f807a4c338b4d6cbe1f9d9f946cf88469b (patch)
treea948bf30cdb4a44df4975550e073661695063667
parent6653e29647bc15d85014eb55318b189d6f503e59 (diff)
parent45202574ef59c25b66b07eba42ea780941766aae (diff)
downloadayatana-indicator-session-fe3ef8f807a4c338b4d6cbe1f9d9f946cf88469b.tar.gz
ayatana-indicator-session-fe3ef8f807a4c338b4d6cbe1f9d9f946cf88469b.tar.bz2
ayatana-indicator-session-fe3ef8f807a4c338b4d6cbe1f9d9f946cf88469b.zip
* New upstream release.
* Don't die if we can't send an image update (LP: #747818)
-rw-r--r--ChangeLog16
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog7
-rw-r--r--src/session-dbus.c2
5 files changed, 26 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 157e4f9..1b07689 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure b/configure
index 8c5200e..2746054 100755
--- a/configure
+++ b/configure
@@ -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;
}