[tryton-debian-vcs] tryton-client branch debian-jessie-3.4 updated. debian/3.4.10-1-2-gdb080da
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon Aug 8 09:27:31 UTC 2016
The following commit has been merged in the debian-jessie-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=debian/3.4.10-1-2-gdb080da
commit db080da7cf9a15a7347a4f35851dc1234a961574
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 11:59:58 2016 +0200
Releasing debian version 3.4.11-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 2e30ffc..09e7698 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-client (3.4.11-1) unstable; urgency=medium
+
+ * Merging upstream version 3.4.11.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Fri, 05 Aug 2016 11:59:57 +0200
+
tryton-client (3.4.10-1) unstable; urgency=medium
* Merging upstream version 3.4.10.
commit c031137e561520911a60d2d2bffa5a3e8323a5aa
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 11:59:57 2016 +0200
Merging upstream version 3.4.11.
diff --git a/CHANGELOG b/CHANGELOG
index 5fce6be..410cde9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.11 - 2016-08-02
+* Bug fixes (see mercurial logs for details)
+
Version 3.4.10 - 2016-07-04
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 74eded4..b692828 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 3.4.10
+Version: 3.4.11
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 74eded4..b692828 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.4.10
+Version: 3.4.11
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton/gui/window/view_form/model/field.py b/tryton/gui/window/view_form/model/field.py
index 6e89ca7..ee454e0 100644
--- a/tryton/gui/window/view_form/model/field.py
+++ b/tryton/gui/window/view_form/model/field.py
@@ -35,8 +35,6 @@ class Field(object):
self.name = attrs['name']
def sig_changed(self, record):
- if self.get_state_attrs(record).get('readonly', False):
- return
record.on_change([self.name])
record.on_change_with([self.name])
record.autocomplete_with(self.name)
diff --git a/tryton/gui/window/view_form/view/list.py b/tryton/gui/window/view_form/view/list.py
index 602535b..312a86d 100644
--- a/tryton/gui/window/view_form/view/list.py
+++ b/tryton/gui/window/view_form/view/list.py
@@ -1125,8 +1125,8 @@ class ViewTree(View):
def set_cursor(self, new=False, reset_view=True):
self.treeview.grab_focus()
- if self.screen.current_record:
- model = self.treeview.get_model()
+ model = self.treeview.get_model()
+ if self.screen.current_record and model:
path = model.on_get_path(self.screen.current_record)
if model.get_flags() & gtk.TREE_MODEL_LIST_ONLY:
path = (path[0],)
diff --git a/tryton/version.py b/tryton/version.py
index 5e17051..045ec55 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.4.10"
+VERSION = "3.4.11"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-client
More information about the tryton-debian-vcs
mailing list