[tryton-debian-vcs] tryton-client branch upstream-3.2 updated. upstream/3.2.5-1-g26f6705
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Dec 4 21:36:43 UTC 2014
The following commit has been merged in the upstream-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=upstream/3.2.5-1-g26f6705
commit 26f6705df5c2af69acc3a5c55a53cfbb7e30052d
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 4 15:31:04 2014 +0100
Adding upstream version 3.2.6.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 58c9719..d696be2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.6 - 2014-12-03
+* Bug fixes (see mercurial logs for details)
+
Version 3.2.5 - 2014-11-06
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index c39b148..bf2cd95 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 3.2.5
+Version: 3.2.6
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton.egg-info/PKG-INFO b/tryton.egg-info/PKG-INFO
index c39b148..bf2cd95 100644
--- a/tryton.egg-info/PKG-INFO
+++ b/tryton.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 3.2.5
+Version: 3.2.6
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton/common/selection.py b/tryton/common/selection.py
index a05ed71..606e342 100644
--- a/tryton/common/selection.py
+++ b/tryton/common/selection.py
@@ -189,4 +189,7 @@ class PopdownMixin(object):
if value:
return False
entry.set_active(active)
+ if active == -1:
+ # When setting no item GTK doesn't clear the entry
+ entry.child.set_text('')
return True
diff --git a/tryton/gui/window/form.py b/tryton/gui/window/form.py
index 59981eb..566a4e4 100644
--- a/tryton/gui/window/form.py
+++ b/tryton/gui/window/form.py
@@ -275,6 +275,7 @@ class Form(SignalEvent, TabContent):
revision = Revision(revisions, revision).run()
# Prevent too old revision in form view
if (self.screen.current_view.view_type == 'form'
+ and revision
and revision < revisions[-1][0]):
revision = revisions[-1][0]
if revision != self.screen.context.get('_datetime'):
diff --git a/tryton/version.py b/tryton/version.py
index c2920f6..64fa695 100644
--- a/tryton/version.py
+++ b/tryton/version.py
@@ -1,6 +1,6 @@
#This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
PACKAGE = "tryton"
-VERSION = "3.2.5"
+VERSION = "3.2.6"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-client
More information about the tryton-debian-vcs
mailing list