- Bumped the version to 0.3.2.

- Added news.
This commit is contained in:
Christian Hammond 2006-01-23 09:20:57 +00:00
parent 18d8f305d0
commit 99048cde1a
4 changed files with 57 additions and 7 deletions

View File

@ -1,3 +1,11 @@
Mon Jan 23 01:20:36 PST 2006 Christian Hammond <chipx86@chipx86.com>
* docs/ChangeLog:
* NEWS:
* configure.ac:
- Bumped the version to 0.3.2.
- Added news.
Mon Jan 23 01:10:23 PST 2006 Christian Hammond <chipx86@chipx86.com>
* libnotify/internal.h:

42
NEWS
View File

@ -1,4 +1,40 @@
libnotify 0.3.0
===
version 0.3.2:
* Added back notify_get_server_info() and notify_get_server_caps().
* Fixed to work with D-BUS 0.36 and higher. However, it's best to note
that due to bugs in versions of the D-BUS GLib bindings before 0.60,
raw image data cannot be sent in notifications. A warning will be
outputted to the console.
* Added assertions to all of the API functions so that invalid data passed
won't crash the calling program.
* Added automatic notification removal for non-expiring notifications and
notifications with actions when the calling application closes.
* Fixed issues where the header files couldn't always be included in
some programs.
* Fixed a lot of compiler errors and warnings.
* Fixed C99 usage.
* Added the ability to set user data on action callbacks on a per-action
basis.
* Fixed notify-send to work without crashing.
* Fixed the library to send messages appropriate to the D-BUS
specification.
* Cleaned up the API a lot.
* Renamed NOTIFY_TIMEOUT_* to NOTIFY_EXPIRES_*.
* Removed notify_notification_show_and_forget().
* Internal changes to remove the number of DBusGProxy connections, and
make sure it's initialized before using any D-BUS GValue-related code.
This fixes raw image sending.
* First release of the new GObject based API and simpler wire protocol
version 0.3.0:
* First release of the new GObject based API and simpler wire protocol
version 0.2.3:
* Fix notify-send to work with icon parameters (bug #4308)
version 0.2.2 (10-August-2005):
* Fixed many run-time issues with PPC and AMD64 (Martin Pitt)
version 0.2.1 (28-July-2005):
* Fixed hint support for D-BUS 0.3x.
version 0.2.0 (28-July-2005):
* Initial public release.

View File

@ -3,10 +3,10 @@ dnl Process this file with autoconf to create configure.
dnl ################################################################
dnl # Initialize autoconf
dnl ################################################################
AC_INIT(libnotify, 0.3.0, chipx86@gnupdate.org)
AC_INIT(libnotify, 0.3.2, chipx86@gnupdate.org)
AC_PREREQ(2.50)
AC_CONFIG_SRCDIR(config.h.in)
AC_COPYRIGHT([Copyright 2004 Christian Hammond])
AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond])
dnl ################################################################
@ -14,7 +14,7 @@ dnl # Version information
dnl ################################################################
LIBGALAGO_MAJOR_VERSION=0
LIBGALAGO_MINOR_VERSION=3
LIBGALAGO_MICRO_VERSION=0
LIBGALAGO_MICRO_VERSION=2
LIBGALAGO_DEVEL_VERSION=0
LIBGALAGO_VERSION=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION
@ -47,7 +47,7 @@ dnl # ? : +1 : ? == internal changes that doesn't break anything.
dnl #
dnl # CURRENT : REVISION : AGE
dnl #
LT_CURRENT=0
LT_CURRENT=1
LT_REVISION=0
LT_AGE=0

View File

@ -1,3 +1,9 @@
Mon Jan 23 01:18:23 PST 2006 Christian Hammond <chipx86@chipx86.com>
* notification-spec.xml:
- Simplified the protocol. Moved around a lot of functions and data.
- Bumped to version 0.9.
Fri Apr 01 09:11:38 PST 2005 Christian Hammond <chipx86@gnupdate.org>
* notification-spec.xml: