prepare 0.16.5 release
This commit is contained in:
parent
16a0b4249e
commit
ea807a1563
|
@ -1,3 +1,9 @@
|
||||||
|
Gajim 0.16.5 (28 December 2015)
|
||||||
|
|
||||||
|
* Improve MAM implementation
|
||||||
|
* Improve security on connexion and for roster managment
|
||||||
|
* Ability for emoticons to be sorted in menu
|
||||||
|
|
||||||
Gajim 0.16.4 (26 September 2015)
|
Gajim 0.16.4 (26 September 2015)
|
||||||
|
|
||||||
* Fix trusting GPG keys
|
* Fix trusting GPG keys
|
||||||
|
|
1
THANKS
1
THANKS
|
@ -35,6 +35,7 @@ Petr Menšík
|
||||||
Sergey Kuleshov
|
Sergey Kuleshov
|
||||||
Stavros Giannouris
|
Stavros Giannouris
|
||||||
Stian B. Barmen
|
Stian B. Barmen
|
||||||
|
Thilo Molitor
|
||||||
Thomas Klein-Hitpaß
|
Thomas Klein-Hitpaß
|
||||||
Urtzi Alfaro
|
Urtzi Alfaro
|
||||||
Witold Kieraś
|
Witold Kieraś
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
gajimversion="0.16.4"
|
gajimversion="0.16.5"
|
||||||
if [ -d ".hg" ]; then
|
if [ -d ".hg" ]; then
|
||||||
node=$(hg tip --template "{node}")
|
node=$(hg tip --template "{node}")
|
||||||
hgversion="-${node:0:12}"
|
hgversion="-${node:0:12}"
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
gajim (0.16.5-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Yann Leboulanger <yann@leboulanger.org> Sun, 28 Dec 2015 13:36:41 +0200
|
||||||
|
|
||||||
gajim (0.16.4-1) unstable; urgency=low
|
gajim (0.16.4-1) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
|
@ -213,7 +213,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.16.4"
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.16.5"
|
||||||
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"
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@ options = {
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Gajim',
|
name='Gajim',
|
||||||
version='0.16.4',
|
version='0.16.5',
|
||||||
description='A full featured Jabber client',
|
description='A full featured Jabber client',
|
||||||
author='Gajim Development Team',
|
author='Gajim Development Team',
|
||||||
url='http://gajim.org/',
|
url='http://gajim.org/',
|
||||||
|
|
|
@ -27,7 +27,7 @@ docdir = '../'
|
||||||
basedir = '../'
|
basedir = '../'
|
||||||
localedir = '../po'
|
localedir = '../po'
|
||||||
|
|
||||||
version = '0.16.4.1'
|
version = '0.16.5'
|
||||||
import subprocess
|
import subprocess
|
||||||
try:
|
try:
|
||||||
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,
|
node = subprocess.Popen('hg tip --template "{node|short}"', shell=True,
|
||||||
|
|
Loading…
Reference in New Issue