Skip to content
Snippets Groups Projects
Commit 6161fc93 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

prepare 0.12.1 release

parent d63943c4
No related branches found
No related tags found
No related merge requests found
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) Gajim 0.12 (17 December 2008)
* Fix text rendering in notifications * Fix text rendering in notifications
......
AC_INIT([Gajim - A Jabber Instant Messager], 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]) AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.8]) AM_INIT_AUTOMAKE([1.8])
AC_CONFIG_HEADER(config.h) AC_CONFIG_HEADER(config.h)
......
gajim (0.12-1) unstable; urgency=low gajim (0.12.1-1) unstable; urgency=low
* New upstream release. * New upstream release.
* Fix coming back from suspend. Closes: #500523 * Fix coming back from suspend. Closes: #500523
...@@ -15,7 +15,7 @@ gajim (0.12-1) unstable; urgency=low ...@@ -15,7 +15,7 @@ gajim (0.12-1) unstable; urgency=low
* Depends on libc6 for gtkspell.so module * Depends on libc6 for gtkspell.so module
* Build Gajim modules against python2.5 * 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 gajim (0.11.4-1) unstable; urgency=low
......
...@@ -189,7 +189,7 @@ Section "Gajim" SecGajim ...@@ -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" "DisplayName" "Gajim"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "UninstallString" "$INSTDIR\Uninstall.exe" 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" "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/" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/"
WriteUninstaller "$INSTDIR\Uninstall.exe" WriteUninstaller "$INSTDIR\Uninstall.exe"
......
...@@ -35,7 +35,7 @@ from shutil import move, copy, copytree, rmtree ...@@ -35,7 +35,7 @@ from shutil import move, copy, copytree, rmtree
GTK_DIR="/Library/Frameworks/GTK+.framework/Versions/Current" GTK_DIR="/Library/Frameworks/GTK+.framework/Versions/Current"
NAME = 'Gajim' NAME = 'Gajim'
VERSION = '0.12' VERSION = '0.12.1'
DESCRIPTION = 'A full featured Jabber client' DESCRIPTION = 'A full featured Jabber client'
AUTHOR = 'Gajim Development Team' AUTHOR = 'Gajim Development Team'
URL = 'http://www.gajim.org/' URL = 'http://www.gajim.org/'
......
...@@ -71,7 +71,7 @@ opts = { ...@@ -71,7 +71,7 @@ opts = {
setup( setup(
name = 'Gajim', name = 'Gajim',
version = '0.12', version = '0.12.1',
description = 'A full featured Jabber client', description = 'A full featured Jabber client',
author = 'Gajim Development Team', author = 'Gajim Development Team',
url = 'http://www.gajim.org/', url = 'http://www.gajim.org/',
......
...@@ -28,7 +28,7 @@ import re ...@@ -28,7 +28,7 @@ import re
docdir = '../' docdir = '../'
datadir = '../' datadir = '../'
version = '0.12' version = '0.12.1'
import sys, os.path import sys, os.path
for base in ('.', 'common'): for base in ('.', 'common'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment