Fix database for icons (using old data), bump for release
This commit is contained in:
@@ -19,7 +19,7 @@ saveInRoot = False
|
|||||||
|
|
||||||
# Version data
|
# Version data
|
||||||
version = "1.19.1"
|
version = "1.19.1"
|
||||||
tag = "git"
|
tag = "Stable"
|
||||||
expansionName = "February 2016"
|
expansionName = "February 2016"
|
||||||
expansionVersion = "1.1"
|
expansionVersion = "1.1"
|
||||||
evemonMinVersion = "4081"
|
evemonMinVersion = "4081"
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ developers = (
|
|||||||
"blitzmann \t(Sable Blitzmann) (maintainer)",
|
"blitzmann \t(Sable Blitzmann) (maintainer)",
|
||||||
"cncfanatics \t(Sakari Orisi)" ,
|
"cncfanatics \t(Sakari Orisi)" ,
|
||||||
"DarkPhoenix \t(Kadesh Priestess)",
|
"DarkPhoenix \t(Kadesh Priestess)",
|
||||||
"Darriele \t(Darriele)")
|
"Darriele \t\t(Darriele)")
|
||||||
credits = (
|
credits = (
|
||||||
"Entity (Entity) \tCapacitor calculations / EVEAPI python lib / Reverence",
|
"Entity (Entity) \tCapacitor calculations / EVEAPI python lib / Reverence",
|
||||||
"Aurora \t\tMaths",
|
"Aurora \t\tMaths",
|
||||||
|
|||||||
@@ -326,6 +326,7 @@ class MainFrame(wx.Frame):
|
|||||||
|
|
||||||
def ShowAboutBox(self, evt):
|
def ShowAboutBox(self, evt):
|
||||||
import eos.config
|
import eos.config
|
||||||
|
v = sys.version_info
|
||||||
info = wx.AboutDialogInfo()
|
info = wx.AboutDialogInfo()
|
||||||
info.Name = "pyfa"
|
info.Name = "pyfa"
|
||||||
info.Version = gui.aboutData.versionString
|
info.Version = gui.aboutData.versionString
|
||||||
@@ -336,10 +337,10 @@ class MainFrame(wx.Frame):
|
|||||||
"\n\nLicenses:\n\t" +
|
"\n\nLicenses:\n\t" +
|
||||||
"\n\t".join(gui.aboutData.licenses) +
|
"\n\t".join(gui.aboutData.licenses) +
|
||||||
"\n\nEVE Data: \t" + eos.config.gamedata_version +
|
"\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__ +
|
"\nwxPython: \t" + wx.__version__ +
|
||||||
"\nSQLAlchemy: \t" + sqlalchemy.__version__,
|
"\nSQLAlchemy: \t" + sqlalchemy.__version__,
|
||||||
700, wx.ClientDC(self))
|
500, wx.ClientDC(self))
|
||||||
if "__WXGTK__" in wx.PlatformInfo:
|
if "__WXGTK__" in wx.PlatformInfo:
|
||||||
forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=466425"
|
forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=466425"
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user