* 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:
parent
9c670744bd
commit
5cd10607b1
|
@ -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>
|
Fri Dec 09 2005 John (J5) Palmieri <johnp@redhat.com>
|
||||||
|
|
||||||
* libnotify/notifymarshal.[c|h]: new files where GLib callback
|
* libnotify/notifymarshal.[c|h]: new files where GLib callback
|
||||||
|
|
|
@ -47,4 +47,6 @@ test_xy_LDADD = $(common_ldflags)
|
||||||
|
|
||||||
test_xy_stress_LDADD = $(common_ldflags)
|
test_xy_stress_LDADD = $(common_ldflags)
|
||||||
|
|
||||||
INCLUDES = $(PACKAGE_CFLAGS) $(GDK_CFLAGS)
|
INCLUDES = $(PACKAGE_CFLAGS) \
|
||||||
|
$(GDK_CFLAGS) \
|
||||||
|
-I$(top_srcdir)
|
||||||
|
|
|
@ -8,4 +8,5 @@ common_ldflags = \
|
||||||
notify_send_SOURCES = notify-send.c
|
notify_send_SOURCES = notify-send.c
|
||||||
notify_send_LDADD = $(common_ldflags)
|
notify_send_LDADD = $(common_ldflags)
|
||||||
|
|
||||||
INCLUDES = $(PACKAGE_CFLAGS)
|
INCLUDES = $(PACKAGE_CFLAGS) \
|
||||||
|
-I$(top_srcdir)
|
||||||
|
|
|
@ -43,7 +43,6 @@ main(int argc, const char **argv)
|
||||||
poptContext opt_ctx;
|
poptContext opt_ctx;
|
||||||
const char **args;
|
const char **args;
|
||||||
NotifyNotification *notify;
|
NotifyNotification *notify;
|
||||||
GError *error = NULL;
|
|
||||||
|
|
||||||
g_type_init ();
|
g_type_init ();
|
||||||
|
|
||||||
|
@ -135,7 +134,7 @@ main(int argc, const char **argv)
|
||||||
notify_notification_set_urgency (notify, urgency);
|
notify_notification_set_urgency (notify, urgency);
|
||||||
notify_notification_set_timeout (notify, expire_timeout);
|
notify_notification_set_timeout (notify, expire_timeout);
|
||||||
|
|
||||||
notify_notification_show (notify, error);
|
notify_notification_show_and_forget (notify, NULL);
|
||||||
|
|
||||||
poptFreeContext(opt_ctx);
|
poptFreeContext(opt_ctx);
|
||||||
notify_uninit();
|
notify_uninit();
|
||||||
|
|
Loading…
Reference in New Issue