prepare 0.16.4 release

This commit is contained in:
Yann Leboulanger 2015-09-26 15:39:01 +02:00
parent 9a5891bb4c
commit 1e510a5884
6 changed files with 19 additions and 7 deletions

View File

@ -1,3 +1,9 @@
Gajim 0.16.4 (26 September 2015)
* Fix trusting GPG keys
* Ability to disable synchronization of logs with server
* Improve MAM usage
Gajim 0.16.3 (31 July 2015)
* Fix reading secret file

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
gajimversion="0.16.3"
gajimversion="0.16.4"
if [ -d ".hg" ]; then
node=$(hg tip --template "{node}")
hgversion="-${node:0:12}"

12
debian/changelog vendored
View File

@ -1,20 +1,26 @@
gajim (0.16.4-1) unstable; urgency=low
* New upstream release
-- Yann Leboulanger <yann@leboulanger.org> Sun, 26 Sep 2015 15:28:29 +0200
gajim (0.16.3-1) unstable; urgency=low
* New upstream release
-- Yann Leboulanger <yann@leboulanger.org> Sat, 31 Jul 2014 23:12:04 +0200
-- Yann Leboulanger <yann@leboulanger.org> Sat, 31 Jul 2015 23:12:04 +0200
gajim (0.16.2-1) unstable; urgency=low
* New upstream release
-- Yann Leboulanger <yann@leboulanger.org> Sat, 24 Jul 2014 22:30:10 +0200
-- Yann Leboulanger <yann@leboulanger.org> Sat, 24 Jul 2015 22:30:10 +0200
gajim (0.16.1-1) unstable; urgency=low
* New upstream release
-- Yann Leboulanger <yann@leboulanger.org> Sat, 28 Feb 2014 22:30:10 +0200
-- Yann Leboulanger <yann@leboulanger.org> Sat, 28 Feb 2015 22:30:10 +0200
gajim (0.16-1) unstable; urgency=low

View File

@ -212,7 +212,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.16.3"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.16.4"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/"
WriteUninstaller "$INSTDIR\Uninstall.exe"

View File

@ -56,7 +56,7 @@ options = {
setup(
name='Gajim',
version='0.16.3',
version='0.16.4',
description='A full featured Jabber client',
author='Gajim Development Team',
url='http://gajim.org/',

View File

@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
version = '0.16.3'
version = '0.16.4'
import subprocess
try:
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,