diff -r 750eeb7230a1 -r c02818d7e29f version.py --- a/version.py Mon Aug 14 22:23:17 2017 +0300 +++ b/version.py Mon Aug 14 22:30:41 2017 +0300 @@ -52,7 +52,7 @@ rev = None except: pass - + # if this is not mercurial repository # try to read revision from file if rev is None: @@ -69,17 +69,17 @@ info.Name = "Beremiz" info.Version = app_version - + info.Copyright = "(C) 2016 Andrey Skvortsov\n" info.Copyright += "(C) 2008-2015 Eduard Tisserant\n" info.Copyright += "(C) 2008-2015 Laurent Bessard" info.WebSite = ("http://beremiz.org", "beremiz.org") - + info.Description = _("Open Source framework for automation, " "implemented IEC 61131 IDE with constantly growing set of extensions " "and flexible PLC runtime.") - + info.Developers = ("Andrey Skvortsov ", "Sergey Surkov ", "Edouard Tisserant ", @@ -124,6 +124,3 @@ rev = GetAppRevision() if rev is not None: app_version = app_version + "-" + rev.rstrip() - - -