Update to 0.7.1

This commit is contained in:
Florent Le Coz 2011-02-02 01:48:46 +01:00
parent 5da23e07d1
commit 7598a9eff9
2 changed files with 2 additions and 4 deletions

View file

@ -2,9 +2,7 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap: For more detailed changelog, see the roadmap:
http://dev.louiz.org/project/poezio/roadmap http://dev.louiz.org/project/poezio/roadmap
* Poezio 0.7.1 - dev * Poezio 0.7.1 - 2 Feb 2010
- Data-forms support
- /configure command in MUCs
- /status command to globally change the status - /status command to globally change the status
- /win command now accepts part of tab name as argument - /win command now accepts part of tab name as argument
- bugfixes - bugfixes

View file

@ -57,7 +57,7 @@ class Connection(sleekxmpp.ClientXMPP):
self.register_plugin('xep_0004') self.register_plugin('xep_0004')
if config.get('send_poezio_info', 'true') == 'true': if config.get('send_poezio_info', 'true') == 'true':
info = {'name':'poezio', info = {'name':'poezio',
'version':'0.7'} 'version':'0.7.1'}
if config.get('send_os_info', 'true') == 'true': if config.get('send_os_info', 'true') == 'true':
info['os'] = common.get_os_info() info['os'] = common.get_os_info()
self.register_plugin('xep_0092', pconfig=info) self.register_plugin('xep_0092', pconfig=info)