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>2008-12-21 16:50:53 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-21 16:50:53 +0300
commit6161fc933a6fab72fcb359476a83f0997205ab18 (patch)
tree283c1f630a3eb9b0d781914494c355711ec8b2e2
parentd63943c47be27aad5efb017af14c75a81160af96 (diff)
prepare 0.12.1 releasegajim-0.12.1
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog4
-rw-r--r--gajim.nsi2
-rw-r--r--setup_osx.py2
-rw-r--r--setup_win32.py2
-rw-r--r--src/common/defs.py2
7 files changed, 14 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 19a5fa40f..2c0637605 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Gajim 0.12.1 (21 December 2008)
+
+ * Fix filetransfer
+ * Updated german translation
+ * Fix click on notifications when text string is empty
+ * Improve systray popup menu
+
Gajim 0.12 (17 December 2008)
* Fix text rendering in notifications
diff --git a/configure.ac b/configure.ac
index c2f2b2646..5f1302b2b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([Gajim - A Jabber Instant Messager],
- [0.12],[http://trac.gajim.org/],[gajim])
+ [0.12.1],[http://trac.gajim.org/],[gajim])
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.8])
AC_CONFIG_HEADER(config.h)
diff --git a/debian/changelog b/debian/changelog
index 962433b31..1db2d4093 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-gajim (0.12-1) unstable; urgency=low
+gajim (0.12.1-1) unstable; urgency=low
* New upstream release.
* Fix coming back from suspend. Closes: #500523
@@ -15,7 +15,7 @@ gajim (0.12-1) unstable; urgency=low
* Depends on libc6 for gtkspell.so module
* Build Gajim modules against python2.5
- -- Yann Leboulanger <asterix@lagaule.org> Wed, 17 Dec 2008 10:02:52 +0100
+ -- Yann Leboulanger <asterix@lagaule.org> Wed, 21 Dec 2008 14:40:16 +0100
gajim (0.11.4-1) unstable; urgency=low
diff --git a/gajim.nsi b/gajim.nsi
index 58955bbe2..1f66a2ed8 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.12"
+ WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.12.1"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/"
WriteUninstaller "$INSTDIR\Uninstall.exe"
diff --git a/setup_osx.py b/setup_osx.py
index 131697fd6..29dabd522 100644
--- a/setup_osx.py
+++ b/setup_osx.py
@@ -35,7 +35,7 @@ from shutil import move, copy, copytree, rmtree
GTK_DIR="/Library/Frameworks/GTK+.framework/Versions/Current"
NAME = 'Gajim'
-VERSION = '0.12'
+VERSION = '0.12.1'
DESCRIPTION = 'A full featured Jabber client'
AUTHOR = 'Gajim Development Team'
URL = 'http://www.gajim.org/'
diff --git a/setup_win32.py b/setup_win32.py
index 4be8a1f14..2643a9a57 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -71,7 +71,7 @@ opts = {
setup(
name = 'Gajim',
- version = '0.12',
+ version = '0.12.1',
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 0b124619a..5d61ee490 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -28,7 +28,7 @@ import re
docdir = '../'
datadir = '../'
-version = '0.12'
+version = '0.12.1'
import sys, os.path
for base in ('.', 'common'):