More about box changes
This commit is contained in:
@@ -19,15 +19,16 @@
|
|||||||
import config
|
import config
|
||||||
|
|
||||||
versionString = "{0} {1} - {2} {3}".format(config.version, config.tag, config.expansionName, config.expansionVersion)
|
versionString = "{0} {1} - {2} {3}".format(config.version, config.tag, config.expansionName, config.expansionVersion)
|
||||||
license = "pyfa is released under GNU GPLv3"
|
licenses = (
|
||||||
licenseLocation = "gpl.txt"
|
"pyfa is released under GNU GPLv3 - see included gpl.txt",
|
||||||
developers = ("cncfanatics \t(Sakari Orisi)" , "DarkPhoenix \t(Kadesh Priestess)", "Darriele \t(Darriele)", "blitzmann \t(Sable Blitzmann)")
|
"All EVE-Online related materials are property of CCP hf.",
|
||||||
|
"Silk Icons Set by famfamfam.com - Creative Commons Attribution 2.5 License",
|
||||||
|
"Fat Cow Icons by fatcow.com - Creative Commons Attribution 3.0 License"
|
||||||
|
)
|
||||||
|
developers = ("blitzmann \t(Sable Blitzmann)", "cncfanatics \t(Sakari Orisi)" , "DarkPhoenix \t(Kadesh Priestess) (Project Lead)", "Darriele \t(Darriele)")
|
||||||
credits = ("Entity (Entity) \t\tCapacitor calculations / EVEAPI python lib / Reverence", "Aurora \t\t\tMaths", "Corollax (Aamrr) \tVarious EOS / pyfa improvements")
|
credits = ("Entity (Entity) \t\tCapacitor calculations / EVEAPI python lib / Reverence", "Aurora \t\t\tMaths", "Corollax (Aamrr) \tVarious EOS / pyfa improvements")
|
||||||
description = (
|
description = (
|
||||||
"Pyfa (the Python Fitting Assistant) is an open-source standalone application able to "
|
"Pyfa (the Python Fitting Assistant) is an open-source standalone application able to "
|
||||||
"create and simulate fittings for EVE-Online SciFi MMORPG with a very high degree of "
|
"create and simulate fittings for EVE-Online SciFi MMORPG with a very high degree of "
|
||||||
"accuracy. Pyfa can run on all platforms where Python and wxWidgets are supported.\n\n"
|
"accuracy. Pyfa can run on all platforms where Python and wxWidgets are supported."
|
||||||
"All EVE-Online related materials are property of CCP hf.\n"
|
|
||||||
"Silk Icons Set by famfamfam.com released under Creative Commons Attribution 2.5 License\n"
|
|
||||||
"Fat Cow Icons by fatcow.com released under Creative Commons Attribution 3.0 License"
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -247,10 +247,8 @@ class MainFrame(wx.Frame):
|
|||||||
"\n\t".join(gui.aboutData.developers) +
|
"\n\t".join(gui.aboutData.developers) +
|
||||||
"\n\nAdditional credits:\n\t" +
|
"\n\nAdditional credits:\n\t" +
|
||||||
"\n\t".join(gui.aboutData.credits) +
|
"\n\t".join(gui.aboutData.credits) +
|
||||||
"\n\nLicense:\n\t" +
|
"\n\nLicenses:\n\t" +
|
||||||
gui.aboutData.license +
|
"\n\t".join(gui.aboutData.licenses) +
|
||||||
" - see included " +
|
|
||||||
gui.aboutData.licenseLocation +
|
|
||||||
"\n\nPython: \t" + sys.version +
|
"\n\nPython: \t" + sys.version +
|
||||||
"\nwxPython: \t" + wx.__version__ +
|
"\nwxPython: \t" + wx.__version__ +
|
||||||
"\nSQLAlchemy: \t" + sqlalchemy.__version__,
|
"\nSQLAlchemy: \t" + sqlalchemy.__version__,
|
||||||
|
|||||||
Reference in New Issue
Block a user