- Fix make distcheck and remove the old RPM spec file.
- Update the news. - Bump the version to 0.4.1.
This commit is contained in:
parent
02442e7e8c
commit
4de529a056
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
========================= 0.4.1 =========================
|
||||
|
||||
Sat Jun 17 18:17:28 PDT 2006 Christian Hammond <chipx86@chipx86.com>
|
||||
|
||||
* Makefile.am:
|
||||
* NEWS:
|
||||
D libnotify.spec.in:
|
||||
* configure.ac:
|
||||
- Fix make distcheck and remove the old RPM spec file.
|
||||
- Update the news.
|
||||
- Bump the version to 0.4.1.
|
||||
|
||||
Thu Jun 15 02:14:14 PDT 2006 Christian Hammond <chipx86@chipx86.com>
|
||||
|
||||
* libnotify/notification.c:
|
||||
|
|
|
@ -6,14 +6,9 @@ pcdatadir = $(libdir)/pkgconfig
|
|||
EXTRA_DIST = \
|
||||
AUTHORS NEWS INSTALL COPYING README \
|
||||
ChangeLog \
|
||||
Doxyfile.in \
|
||||
autogen.sh \
|
||||
configure.ac \
|
||||
libnotify.pc.in \
|
||||
libnotify.spec.in
|
||||
|
||||
dist-hook: libnotify.spec
|
||||
cp libnotify.spec $(distdir)
|
||||
libnotify.pc.in
|
||||
|
||||
$(OBJECTS): libtool
|
||||
libtool: $(LIBTOOL_DEPS)
|
||||
|
|
1
NEWS
1
NEWS
|
@ -1,6 +1,7 @@
|
|||
version 0.4.1:
|
||||
* Added support for attaching to a GtkStatusIcon. Patch by chpe. (Bug #60)
|
||||
* Added GObject properties to NotifyNotification. Patch by chpe. (Bug #60)
|
||||
* Added API documentation, accessible through devhelp.
|
||||
* Fixed up libnotify.pc to support dependencies correctly. (Bug #58)
|
||||
* Fixed notify_uninit() to properly set _initted to FALSE after being
|
||||
called. (Bug #56)
|
||||
|
|
10
configure.ac
10
configure.ac
|
@ -3,7 +3,7 @@ dnl Process this file with autoconf to create configure.
|
|||
dnl ################################################################
|
||||
dnl # Initialize autoconf
|
||||
dnl ################################################################
|
||||
AC_INIT(libnotify, 0.4.0.90, chipx86@chipx86.com)
|
||||
AC_INIT(libnotify, 0.4.1, chipx86@chipx86.com)
|
||||
AC_PREREQ(2.50)
|
||||
AC_CONFIG_SRCDIR(config.h.in)
|
||||
AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond])
|
||||
|
@ -14,8 +14,8 @@ dnl # Version information
|
|||
dnl ################################################################
|
||||
LIBGALAGO_MAJOR_VERSION=0
|
||||
LIBGALAGO_MINOR_VERSION=4
|
||||
LIBGALAGO_MICRO_VERSION=0
|
||||
LIBGALAGO_DEVEL_VERSION=90
|
||||
LIBGALAGO_MICRO_VERSION=1
|
||||
LIBGALAGO_DEVEL_VERSION=0
|
||||
|
||||
LIBGALAGO_VERSION=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION
|
||||
|
||||
|
@ -42,9 +42,9 @@ dnl # ? : +1 : ? == internal changes that doesn't break anything.
|
|||
dnl #
|
||||
dnl # CURRENT : REVISION : AGE
|
||||
dnl #
|
||||
LT_CURRENT=1
|
||||
LT_CURRENT=2
|
||||
LT_REVISION=0
|
||||
LT_AGE=0
|
||||
LT_AGE=1
|
||||
|
||||
LT_RELEASE=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION
|
||||
|
||||
|
|
Loading…
Reference in New Issue