Fix database for icons (using old data), bump for release
This commit is contained in:
@@ -19,7 +19,7 @@ saveInRoot = False
|
||||
|
||||
# Version data
|
||||
version = "1.19.1"
|
||||
tag = "git"
|
||||
tag = "Stable"
|
||||
expansionName = "February 2016"
|
||||
expansionVersion = "1.1"
|
||||
evemonMinVersion = "4081"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user