* Release 0.3.0

* tests/Makefile.am, tools/Makefile.am: patch from Rodney
  Dawes <dobey at novell.com> fixing make distcheck

* tools/notify-send.c: use show_and_forget
This commit is contained in:
John (J5) Palmieri 2005-12-13 22:42:48 +00:00
parent 9c670744bd
commit 5cd10607b1
4 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,12 @@
Tue Dec 13 2005 John (J5) Palmieri <johnp@redhat.com>
* Release 0.3.0
* tests/Makefile.am, tools/Makefile.am: patch from Rodney
Dawes <dobey at novell.com> fixing make distcheck
* tools/notify-send.c: use show_and_forget
Fri Dec 09 2005 John (J5) Palmieri <johnp@redhat.com>
* libnotify/notifymarshal.[c|h]: new files where GLib callback

View File

@ -47,4 +47,6 @@ test_xy_LDADD = $(common_ldflags)
test_xy_stress_LDADD = $(common_ldflags)
INCLUDES = $(PACKAGE_CFLAGS) $(GDK_CFLAGS)
INCLUDES = $(PACKAGE_CFLAGS) \
$(GDK_CFLAGS) \
-I$(top_srcdir)

View File

@ -8,4 +8,5 @@ common_ldflags = \
notify_send_SOURCES = notify-send.c
notify_send_LDADD = $(common_ldflags)
INCLUDES = $(PACKAGE_CFLAGS)
INCLUDES = $(PACKAGE_CFLAGS) \
-I$(top_srcdir)

View File

@ -43,7 +43,6 @@ main(int argc, const char **argv)
poptContext opt_ctx;
const char **args;
NotifyNotification *notify;
GError *error = NULL;
g_type_init ();
@ -135,7 +134,7 @@ main(int argc, const char **argv)
notify_notification_set_urgency (notify, urgency);
notify_notification_set_timeout (notify, expire_timeout);
notify_notification_show (notify, error);
notify_notification_show_and_forget (notify, NULL);
poptFreeContext(opt_ctx);
notify_uninit();