Updated aboutData to include ingame nicks, this closes ticket #323

This commit is contained in:
HomeWorld
2010-12-06 15:36:58 +02:00
parent 4a5cdf9204
commit 537a8ec7f0
2 changed files with 3 additions and 3 deletions

View File

@@ -20,6 +20,6 @@
versionString = "1.0 Stable RC1 - INCURSION" versionString = "1.0 Stable RC1 - INCURSION"
license = "pyfa is released under GNU GPL" license = "pyfa is released under GNU GPL"
licenseLocation = "gpl.txt" licenseLocation = "gpl.txt"
developers = ("cncfanatics" , "DarkPhoenix", "Darriele") developers = ("\n cncfanatics \t(Sakari Orisi)\n" , " DarkPhoenix \t(Kadesh Priestess)\n", " Darriele \t(Darriele)")
credits = (("Entity: capacitor calculations"), ("Aurora: maths"), ("Corollax: Various improvements")) credits = (("Entity (Entity) \t\tcapacitor calculations"), ("Aurora \t\tmaths"), ("Corollax (Aamrr) \tVarious improvements"))
description = "pyfa is the Python Fitting Assistant, a standalone application to create fittings for the EVE-Online SciFi MMORPG.\nThe application is available for many platforms, see the download page for further details. The layout of pyfa is heavily based on EFT, the EVE fitting tool. Although it is a complete rewrite and replacement for EFT, the fittings are still compatible with EFT.\n\nAll EVE-Online related materials are property of CCP hf.\n\nSilk Icons Set by famfamfam.com released under Creative Commons Attribution 2.5 License" description = "pyfa is the Python Fitting Assistant, a standalone application to create fittings for the EVE-Online SciFi MMORPG.\nThe application is available for many platforms, see the download page for further details. The layout of pyfa is heavily based on EFT, the EVE fitting tool. Although it is a complete rewrite and replacement for EFT, the fittings are still compatible with EFT.\n\nAll EVE-Online related materials are property of CCP hf.\n\nSilk Icons Set by famfamfam.com released under Creative Commons Attribution 2.5 License"

View File

@@ -203,7 +203,7 @@ class MainFrame(wx.Frame):
info = wx.AboutDialogInfo() info = wx.AboutDialogInfo()
info.Name = "pyfa" info.Name = "pyfa"
info.Version = aboutData.versionString info.Version = aboutData.versionString
info.Description = wordwrap(aboutData.description + "\n\n\nDevelopers: " + ", ".join(aboutData.developers) + "\n\nAdditional credits:\n " + "\n ".join(aboutData.credits) + "\n\nLicense: " + aboutData.license + " - see included " + aboutData.licenseLocation, info.Description = wordwrap(aboutData.description + "\n\n\nDevelopers: " + "".join(aboutData.developers) + "\n\nAdditional credits:\n " + "\n ".join(aboutData.credits) + "\n\nLicense: " + aboutData.license + " - see included " + aboutData.licenseLocation,
550, wx.ClientDC(self)) 550, wx.ClientDC(self))
info.WebSite = ("http://www.evefit.org/Pyfa", "pyfa home page") info.WebSite = ("http://www.evefit.org/Pyfa", "pyfa home page")
wx.AboutBox(info) wx.AboutBox(info)