diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | configure.ac | 8 |
3 files changed, 32 insertions, 5 deletions
@@ -1,5 +1,11 @@ 2007-09-28 Xavier Claessens <xclaesse@gmail.com> + * ChangeLog: + * configure.ac: + * NEWS: Updated for 0.13 release. + +2007-09-28 Xavier Claessens <xclaesse@gmail.com> + * configure.ac: * src/empathy.c: Remove GnomeProgram, not useful anymore, drop libgnome dependency. Fixes bug #442079 @@ -149,7 +155,7 @@ * libempathy-gtk/empathy-contact-list-view.c: * libempathy-gtk/empathy-contact-list-view.h: * doc/libempathy-gtk/tmpl/empathy-contact-list-view.sgml: "interactive" - property on EmpathyContactListView to enable/disable contect menu and + property on EmpathyContactListView to enable/disable context menu and action when double-click on a contact. 2007-09-10 Xavier Claessens <xclaesse@gmail.com> @@ -1,3 +1,24 @@ +NEW in 0.13: +=========== + - Completely reworked ContactList API, new EmpathyContactFactory class. + - Update to new Telepathy avatar spec. + - Dynamic smiley managment and more efficient algorithm to detect smileys in + messages. New EmpathySmileyManager class. + - Adding capabilities contact property for Audio/Video. + - Adding UI to start a VoIP call. Atm it only shows a microphone icon for + contacts supporting voice or video but does not make the call. See + EMPATHY_VOIP branch for more complete support. + - "interactive" property on EmpathyContactListView to enable/disable context + menu and action when double-click on a contact. + - Add 2 properties to EmpathyIdle to activate auto-away and auto-disconnect, + default to off. Only empathy main client will turn them on, like that if + other processes are running with an EmpathyIdle instance they won't change + presence in the same time than Empathy client. + - Cache avatars in ~/.gnome2/Empathy/avatars. + - Adding a test program, useful to use with valgrind. + - Free return value for async DBus calls, they are not owned by dbus-glib. + This fix big leaks. + NEW in 0.12: =========== - Only update the topic of it has really be changed, avoid diplaying many diff --git a/configure.ac b/configure.ac index a24797c38..5c1b281c6 100644 --- a/configure.ac +++ b/configure.ac @@ -18,12 +18,12 @@ AC_HEADER_STDC # (Interfaces removed: CURRENT++, AGE=0, REVISION=0) # (Interfaces added: CURRENT++, AGE++, REVISION=0) # (No interfaces changed: REVISION++) -LIBEMPATHY_CURRENT=2 +LIBEMPATHY_CURRENT=3 LIBEMPATHY_AGE=0 -LIBEMPATHY_REVISION=1 +LIBEMPATHY_REVISION=0 -LIBEMPATHY_GTK_CURRENT=3 -LIBEMPATHY_GTK_AGE=2 +LIBEMPATHY_GTK_CURRENT=4 +LIBEMPATHY_GTK_AGE=0 LIBEMPATHY_GTK_REVISION=0 AC_SUBST(LIBEMPATHY_CURRENT) |