Changeset 2478

Show
Ignore:
Timestamp:
01/23/06 01:20:57
Author:
chipx86
Message:

- Bumped the version to 0.3.2.
- Added news.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libnotify/ChangeLog

    r2477 r2478  
     1Mon Jan 23 01:20:36 PST 2006  Christian Hammond <chipx86@chipx86.com> 
     2 
     3    * docs/ChangeLog: 
     4    * NEWS: 
     5    * configure.ac: 
     6      - Bumped the version to 0.3.2. 
     7      - Added news. 
     8 
    19Mon Jan 23 01:10:23 PST 2006  Christian Hammond <chipx86@chipx86.com> 
    210 
  • trunk/libnotify/NEWS

    r2383 r2478  
    1 libnotify 0.3.0 
    2 === 
     1version 0.3.2: 
     2    * Added back notify_get_server_info() and notify_get_server_caps(). 
     3    * Fixed to work with D-BUS 0.36 and higher. However, it's best to note 
     4      that due to bugs in versions of the D-BUS GLib bindings before 0.60, 
     5      raw image data cannot be sent in notifications. A warning will be 
     6      outputted to the console. 
     7    * Added assertions to all of the API functions so that invalid data passed 
     8      won't crash the calling program. 
     9    * Added automatic notification removal for non-expiring notifications and 
     10      notifications with actions when the calling application closes. 
     11    * Fixed issues where the header files couldn't always be included in 
     12      some programs. 
     13    * Fixed a lot of compiler errors and warnings. 
     14    * Fixed C99 usage. 
     15    * Added the ability to set user data on action callbacks on a per-action 
     16      basis. 
     17    * Fixed notify-send to work without crashing. 
     18    * Fixed the library to send messages appropriate to the D-BUS 
     19      specification. 
     20    * Cleaned up the API a lot. 
     21    * Renamed NOTIFY_TIMEOUT_* to NOTIFY_EXPIRES_*. 
     22    * Removed notify_notification_show_and_forget(). 
     23    * Internal changes to remove the number of DBusGProxy connections, and 
     24      make sure it's initialized before using any D-BUS GValue-related code. 
     25      This fixes raw image sending. 
    326 
    4 * First release of the new GObject based API and simpler wire protocol 
     27version 0.3.0: 
     28    * First release of the new GObject based API and simpler wire protocol 
     29 
     30version 0.2.3: 
     31    * Fix notify-send to work with icon parameters (bug #4308) 
     32 
     33version 0.2.2 (10-August-2005): 
     34    * Fixed many run-time issues with PPC and AMD64 (Martin Pitt) 
     35 
     36version 0.2.1 (28-July-2005): 
     37    * Fixed hint support for D-BUS 0.3x. 
     38 
     39version 0.2.0 (28-July-2005): 
     40    * Initial public release. 
  • trunk/libnotify/configure.ac

    r2411 r2478  
    44dnl # Initialize autoconf 
    55dnl ################################################################ 
    6 AC_INIT(libnotify, 0.3.0, chipx86@gnupdate.org) 
     6AC_INIT(libnotify, 0.3.2, chipx86@gnupdate.org) 
    77AC_PREREQ(2.50) 
    88AC_CONFIG_SRCDIR(config.h.in) 
    9 AC_COPYRIGHT([Copyright 2004 Christian Hammond]) 
     9AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond]) 
    1010 
    1111 
     
    1515LIBGALAGO_MAJOR_VERSION=0 
    1616LIBGALAGO_MINOR_VERSION=3 
    17 LIBGALAGO_MICRO_VERSION=0 
     17LIBGALAGO_MICRO_VERSION=2 
    1818LIBGALAGO_DEVEL_VERSION=0 
    1919 
     
    4848dnl # CURRENT : REVISION : AGE 
    4949dnl # 
    50 LT_CURRENT=0 
     50LT_CURRENT=1 
    5151LT_REVISION=0 
    5252LT_AGE=0 
  • trunk/libnotify/docs/ChangeLog

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