Hello community,

here is the log from the commit of package tryton for openSUSE:Factory checked 
in at 2016-10-06 12:48:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tryton (Old)
 and      /work/SRC/openSUSE:Factory/.tryton.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tryton"

Changes:
--------
--- /work/SRC/openSUSE:Factory/tryton/tryton.changes    2016-09-23 
11:32:25.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.tryton.new/tryton.changes       2016-10-06 
12:48:06.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Oct  3 08:49:08 UTC 2016 - [email protected]
+
+- version 3.8.10
+
+-------------------------------------------------------------------

Old:
----
  tryton-3.8.9.tar.gz

New:
----
  tryton-3.8.10.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ tryton.spec ++++++
--- /var/tmp/diff_new_pack.rYp2Gz/_old  2016-10-06 12:48:08.000000000 +0200
+++ /var/tmp/diff_new_pack.rYp2Gz/_new  2016-10-06 12:48:08.000000000 +0200
@@ -19,7 +19,7 @@
 
 %define majorver 3.8
 Name:           tryton
-Version:        %{majorver}.9
+Version:        %{majorver}.10
 Release:        0
 Summary:        The client of the Tryton application platform
 License:        GPL-3.0

++++++ tryton-3.8.9.tar.gz -> tryton-3.8.10.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-3.8.9/CHANGELOG new/tryton-3.8.10/CHANGELOG
--- old/tryton-3.8.9/CHANGELOG  2016-09-03 11:57:46.000000000 +0200
+++ new/tryton-3.8.10/CHANGELOG 2016-10-02 21:09:35.000000000 +0200
@@ -1,3 +1,6 @@
+Version 3.8.10 - 2016-10-02
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.9 - 2016-09-03
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-3.8.9/PKG-INFO new/tryton-3.8.10/PKG-INFO
--- old/tryton-3.8.9/PKG-INFO   2016-09-03 11:57:56.000000000 +0200
+++ new/tryton-3.8.10/PKG-INFO  2016-10-02 21:09:45.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 3.8.9
+Version: 3.8.10
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-3.8.9/tryton/__init__.py 
new/tryton-3.8.10/tryton/__init__.py
--- old/tryton-3.8.9/tryton/__init__.py 2016-08-02 21:59:43.000000000 +0200
+++ new/tryton-3.8.10/tryton/__init__.py        2016-09-03 11:58:23.000000000 
+0200
@@ -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.8.9"
+__version__ = "3.8.10"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-3.8.9/tryton/common/common.py 
new/tryton-3.8.10/tryton/common/common.py
--- old/tryton-3.8.9/tryton/common/common.py    2016-05-10 23:45:48.000000000 
+0200
+++ new/tryton-3.8.10/tryton/common/common.py   2016-10-02 21:09:00.000000000 
+0200
@@ -466,13 +466,19 @@
         win.set_preview_widget(img_preview)
         win.connect('update-preview', update_preview_cb, img_preview)
 
+    if os.name == 'nt':
+        encoding = 'utf-8'
+    else:
+        encoding = sys.getfilesystemencoding()
     button = win.run()
     if button != gtk.RESPONSE_OK:
-        result = False
+        result = None
     elif not multi:
         result = win.get_filename()
+        if result:
+            result = unicode(result, encoding)
     else:
-        result = win.get_filenames()
+        result = [unicode(path, encoding) for path in win.get_filenames()]
     parent.present()
     win.destroy()
     return result
Files old/tryton-3.8.9/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/de_DE/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/de_DE/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/es_AR/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/es_AR/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/es_CO/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/es_CO/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/es_EC/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/es_EC/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/es_ES/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/es_ES/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/es_MX/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/es_MX/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.mo differ
Files old/tryton-3.8.9/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.mo and 
new/tryton-3.8.10/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-3.8.9/tryton/gui/main.py 
new/tryton-3.8.10/tryton/gui/main.py
--- old/tryton-3.8.9/tryton/gui/main.py 2016-05-10 23:45:49.000000000 +0200
+++ new/tryton-3.8.10/tryton/gui/main.py        2016-10-02 21:09:00.000000000 
+0200
@@ -741,9 +741,10 @@
                 False, mode=['tree', 'form'])
         try:
             favorites = RPCExecute('model',
-                self.menu_screen.model_name + '.favorite', 'get')
-        except RPCException:
-            favorites = []
+                self.menu_screen.model_name + '.favorite', 'get',
+                process_exception=False)
+        except Exception:
+            return False
         menu = self.menuitem_favorite.get_submenu()
         if not menu:
             menu = gtk.Menu()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/tryton-3.8.9/tryton/gui/window/view_form/view/calendar_gtk/calendar_.py 
new/tryton-3.8.10/tryton/gui/window/view_form/view/calendar_gtk/calendar_.py
--- old/tryton-3.8.9/tryton/gui/window/view_form/view/calendar_gtk/calendar_.py 
2016-07-04 21:53:02.000000000 +0200
+++ 
new/tryton-3.8.10/tryton/gui/window/view_form/view/calendar_gtk/calendar_.py    
    2016-10-02 21:09:00.000000000 +0200
@@ -91,6 +91,10 @@
             elif not end:
                 all_day = True
 
+            # Skip invalid event
+            if end is not None and start > end:
+                continue
+
             # TODO define color code
             label = '\n'.join(record[attrs['name']].get_client(record)
                 for attrs in self.fields).rstrip()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-3.8.9/tryton.egg-info/PKG-INFO 
new/tryton-3.8.10/tryton.egg-info/PKG-INFO
--- old/tryton-3.8.9/tryton.egg-info/PKG-INFO   2016-09-03 11:57:55.000000000 
+0200
+++ new/tryton-3.8.10/tryton.egg-info/PKG-INFO  2016-10-02 21:09:44.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 3.8.9
+Version: 3.8.10
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to