- 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.
This commit is contained in:
Christian Hammond 2006-07-13 07:43:50 +00:00
parent f3cd7baba9
commit 1d95f7d3c3
4 changed files with 15 additions and 4 deletions

View File

@ -12,3 +12,4 @@ Patch Writers:
Tom Parker <debian@tevp.net>
jensgr@gmx.net
M.S.
mderezynski

View File

@ -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>

View File

@ -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

View File

@ -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);