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>2013-05-25 22:53:36 +0400
committerYann Leboulanger <asterix@lagaule.org>2013-05-25 22:53:36 +0400
commit96c48693c0e382b4cadff236304a2a99c028209d (patch)
treebf8e722e005d34f40d2361f0fb53afb31fa4f3c3
parentea1d19215324e5a0e9c9a66030ea2937236ad1d0 (diff)
get files from 0.15 branch
-rw-r--r--ChangeLog6
-rwxr-xr-xautogen.sh2
-rw-r--r--gajim.nsi2
-rw-r--r--src/common/defs.py2
4 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f8e73e6be..41912096c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,12 @@ Gajim 0.16 ()
* Support XEP-0224 Attention
* Support XEP-0191 Blocking command
+Gajim 0.15.4 (25 May 2013)
+
+ * Fix usage of OTR plugin
+ * Fix connection to non-SSL server
+ * Fix receiving GPG-encrypted messages while offline.
+
Gajim 0.15.3 (17 March 2013)
* Better handling of SSL errors
diff --git a/autogen.sh b/autogen.sh
index f68eb6f43..8b99755eb 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
- gajimversion="0.15.3"
+ gajimversion="0.15.4"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"
diff --git a/gajim.nsi b/gajim.nsi
index 7471e8d49..e3380bc86 100644
--- a/gajim.nsi
+++ b/gajim.nsi
@@ -200,7 +200,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.3"
+ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.15.4"
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 b6e583c03..8bd5ab163 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.15.3.0'
+version = '0.15.4.0'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,