Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package tryton for openSUSE:Factory checked 
in at 2022-11-06 12:42:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tryton (Old)
 and      /work/SRC/openSUSE:Factory/.tryton.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tryton"

Sun Nov  6 12:42:57 2022 rev:8 rq:1033826 version:6.0.20

Changes:
--------
--- /work/SRC/openSUSE:Factory/tryton/tryton.changes    2022-10-25 
11:20:45.614236761 +0200
+++ /work/SRC/openSUSE:Factory/.tryton.new.2275/tryton.changes  2022-11-06 
12:43:26.073823300 +0100
@@ -1,0 +2,5 @@
+Sun Nov  6 09:02:25 UTC 2022 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.20 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  tryton-6.0.19.tar.gz

New:
----
  tryton-6.0.20.tar.gz

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

Other differences:
------------------
++++++ tryton.spec ++++++
--- /var/tmp/diff_new_pack.T52RaN/_old  2022-11-06 12:43:26.553826166 +0100
+++ /var/tmp/diff_new_pack.T52RaN/_new  2022-11-06 12:43:26.557826190 +0100
@@ -19,7 +19,7 @@
 
 %define majorver 6.0
 Name:           tryton
-Version:        %{majorver}.19
+Version:        %{majorver}.20
 Release:        0
 Summary:        The client of the Tryton application platform
 License:        GPL-3.0-or-later

++++++ tryton-6.0.19.tar.gz -> tryton-6.0.20.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.19/.hgtags new/tryton-6.0.20/.hgtags
--- old/tryton-6.0.19/.hgtags   2022-10-17 23:40:06.000000000 +0200
+++ new/tryton-6.0.20/.hgtags   2022-11-05 17:11:55.000000000 +0100
@@ -43,3 +43,4 @@
 dd458525c9d4c92eca991b832f06ec46a639c3a4 6.0.17
 40c3f7f6d487197698ac644ef28fa09dbce7e46a 6.0.18
 bd7b3f9a3c2f9cda09c2d5f89ed1c1f92dd78ff3 6.0.19
+4b448222df4c6c37b0223112c0c2c14f09675d34 6.0.20
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.19/CHANGELOG new/tryton-6.0.20/CHANGELOG
--- old/tryton-6.0.19/CHANGELOG 2022-10-17 23:40:05.000000000 +0200
+++ new/tryton-6.0.20/CHANGELOG 2022-11-05 17:11:55.000000000 +0100
@@ -1,3 +1,7 @@
+Version 6.0.20 - 2022-11-05
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.19 - 2022-10-17
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.19/PKG-INFO new/tryton-6.0.20/PKG-INFO
--- old/tryton-6.0.19/PKG-INFO  2022-10-17 23:40:07.634959200 +0200
+++ new/tryton-6.0.20/PKG-INFO  2022-11-05 17:11:57.554916400 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: tryton
-Version: 6.0.19
+Version: 6.0.20
 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.19/tryton/__init__.py 
new/tryton-6.0.20/tryton/__init__.py
--- old/tryton-6.0.19/tryton/__init__.py        2022-09-06 23:27:56.000000000 
+0200
+++ new/tryton-6.0.20/tryton/__init__.py        2022-10-17 23:40:19.000000000 
+0200
@@ -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.19"
+__version__ = "6.0.20"
 import gi
 import locale
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.19/tryton/common/datetime_.py 
new/tryton-6.0.20/tryton/common/datetime_.py
--- old/tryton-6.0.19/tryton/common/datetime_.py        2021-11-02 
18:57:36.000000000 +0100
+++ new/tryton-6.0.20/tryton/common/datetime_.py        2022-10-30 
10:31:26.000000000 +0100
@@ -201,7 +201,6 @@
                 assert isinstance(value, datetime.date), value
             self.__date = value
             self.update_label()
-            self.emit('date-changed')
         elif prop.name == 'format':
             self.__format = _fix_format(value)
             self.update_label()
@@ -374,7 +373,6 @@
                     value = value.time()
             self.__time = value
             self.update_label()
-            self.emit('time-changed')
         elif prop.name == 'format':
             self.__format = _fix_format(value)
             self.update_label()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.19/tryton/common/timedelta.py 
new/tryton-6.0.20/tryton/common/timedelta.py
--- old/tryton-6.0.19/tryton/common/timedelta.py        2021-11-02 
18:57:36.000000000 +0100
+++ new/tryton-6.0.20/tryton/common/timedelta.py        2022-10-30 
10:31:26.000000000 +0100
@@ -70,7 +70,7 @@
         if not any(values[-3:]):
             # Add space if no time
             text += ' '
-        text += ('%.6f' % value)[1:]
+        text += locale.format_string('%.6f', value)[1:]
     return text
 
 
Binary files old/tryton-6.0.19/tryton/data/locale/bg/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/bg/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/ca/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/ca/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/cs/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/cs/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/de/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/de/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/es/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/es/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo 
and new/tryton-6.0.20/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/et/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/et/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/fa/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/fa/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/fi/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/fi/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/fr/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/fr/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/hu/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/hu/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/id/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/id/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/it/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/it/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo 
and new/tryton-6.0.20/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/lo/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/lo/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/lt/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/lt/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/nl/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/nl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/pl/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/pl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/pt/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/pt/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/ro/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/ro/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/ru/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/ru/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/sl/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/sl/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/tr/LC_MESSAGES/tryton.mo and 
new/tryton-6.0.20/tryton/data/locale/tr/LC_MESSAGES/tryton.mo differ
Binary files old/tryton-6.0.19/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo 
and new/tryton-6.0.20/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/tryton-6.0.19/tryton/gui/window/view_form/view/form_gtk/calendar_.py 
new/tryton-6.0.20/tryton/gui/window/view_form/view/form_gtk/calendar_.py
--- old/tryton-6.0.19/tryton/gui/window/view_form/view/form_gtk/calendar_.py    
2022-10-12 19:40:57.000000000 +0200
+++ new/tryton-6.0.20/tryton/gui/window/view_form/view/form_gtk/calendar_.py    
2022-10-30 10:31:26.000000000 +0100
@@ -25,6 +25,8 @@
         self.real_entry.connect('key_press_event', self.sig_key_press)
         self.real_entry.connect('activate', self.sig_activate)
         self.real_entry.connect('changed', lambda _: self.send_modified())
+        self.real_entry.connect(
+            'focus-out-event', lambda *a: self._focus_out())
         self.entry.connect(self._changed_signal, self.changed)
         self.widget.pack_start(self.entry, expand=False, fill=False, padding=0)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tryton-6.0.19/tryton.egg-info/PKG-INFO 
new/tryton-6.0.20/tryton.egg-info/PKG-INFO
--- old/tryton-6.0.19/tryton.egg-info/PKG-INFO  2022-10-17 23:40:06.000000000 
+0200
+++ new/tryton-6.0.20/tryton.egg-info/PKG-INFO  2022-11-05 17:11:56.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: tryton
-Version: 6.0.19
+Version: 6.0.20
 Summary: Tryton desktop client
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to