Move pyfa version data to config.py
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -16,8 +16,9 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
|
||||
#===============================================================================
|
||||
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)")
|
||||
|
||||
Reference in New Issue
Block a user