Update eos to latest branch and update the about box with the names of Entity, Darriele and Aurora

This commit is contained in:
cncfanatics
2010-08-30 01:48:52 +02:00
parent 3fecf1842f
commit cd1766dd51
3 changed files with 3 additions and 2 deletions

View File

@@ -21,4 +21,5 @@ versionString = "0.0.1"
license = "GNU GPL"
licenseLocation = "gpl.txt"
developers = ("cncfanatics" , "DarkPhoenix")
credits = (("Entity: capacitor calculations"), ("Darriele: gui"), ("Aurora: maths"))
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."

2
eos

Submodule eos updated: 5fba25fde1...1cadf5172c

View File

@@ -97,7 +97,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) + "\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,
350, wx.ClientDC(self))
info.WebSite = ("http://pyfa.sourceforge.net/", "pyfa home page")
wx.AboutBox(info)