Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tryton for openSUSE:Factory checked in at 2024-01-03 12:25:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tryton (Old) and /work/SRC/openSUSE:Factory/.tryton.new.28375 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "tryton" Wed Jan 3 12:25:54 2024 rev:20 rq:1135781 version:6.0.33 Changes: -------- --- /work/SRC/openSUSE:Factory/tryton/tryton.changes 2023-11-20 21:19:52.995543061 +0100 +++ /work/SRC/openSUSE:Factory/.tryton.new.28375/tryton.changes 2024-01-03 12:25:58.741649839 +0100 @@ -1,0 +2,5 @@ +Sat Dec 23 17:52:45 UTC 2023 - Axel Braun <axel.braun@gmx.de> + +- Version 6.0.33 - Bugfix Release + +------------------------------------------------------------------- Old: ---- tryton-6.0.31.tar.gz tryton-6.0.31.tar.gz.asc New: ---- tryton-6.0.33.tar.gz tryton-6.0.33.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tryton.spec ++++++ --- /var/tmp/diff_new_pack.drsvCh/_old 2024-01-03 12:25:59.705685062 +0100 +++ /var/tmp/diff_new_pack.drsvCh/_new 2024-01-03 12:25:59.705685062 +0100 @@ -19,7 +19,7 @@ %define majorver 6.0 Name: tryton -Version: %{majorver}.31 +Version: %{majorver}.33 Release: 0 Summary: The client of the Tryton application platform License: GPL-3.0-or-later ++++++ tryton-6.0.31.tar.gz -> tryton-6.0.33.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/CHANGELOG new/tryton-6.0.33/CHANGELOG --- old/tryton-6.0.31/CHANGELOG 2023-11-17 19:36:49.000000000 +0100 +++ new/tryton-6.0.33/CHANGELOG 2023-12-16 10:52:40.000000000 +0100 @@ -1,4 +1,14 @@ +Version 6.0.33 - 2023-12-16 +--------------------------- +* Bug fixes (see mercurial logs for details) + + +Version 6.0.32 - 2023-12-01 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.31 - 2023-11-17 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/PKG-INFO new/tryton-6.0.33/PKG-INFO --- old/tryton-6.0.31/PKG-INFO 2023-11-17 19:36:51.942645500 +0100 +++ new/tryton-6.0.33/PKG-INFO 2023-12-16 10:52:43.255193500 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tryton -Version: 6.0.31 +Version: 6.0.33 Summary: Tryton desktop client Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/tryton/__init__.py new/tryton-6.0.33/tryton/__init__.py --- old/tryton-6.0.31/tryton/__init__.py 2023-11-03 17:51:21.000000000 +0100 +++ new/tryton-6.0.33/tryton/__init__.py 2023-12-02 00:14:27.000000000 +0100 @@ -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. -__version__ = "6.0.31" +__version__ = "6.0.33" import gi import locale diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/tryton/common/number_entry.py new/tryton-6.0.33/tryton/common/number_entry.py --- old/tryton-6.0.31/tryton/common/number_entry.py 2023-11-14 00:25:48.000000000 +0100 +++ new/tryton-6.0.33/tryton/common/number_entry.py 2023-11-20 12:22:25.000000000 +0100 @@ -53,7 +53,10 @@ value = None if text not in ['-', self.__decimal_point]: try: - value = Decimal(str(locale.atof(text))) + value = locale.atof(text) + if value.is_integer(): + value = int(value) + value = Decimal(str(value)) except (ValueError, InvalidOperation): return position if (value and self.__digits is not None Binary files old/tryton-6.0.31/tryton/data/locale/bg/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/bg/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/ca/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/ca/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/cs/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/cs/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/de/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/de/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/es/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/es/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/et/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/et/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/fa/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/fa/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/fi/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/fi/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/fr/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/fr/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/hu/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/hu/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/id/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/id/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/it/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/it/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/lo/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/lo/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/lt/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/lt/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/nl/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/nl/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/pl/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/pl/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/pt/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/pt/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/ro/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/ro/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/ru/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/ru/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/sl/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/sl/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/tr/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/tr/LC_MESSAGES/tryton.mo differ Binary files old/tryton-6.0.31/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo and new/tryton-6.0.33/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/tryton/gui/window/view_form/model/record.py new/tryton-6.0.33/tryton/gui/window/view_form/model/record.py --- old/tryton-6.0.31/tryton/gui/window/view_form/model/record.py 2023-05-17 23:03:30.000000000 +0200 +++ new/tryton-6.0.33/tryton/gui/window/view_form/model/record.py 2023-12-10 14:02:55.000000000 +0100 @@ -468,6 +468,7 @@ for fieldname, value in later.items(): self.group.fields[fieldname].set(self, value) self._loaded.add(fieldname) + fieldnames.append(fieldname) if validate: self.validate(fieldnames, softvalidation=True) if signal: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/tryton/gui/window/view_form/view/list_gtk/widget.py new/tryton-6.0.33/tryton/gui/window/view_form/view/list_gtk/widget.py --- old/tryton-6.0.31/tryton/gui/window/view_form/view/list_gtk/widget.py 2023-10-18 16:20:58.000000000 +0200 +++ new/tryton-6.0.33/tryton/gui/window/view_form/view/list_gtk/widget.py 2023-12-10 14:04:31.000000000 +0100 @@ -1301,7 +1301,7 @@ states = record.expr_eval(self.attrs.get('states', {})) invisible = states.get('invisible', False) cell.set_property('visible', not invisible) - readonly = states.get('readonly', False) + readonly = record.readonly or states.get('readonly', False) cell.set_property('sensitive', not readonly) parent = record.parent if record else None while parent: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tryton-6.0.31/tryton.egg-info/PKG-INFO new/tryton-6.0.33/tryton.egg-info/PKG-INFO --- old/tryton-6.0.31/tryton.egg-info/PKG-INFO 2023-11-17 19:36:51.000000000 +0100 +++ new/tryton-6.0.33/tryton.egg-info/PKG-INFO 2023-12-16 10:52:42.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: tryton -Version: 6.0.31 +Version: 6.0.33 Summary: Tryton desktop client Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/