Fix database for icons (using old data), bump for release

This commit is contained in:
blitzmann
2016-02-10 20:01:21 -05:00
parent df81a146d2
commit 9c67e7dd93
4 changed files with 5 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ saveInRoot = False
# Version data
version = "1.19.1"
tag = "git"
tag = "Stable"
expansionName = "February 2016"
expansionVersion = "1.1"
evemonMinVersion = "4081"

BIN
eve.db

Binary file not shown.

View File

@@ -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",

View File

@@ -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: