diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-09 01:34:48 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-09 01:34:48 +0100 |
commit | 4a961c0dc6ec670d064fa9319d33ef04a536f6c6 (patch) | |
tree | cf79707a64dbfbf5add9980eb54e7d167bf148de | |
parent | 23d81901e7725bf67363113bc36a6e171bdb2033 (diff) | |
parent | 8fad2f464a8049c047a5bf31e377398b79871096 (diff) | |
download | poezio-4a961c0dc6ec670d064fa9319d33ef04a536f6c6.tar.gz poezio-4a961c0dc6ec670d064fa9319d33ef04a536f6c6.tar.bz2 poezio-4a961c0dc6ec670d064fa9319d33ef04a536f6c6.tar.xz poezio-4a961c0dc6ec670d064fa9319d33ef04a536f6c6.zip |
Merge branch 'releases'
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | src/connection.py | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -3,7 +3,7 @@ For more detailed changelog, see the roadmap: http://dev.louiz.org/project/poezio/roadmap -* Poezio 0.7.2 - dev +* Poezio 0.7.2 - 08 Nov 2011 - Huge speed improvements in both memory usage, text refresh speed and interface resize. - Chatstate notifications (in private AND in MUCs) @@ -23,13 +23,13 @@ http://dev.louiz.org/project/poezio/roadmap - a *lot* of bugfixes -* Poezio 0.7.1 - 2 Feb 2010 +* Poezio 0.7.1 - 2 Feb 2011 - /status command to globally change the status - /win command now accepts part of tab name as argument - bugfixes -* Poezio 0.7 - 14 jan 2010 +* Poezio 0.7 - 14 jan 2011 Codename ”Koshie & Mathieui” - Library changed from xmpppy to SleekXMPP - Python 3 only diff --git a/src/connection.py b/src/connection.py index f407dfe9..19b2c5e4 100644 --- a/src/connection.py +++ b/src/connection.py @@ -51,7 +51,7 @@ class Connection(sleekxmpp.ClientXMPP): self.register_plugin('xep_0085') if config.get('send_poezio_info', 'true') == 'true': info = {'name':'poezio', - 'version':'0.7.2-dev'} + 'version':'0.7.2'} if config.get('send_os_info', 'true') == 'true': info['os'] = common.get_os_info() self.register_plugin('xep_0092', pconfig=info) |