summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hammond <chipx86@chipx86.com>2006-07-13 07:43:50 +0000
committerChristian Hammond <chipx86@chipx86.com>2006-07-13 07:43:50 +0000
commit1d95f7d3c317dbc35f44fa4dd45e7b924984f66a (patch)
treea41078f2a3e7c4425c63ff1c3a3828e3aa79134e
parentf3cd7baba9b81e845739b36e688f37be976d7cd1 (diff)
downloadlibnotify-1d95f7d3c317dbc35f44fa4dd45e7b924984f66a.tar.gz
- Patch by mderezynski to send an array of UCHARs as expected by notification-daemon rather than an array of CHARs. This closes ticket #68.
- Bump to version 0.4.2.90.
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog10
-rw-r--r--configure.ac4
-rw-r--r--libnotify/notification.c4
4 files changed, 15 insertions, 4 deletions
diff --git a/AUTHORS b/AUTHORS
index 3cca58b..3ea3dfc 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -12,3 +12,4 @@ Patch Writers:
Tom Parker <debian@tevp.net>
jensgr@gmx.net
M.S.
+ mderezynski
diff --git a/ChangeLog b/ChangeLog
index 909f534..7dc5d09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Thu Jul 13 00:41:16 PDT 2006 Christian Hammond <chipx86@chipx86.com>
+
+ * libnotify/notification.c:
+ * AUTHORS:
+ * configure.ac:
+ - Patch by mderezynski to send an array of UCHARs as expected by
+ notification-daemon rather than an array of CHARs. This closes
+ ticket #68.
+ - Bump to version 0.4.2.90.
+
========================= 0.4.2 =========================
Sat Jun 17 19:17:05 PDT 2006 Christian Hammond <chipx86@chipx86.com>
diff --git a/configure.ac b/configure.ac
index 0a71d96..6c385ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to create configure.
dnl ################################################################
dnl # Initialize autoconf
dnl ################################################################
-AC_INIT(libnotify, 0.4.2, chipx86@chipx86.com)
+AC_INIT(libnotify, 0.4.2.90, chipx86@chipx86.com)
AC_PREREQ(2.50)
AC_CONFIG_SRCDIR(config.h.in)
AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond])
@@ -15,7 +15,7 @@ dnl ################################################################
LIBGALAGO_MAJOR_VERSION=0
LIBGALAGO_MINOR_VERSION=4
LIBGALAGO_MICRO_VERSION=2
-LIBGALAGO_DEVEL_VERSION=0
+LIBGALAGO_DEVEL_VERSION=90
LIBGALAGO_VERSION=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION
diff --git a/libnotify/notification.c b/libnotify/notification.c
index ef47a88..0ad5ee2 100644
--- a/libnotify/notification.c
+++ b/libnotify/notification.c
@@ -901,7 +901,7 @@ _gvalue_array_append_byte_array(GValueArray *array, guchar *bytes, gsize len)
return FALSE;
}
- g_value_init(value, dbus_g_type_get_collection("GArray", G_TYPE_CHAR));
+ g_value_init(value, DBUS_TYPE_G_UCHAR_ARRAY);
g_value_set_boxed_take_ownership(value, byte_array);
g_value_array_append(array, value);
@@ -961,7 +961,7 @@ notify_notification_set_icon_from_pixbuf(NotifyNotification *notification,
value = g_new0(GValue, 1);
g_value_init(value, G_TYPE_VALUE_ARRAY);
- g_value_set_boxed(value, image_struct);
+ g_value_set_boxed_take_ownership(value, image_struct);
g_hash_table_insert(notification->priv->hints,
g_strdup("icon_data"), value);