diff options
author | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2009-07-23 19:17:07 -0300 |
---|---|---|
committer | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2009-07-23 19:23:33 -0300 |
commit | d5dec56858acb6035ea4ea141b7206c3af9dc3ef (patch) | |
tree | e8d766bbcd045791c9fc142f160cbfe06d7b1b6d | |
parent | 9721acc268d59a62e3cd1b35c3a876177a99a141 (diff) |
Prepare release 0.1.9telepathy-qt4-0.1.9
-rw-r--r-- | NEWS | 57 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 58 insertions, 1 deletions
@@ -1,3 +1,60 @@ +telepathy-qt4 0.1.9 (2009-07-23) +================================ + +The "never too late" release. + +New API: + +* OptionalInterfaceFactory: Added methods interfaces and optionalInterface + and removed duplicated code in all OptionalInterfaceFactory subclasses. +* Added ContactManager allKnownGroups, addGroup, removeGroup, groupContacts, + addContactsToGroup and removeContactsFromGroup methods. +* Added ContactManager groupAdded, groupRemoved and groupMembersChanged signals. +* Added Contact groups, addToGroup and removeFromGroup methods. +* Added Contact addedToGroup and removedFromGroup signals. + +API changes: + +* Changed ProtocolParameter requiredForRegistration method to + isRequiredForRegistration to make it consistent with other bool returning + getters. + +Enhancements: + +* Changed all classes to follow coding-style. +* Moved documentation to source file for all classes. +* Standardize class definition in all classes: + * Moved public xxxInterface methods definition to the end of the public + methods declaration. + * Added friend struct Private declaration. + * Added Q_DISABLE_COPY(xxx) to all classes that can not be copied. + * Moved Q_DISABLE_COPY(xxx) declaration to the top of the class definition, + before the public keyword. + * Reorder public, protected, SIGNALS declaration as follows: + public + public Q_SLOTS + Q_SIGNALS + protected + protected Q_SLOTS + private Q_SLOTS + private + * Moved friend class xxx definitions to be placed right bellow private keyword. +* ChannelDispatchOperation: Emit invalidated with + TELEPATHY_QT4_ERROR_OBJECT_REMOVED when ChannelDispatchOperation.Finished is + received. +* Added/Improved some documentation. + +Fixes: + +* ClientApproverAdaptor: Use the dbus fully qualified name to get the connection + property (Patch from George Kiagiadakis <kiagiadakis.george@gmail.com>). +* Fixed bug 20268: Connection's selfContact object should initially have no + features. +* Fixed bug 20080: KeyFile: ";" as a list may be mis-parsed. +* Fixed bug 20082: KeyFile: double (and other types?) not correctly tested. +* Fixed bug 20353: No d-pointer in Channel::GroupMemberChangeDetails. +* Fixed bug 20033: Contact / ContactList Group integration. + telepathy-qt4 0.1.8 (2009-06-16) ================================ diff --git a/configure.ac b/configure.ac index a66284e3..64db9053 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ AC_PREREQ([2.59]) m4_define([tp_qt4_major_version], [0]) m4_define([tp_qt4_minor_version], [1]) -m4_define([tp_qt4_micro_version], [8]) +m4_define([tp_qt4_micro_version], [9]) m4_define([tp_qt4_nano_version], [0]) # If library source has changed since last release, increment revision |