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>2012-10-30 20:31:43 +0400
committerYann Leboulanger <asterix@lagaule.org>2012-10-30 20:31:43 +0400
commit858fc77a48ae7825ebcfea052b39d16930c58202 (patch)
treed9bd2ec642667dff893a24dd9b3d7ac14388d0d7
parent35a1fe585bcf28ae9588ba63eaa4dffa8adb8faf (diff)
prepare 0.15.2 releasegajim-0.15.2
-rw-r--r--ChangeLog7
-rwxr-xr-xautogen.sh2
-rw-r--r--gajim.nsi2
-rw-r--r--src/common/defs.py2
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 268e637c5..2e77ea766 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Gajim 0.15.2 (30 October 2012)
+
+ * Show punycode encoded urls if they contain non-ascii chars
+ * Fix crash when pressing Esc in chat window
+ * Support Network Manager 0.9
+ * decrypt GPG messages in the correct order
+
Gajim 0.15.1 (29 August 2012)
* Switch from python-farsight to python-farstream
diff --git a/autogen.sh b/autogen.sh
index 64a60db96..cc04b6344 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
- gajimversion="0.15.1"
+ gajimversion="0.15.2"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"
diff --git a/gajim.nsi b/gajim.nsi
index ffaae77db..790730061 100644
--- a/gajim.nsi
+++ b/gajim.nsi
@@ -191,7 +191,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.15.1"
+ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.15.2"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/"
WriteUninstaller "$INSTDIR\Uninstall.exe"
diff --git a/src/common/defs.py b/src/common/defs.py
index 350c3c0ed..b7b711802 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.15.1'
+version = '0.15.2'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,