[tryton-debian-vcs] tryton-neso branch upstream-3.4 updated. upstream/3.4.1-1-g0c23001

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


The following commit has been merged in the upstream-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-neso.git;a=commitdiff;h=upstream/3.4.1-1-g0c23001

commit 0c23001bc114eacb66b98903180a93e7ffeea410
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 14:21:37 2015 +0200

    Adding upstream version 3.4.2.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index f5bb5cb..0adad38 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.2 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 3.4.1 - 2014-12-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index d5217c2..2dd3838 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2009-2014 Cédric Krier.
+Copyright (C) 2009-2015 Cédric Krier.
 Copyright (C) 2009 Bertrand Chenal.
-Copyright (C) 2009-2014 B2CK SPRL.
+Copyright (C) 2009-2015 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index ad13a55..f35e9a9 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.4.1
+Version: 3.4.2
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/bin/neso b/bin/neso
index 72b9a04..3377aed 100755
--- a/bin/neso
+++ b/bin/neso
@@ -73,7 +73,6 @@ for i in ('tryton', 'trytond'):
         sys.path.insert(0, os.path.dirname(DIR))
 
 import tryton.client
-TrytonClient = tryton.client.TrytonClient()
 
 from trytond.config import config
 from tryton.config import get_home_dir
@@ -342,7 +341,13 @@ def DBLogin_run(self):
 
 DBLogin.run = DBLogin_run
 
-TrytonClient.run()
-CRON_RUNNING = False
-thread.join()
-sys.exit(0)
+
+class NesoClient(tryton.client.TrytonClient):
+
+    def quit_mainloop(self):
+        global CRON_RUNNING
+        CRON_RUNNING = False
+        thread.join()
+        super(NesoClient, self).quit_mainloop()
+
+NesoClient().run()
diff --git a/neso.egg-info/PKG-INFO b/neso.egg-info/PKG-INFO
index ad13a55..f35e9a9 100644
--- a/neso.egg-info/PKG-INFO
+++ b/neso.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: neso
-Version: 3.4.1
+Version: 3.4.2
 Summary: Standalone Client/Server for the Tryton Application Platform
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/neso/version.py b/neso/version.py
index efb8d23..87558e1 100644
--- a/neso/version.py
+++ b/neso/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 = "neso"
-VERSION = "3.4.1"
+VERSION = "3.4.2"
 LICENSE = "GPL-3"
 WEBSITE = "http://www.tryton.org/"
-- 
tryton-neso



More information about the tryton-debian-vcs mailing list