# HG changeset patch # User Goffi # Date 1357768559 -3600 # Node ID 78ca32cc0b512aae37b19284ce2b54eff4499acb # Parent 07d7c496ece9385d13b5f916597a0c7ce515a18a CHANGELOG + version updates (yes, that's a release \o/) diff -r 07d7c496ece9 -r 78ca32cc0b51 CHANGELOG --- a/CHANGELOG Wed Jan 09 22:50:01 2013 +0100 +++ b/CHANGELOG Wed Jan 09 22:55:59 2013 +0100 @@ -1,5 +1,51 @@ All theses changelog are not exhaustive, please check mercurial repository for more details. +v 0.3.0 (09/01/2013): + - full project moved to AGPL v3+ + - new Logo (Adrien Vigneron) + several other sprites + - quiz game (draft, not finished) + - configuration file + - media separated from main repository + - new Qt frontend: Bellaciao (draft, not usable yet) + - dbus-xml constructor in bridge-constructor (for Qt) + - Primitivus: freedesktop notifications + - new plugin: XEP-0020 (feature negociation) + - new plugin: XEP-0047 (in-band bytestream) + - new plugin: XEP-0095 (stream initiation) + - new experimental plugin: pipe transfer + - jp: name to jid conversion + - database integration (sqlite) + - D-Bus bridge: generic exception management + - core: data storage improved + - radio collective (plugin + Libervia implementation) + - new groupblog, using sat_pubsub + - D-Bus bridge: better dynamically added method management (with introspection) + - status update crash fix (Xavier Maillard) + - misc bugfixes (Emmanuel Gil Peyrot) + - social contract: english translation (Matthieu Rakotojaona) + - many MUC improvments (MUC branch merged mainstream in Wokkel) + - Primitivus: contacts panel improvments: color & icon + statuses + - Primitivus: MUC room are now shown separately + - Primitivus: new entities are added to contacts panel if they send message + - new plugin: text commands (IRC like commands during conversation) + - plugin XEP-0045: nick change, room leaving, subject change, automaticaly change nick on conflict + - MUC privates messages management + - core: added priority management in triggers + trigger can now forbid other triggers execution + - Primitivus is now modal (à la vi) + - new experimental plugin: parrot (repeat text between two entities) + - deprecated plugin: couchsurfing + - Primitivus: incoming files transfer management + - added "Port" parameter in "Connection" + - Libervia: new skin (Adrien Vigneron) + - Libervia: new widgets system + - Libervia: many microblogging (with groups) improvments + - Libervia: XMLUI implementation + - Libervia: parameters management through XMLUI (deactivated for security reasons) + - avatar upload (with Libervia implementation) + - Libervia: disconnection management + - SàT account automatic registration refactored (moved to core + use Prosody) + - misc debug/refactoring + v 0.2.0 (31/05/2011): - new debug command in sat launcher script - core: triggers @@ -19,8 +65,10 @@ - Social contract added (CONTRAT_SOCIAL) \o. - Subscription scheme fixed - new frontend: Libervia \o/ . Put in a separate package + v 0.1.1 (14/01/2011): - bug#1: fixed crash due to dbus.String + v 0.1.0 (12/01/2011): - urwid custom libs split as a new project: "urwid-satext" - files reorganisation @@ -28,6 +76,7 @@ - distutils/distribute installation script - misc bugs fixes - easy way to launch/stop sat (sat & sat stop) + v 0.0.3 (20/08/2010): - multi-profiles - i18n support @@ -38,7 +87,8 @@ - CouchSurfing plugin - XML User Interface - Sortilège replaced by Primitivus - - About boxes & versions numbers now follow SàT core version + - About boxes & versions numbers now follow SàT core version + v 0.0.2 (10/01/2010): - DBus bridge: dynamic exportation of methods (useful for plugins) - new doc: INSTALL and CHANGELOG diff -r 07d7c496ece9 -r 78ca32cc0b51 README --- a/README Wed Jan 09 22:50:01 2013 +0100 +++ b/README Wed Jan 09 22:55:59 2013 +0100 @@ -1,4 +1,4 @@ -SàT v0.2.0D +SàT v0.3.0 (c) Jérôme Poisson aka Goffi 2008, 2009, 2010, 2011, 2012, 2013 SàT is a XMPP (Jabber) client. diff -r 07d7c496ece9 -r 78ca32cc0b51 setup.py --- a/setup.py Wed Jan 09 22:50:01 2013 +0100 +++ b/setup.py Wed Jan 09 22:55:59 2013 +0100 @@ -142,7 +142,7 @@ preinstall_check() setup(name=NAME, - version='0.2.0', + version='0.3.0', description=u'Salut à Toi multi-frontend XMPP client', long_description=u'Salut à Toi (SàT) is a XMPP client based on a daemon/frontend architecture. Its multi-frontends (desktop, web, console interface, CLI, etc) and multi-purposes (instant messaging, microblogging, games, file sharing, etc).', author='Goffi (Jérôme Poisson)', diff -r 07d7c496ece9 -r 78ca32cc0b51 src/core/default_config.py --- a/src/core/default_config.py Wed Jan 09 22:50:01 2013 +0100 +++ b/src/core/default_config.py Wed Jan 09 22:55:59 2013 +0100 @@ -21,7 +21,7 @@ CONST = { 'client_name' : u'SàT (Salut à toi)', - 'client_version' : u'0.2.0D', #Please add 'D' at the end for dev versions + 'client_version' : u'0.3.0', #Please add 'D' at the end for dev versions 'local_dir' : '~/.sat' }