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>2010-09-02 20:26:05 +0400
committerYann Leboulanger <asterix@lagaule.org>2010-09-02 20:26:05 +0400
commit2f7f54e280f7e9ee898782e37aa2fbe987dfe836 (patch)
treefdfea674a3f25953ac86fc1606877b0e2a181740
parent58efce9d424ef196f2b4512f53ac0467bb95c4a8 (diff)
prepare 0.14 releasegajim-0.14
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog12
-rw-r--r--debian/control2
-rw-r--r--src/common/defs.py2
5 files changed, 13 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index d3679a949..f40dbd8ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Gajim 0.14 (XX)
+Gajim 0.14 (02 September 2010)
* Jingle audio / video chat
* Improve Startup time
diff --git a/configure.ac b/configure.ac
index df2a0c464..dd49d5e92 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([Gajim - A Jabber Instant Messager],
- [0.13.90.1],[http://trac.gajim.org/],[gajim])
+ [0.14],[http://trac.gajim.org/],[gajim])
AC_PREREQ([2.59])
AC_CONFIG_HEADER(config.h)
diff --git a/debian/changelog b/debian/changelog
index 3b3b54192..9fd2f4304 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-gajim (0.13.90-1) unstable; urgency=low
+gajim (0.14-1) unstable; urgency=low
* New upstream release.
-
- -- Yann Leboulanger <asterix@lagaule.org> Sat, 24 Jul 2010 10:25:26 +0200
+ * Correctly sanitize menuentries in chat window action context menu.
+ Closes: #574839
+ * Fix traceback when closing file request dialog. Closes: #587186
+ * Recommand python-openssl >= 0.9. Closes: #594772
+ * Improve a string. Closes: #553527
+ * Fix canceling file transfer. Closes: #587679
+
+ -- Yann Leboulanger <asterix@lagaule.org> Thu, 02 Sep 2010 19:25:26 +0200
gajim (0.13.4-1) unstable; urgency=low
diff --git a/debian/control b/debian/control
index bb0a6d0c2..6ea68095b 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Package: gajim
Architecture: all
XB-Python-Version: ${python:Versions}
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, python-support (>= 0.7.1), python-glade2 (>= 2.12.0), python-gtk2 (>= 2.12.0), dnsutils
-Recommends: dbus, python-dbus, notification-daemon, python-gnupginterface, python-openssl, python-crypto
+Recommends: dbus, python-dbus, notification-daemon, python-gnupginterface, python-openssl (>= 0.9), python-crypto
Suggests: python-gconf, python-gnome2, nautilus-sendto, avahi-daemon, python-avahi, network-manager, libgtkspell0, aspell-en, python-gnomekeyring, gnome-keyring, python-sexy, python-kerberos (>= 1.1), texlive-latex-base, dvipng, python-farsight, gstreamer0.10-plugins-ugly
Description: Jabber client written in PyGTK
Gajim is a Jabber client. It has a tabbed user interface with normal chats,
diff --git a/src/common/defs.py b/src/common/defs.py
index 82eab9c6a..72007d3ce 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
basedir = '../'
localedir = '../po'
-version = '0.13.90.1'
+version = '0.14'
import sys, os.path
for base in ('.', 'common'):