[Galago-commits] r2877 - in trunk/libnotify: . libnotify
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Thu Jul 13 00:43:55 PDT 2006
Author: chipx86
Date: 2006-07-13 00:43:50 -0700 (Thu, 13 Jul 2006)
New Revision: 2877
Modified:
trunk/libnotify/AUTHORS
trunk/libnotify/ChangeLog
trunk/libnotify/configure.ac
trunk/libnotify/libnotify/notification.c
Log:
- 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.
Modified: trunk/libnotify/AUTHORS
===================================================================
--- trunk/libnotify/AUTHORS 2006-07-12 10:28:07 UTC (rev 2876)
+++ trunk/libnotify/AUTHORS 2006-07-13 07:43:50 UTC (rev 2877)
@@ -12,3 +12,4 @@
Tom Parker <debian at tevp.net>
jensgr at gmx.net
M.S.
+ mderezynski
Modified: trunk/libnotify/ChangeLog
===================================================================
--- trunk/libnotify/ChangeLog 2006-07-12 10:28:07 UTC (rev 2876)
+++ trunk/libnotify/ChangeLog 2006-07-13 07:43:50 UTC (rev 2877)
@@ -1,3 +1,13 @@
+Thu Jul 13 00:41:16 PDT 2006 Christian Hammond <chipx86 at 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 at chipx86.com>
Modified: trunk/libnotify/configure.ac
===================================================================
--- trunk/libnotify/configure.ac 2006-07-12 10:28:07 UTC (rev 2876)
+++ trunk/libnotify/configure.ac 2006-07-13 07:43:50 UTC (rev 2877)
@@ -3,7 +3,7 @@
dnl ################################################################
dnl # Initialize autoconf
dnl ################################################################
-AC_INIT(libnotify, 0.4.2, chipx86 at chipx86.com)
+AC_INIT(libnotify, 0.4.2.90, chipx86 at chipx86.com)
AC_PREREQ(2.50)
AC_CONFIG_SRCDIR(config.h.in)
AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond])
@@ -15,7 +15,7 @@
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
Modified: trunk/libnotify/libnotify/notification.c
===================================================================
--- trunk/libnotify/libnotify/notification.c 2006-07-12 10:28:07 UTC (rev 2876)
+++ trunk/libnotify/libnotify/notification.c 2006-07-13 07:43:50 UTC (rev 2877)
@@ -901,7 +901,7 @@
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 @@
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);
More information about the galago-commits
mailing list