Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2010-02-23 15:02:09 +0300
committerYann Leboulanger <asterix@lagaule.org>2010-02-23 15:02:09 +0300
commita5081892f645e8b7b9b38feb466945f42c57c07e (patch)
tree788eaf14e49b93f02882b9d4aa3f58df2dd6cc7b
parent55d0afc8a7ac42f8419bd0d59444cbc62b33ee11 (diff)
prepare 0.13.3 releasegajim-0.13.3
-rw-r--r--ChangeLog11
-rw-r--r--configure.ac2
-rw-r--r--gajim.nsi2
-rw-r--r--setup_win32.py2
-rw-r--r--src/common/defs.py2
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'):