[tryton-debian-vcs] tryton-client branch debian updated. debian/3.6.1-1-3-g7f4d576

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Jul 15 14:16:26 UTC 2015


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=debian/3.6.1-1-3-g7f4d576

commit 7f4d576808919c714a1b9dba1171f8c8008b45f8
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 12:37:46 2015 +0200

    Releasing debian version 3.6.2-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 83a78d7..2983dd5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-client (3.6.2-1) unstable; urgency=medium
+
+  * Adapting section naming in gbp.conf to current git-buildpackage.
+  * Merging upstream version 3.6.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 15 Jul 2015 12:37:46 +0200
+
 tryton-client (3.6.1-1) unstable; urgency=medium
 
   * Updating year of debian copyright.
commit cac30201ff00705563390cc74f688207fa326a73
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 12:37:46 2015 +0200

    Merging upstream version 3.6.2.

diff --git a/CHANGELOG b/CHANGELOG
index 347267e..c6e0f2b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.2 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 3.6.1 - 2015-05-19
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index eb5c5f6..af5290e 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 3.6.1
+Version: 3.6.2
 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 eb5c5f6..af5290e 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.6.1
+Version: 3.6.2
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton/__init__.py b/tryton/__init__.py
index 7d7e270..db5050e 100644
--- a/tryton/__init__.py
+++ b/tryton/__init__.py
@@ -1,3 +1,3 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
-__version__ = "3.6.1"
+__version__ = "3.6.2"
diff --git a/tryton/common/common.py b/tryton/common/common.py
index 11df775..dc27950 100644
--- a/tryton/common/common.py
+++ b/tryton/common/common.py
@@ -1445,7 +1445,7 @@ def resize_pixbuf(pixbuf, width, height):
 
 def _data2pixbuf(data):
     loader = gtk.gdk.PixbufLoader()
-    loader.write(data, len(data))
+    loader.write(bytes(data), len(data))
     loader.close()
     return loader.get_pixbuf()
 
diff --git a/tryton/common/datetime_.py b/tryton/common/datetime_.py
index a6765c6..b1507c4 100644
--- a/tryton/common/datetime_.py
+++ b/tryton/common/datetime_.py
@@ -106,6 +106,7 @@ class Date(gtk.Entry):
             self.__calendar.select_month(
                 self.__date.month - 1, self.__date.year)
             self.__calendar.select_day(self.__date.day)
+        self.__cal_popup.set_transient_for(self.get_toplevel())
         popup_position(self, self.__cal_popup)
         popup_show(self.__cal_popup)
 
diff --git a/tryton/gui/main.py b/tryton/gui/main.py
index 03178e2..7d30662 100644
--- a/tryton/gui/main.py
+++ b/tryton/gui/main.py
@@ -1314,8 +1314,9 @@ class Main(object):
             with open(filename, 'rb') as file_p:
                 data = file_p.read()
             host, port = url.rsplit(':', 1)
+            cast = bytearray if bytes == str else bytes
             rpcprogress = common.RPCProgress('db_exec', (host, int(port),
-                'restore', dbname, passwd, buffer(data), update))
+                'restore', dbname, passwd, cast(data), update))
             try:
                 res = rpcprogress.run(False)
             except TrytonServerError, exception:
-- 
tryton-client



More information about the tryton-debian-vcs mailing list