Some tweaks, changes and additions to the about box

This commit is contained in:
cncfanatics
2010-11-19 14:52:46 +01:00
parent 011cb51363
commit 67c750a142
2 changed files with 3 additions and 3 deletions

View File

@@ -17,9 +17,9 @@
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
#===============================================================================
versionString = "1.0 pre-beta"
versionString = "1.0 beta"
license = "pyfa is released under GNU GPL"
licenseLocation = "gpl.txt"
developers = ("cncfanatics" , "DarkPhoenix", "Darriele")
credits = ((" Entity: capacitor calculations"), (" Aurora: maths"))
credits = (("Entity: capacitor calculations"), ("Aurora: maths"), ("Corollax: Various 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"

View File

@@ -165,7 +165,7 @@ class MainFrame(wx.Frame):
info = wx.AboutDialogInfo()
info.Name = "pyfa"
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))
info.WebSite = ("http://www.evefit.org/Pyfa", "pyfa home page")
wx.AboutBox(info)