diff -r d47fe28d799a -r 394c130196b0 BeremizIDE.py --- a/BeremizIDE.py Thu Mar 07 16:37:02 2024 +0100 +++ b/BeremizIDE.py Thu Mar 07 21:19:45 2024 +0100 @@ -45,7 +45,7 @@ from editors.TextViewer import TextViewer from editors.ResourceEditor import ConfigurationEditor, ResourceEditor from editors.DataTypeEditor import DataTypeEditor -from util.paths import Bpath +from util.paths import Bpath, ThirdPartyPath from util.MiniTextControler import MiniTextControler from util.BitmapLibrary import GetBitmap from controls.LogViewer import LogViewer @@ -980,6 +980,10 @@ info = wx.adv.AboutDialogInfo() info = version.GetAboutDialogInfo(info) info.Name = "Beremiz" + with open(ThirdPartyPath("revisions.txt")) as f: + revisions=f.read() + info.SetVersion(info.GetVersion(), longVersion=revisions) + info.Description = _("Open Source framework for automation, " "implementing IEC 61131 IDE with constantly growing set of extensions " "and flexible PLC runtime.")