From bf2c68498a2614cad68c261c79b67b2203823fd1 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 23 Feb 2010 13:02:09 +0100 Subject: [PATCH] prepare 0.13.3 release --- ChangeLog | 11 +++++++++-- configure.ac | 2 +- gajim.nsi | 2 +- setup_win32.py | 2 +- src/common/defs.py | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index ab1bfe59a..4f55bffb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,11 @@ -Gajim 0.13.2 ((14 January 2010) +Gajim 0.13.3 (23 February 2010) + + * Fix facebook xmpp server connection + * Fix copy / paste with Ctrl+C on non-latin keyboard + * Fix sending PEP information when connecting + * Fix parsing HTML messages that have ascii markup + +Gajim 0.13.2 (14 January 2010) * Fix some translations * Fix string comparison according to locales @@ -7,7 +14,7 @@ Gajim 0.13.2 ((14 January 2010) * better SRV usage with libasyncns * copy emoticons when we copy / paste in conversations -Gajim 0.13.1 ((28 November 2009) +Gajim 0.13.1 (28 November 2009) * Fix a bug when no account exists and bonjour is not available * Fix a bug when opening advanced option in MUC diff --git a/configure.ac b/configure.ac index 56ebbceb7..d687ab7ba 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([Gajim - A Jabber Instant Messager], - [0.13.2],[http://trac.gajim.org/],[gajim]) + [0.13.3],[http://trac.gajim.org/],[gajim]) AC_PREREQ([2.59]) AC_CONFIG_HEADER(config.h) diff --git a/gajim.nsi b/gajim.nsi index e2ee188cb..c0ca095aa 100644 --- a/gajim.nsi +++ b/gajim.nsi @@ -189,7 +189,7 @@ Section "Gajim" SecGajim WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayName" "Gajim" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "UninstallString" "$INSTDIR\Uninstall.exe" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayIcon" "$INSTDIR\bin\Gajim.exe" - WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13.1" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13.3" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/" WriteUninstaller "$INSTDIR\Uninstall.exe" diff --git a/setup_win32.py b/setup_win32.py index a8cda7a46..beeecfd3c 100644 --- a/setup_win32.py +++ b/setup_win32.py @@ -72,7 +72,7 @@ opts = { setup( name = 'Gajim', - version = '0.13.2', + version = '0.13.3', description = 'A full featured Jabber client', author = 'Gajim Development Team', url = 'http://www.gajim.org/', diff --git a/src/common/defs.py b/src/common/defs.py index a4d8b57f7..38562bff0 100644 --- a/src/common/defs.py +++ b/src/common/defs.py @@ -27,7 +27,7 @@ docdir = '../' datadir = '../' localedir = '../po' -version = '0.13.2' +version = '0.13.3' import sys, os.path for base in ('.', 'common'): -- 2.11.4.GIT