diff --git a/config.py b/config.py index 55abc955c..3b9aee414 100644 --- a/config.py +++ b/config.py @@ -19,7 +19,7 @@ saveInRoot = False # Version data version = "1.19.1" -tag = "git" +tag = "Stable" expansionName = "February 2016" expansionVersion = "1.1" evemonMinVersion = "4081" diff --git a/eve.db b/eve.db index 2ba492c66..560001fc7 100644 Binary files a/eve.db and b/eve.db differ diff --git a/gui/aboutData.py b/gui/aboutData.py index 9723ad8e5..354c886f0 100644 --- a/gui/aboutData.py +++ b/gui/aboutData.py @@ -29,7 +29,7 @@ developers = ( "blitzmann \t(Sable Blitzmann) (maintainer)", "cncfanatics \t(Sakari Orisi)" , "DarkPhoenix \t(Kadesh Priestess)", - "Darriele \t(Darriele)") + "Darriele \t\t(Darriele)") credits = ( "Entity (Entity) \tCapacitor calculations / EVEAPI python lib / Reverence", "Aurora \t\tMaths", diff --git a/gui/mainFrame.py b/gui/mainFrame.py index 41d7b0077..a7741aa38 100644 --- a/gui/mainFrame.py +++ b/gui/mainFrame.py @@ -326,6 +326,7 @@ class MainFrame(wx.Frame): def ShowAboutBox(self, evt): import eos.config + v = sys.version_info info = wx.AboutDialogInfo() info.Name = "pyfa" info.Version = gui.aboutData.versionString @@ -336,10 +337,10 @@ class MainFrame(wx.Frame): "\n\nLicenses:\n\t" + "\n\t".join(gui.aboutData.licenses) + "\n\nEVE Data: \t" + eos.config.gamedata_version + - "\nPython: \t" + sys.version + + "\nPython: \t\t" + '{}.{}.{}'.format(v.major, v.minor, v.micro) + "\nwxPython: \t" + wx.__version__ + "\nSQLAlchemy: \t" + sqlalchemy.__version__, - 700, wx.ClientDC(self)) + 500, wx.ClientDC(self)) if "__WXGTK__" in wx.PlatformInfo: forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=466425" else: