diff --git a/config.py b/config.py index 8a47461c5..a7a8575ae 100644 --- a/config.py +++ b/config.py @@ -4,6 +4,12 @@ import sys # Turns on debug mode debug = False +# Version data +version = "1.0" +tag = "git" +expansionName = "Incursion" +expansionVersion = "1.0.1" + # You can adjust these paths to your needs # The main pyfa directory which contains run.py diff --git a/gui/aboutData.py b/gui/aboutData.py index 56b65b0fe..162bf41d0 100644 --- a/gui/aboutData.py +++ b/gui/aboutData.py @@ -16,8 +16,9 @@ # You should have received a copy of the GNU General Public License # along with pyfa. If not, see . #=============================================================================== +import config -versionString = "1.0 RC2 - INCURSION" +versionString = "{0} {1} - {2} {3}".format(config.version, config.tag, config.expansionName, config.expansionVersion) license = "pyfa is released under GNU GPL" licenseLocation = "gpl.txt" developers = ("\n cncfanatics \t(Sakari Orisi)\n" , " DarkPhoenix \t(Kadesh Priestess)\n", " Darriele \t(Darriele)")