Skip to content

Commit

Permalink
Fixes version for 3.x branch (readies 3.121 release)
Browse files Browse the repository at this point in the history
git-svn-id: http://fofix.googlecode.com/svn/MFH-Mod/branches/maintenance_3.x@1984 48f48816-a574-47fe-9a59-6914b3aef992
  • Loading branch information
akedrou committed Dec 6, 2009
1 parent 0040168 commit 30dba51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Version.py
Expand Up @@ -22,7 +22,7 @@

import sys
import os
VERSION = '3.'
VERSION = '3.121'
URL = 'http://fofix.googlecode.com'

def appName():
Expand All @@ -36,7 +36,7 @@ def revision():
try:
revision = "x Maintenance (r%d)" % int(svntag.get_svn_info(os.path.dirname(__file__))['revnum'])
except:
revision = "121 Final"
revision = "Final"
return revision

# evilynux: Returns version number w.r.t. frozen state
Expand All @@ -48,7 +48,7 @@ def version():
us = os.path.abspath(unicode(sys.executable, sys.getfilesystemencoding()))
version = win32api.GetFileVersionInfo(us, r'\StringFileInfo\%04x%04x\ProductVersion' % win32api.GetFileVersionInfo(us, r'\VarFileInfo\Translation')[0])
else:
version = VERSION
version = "%s%s" % ( VERSION, revision() )
else:
version = "%s%s" % ( VERSION, revision() )
return version
Expand Down
2 changes: 1 addition & 1 deletion src/setup_exe.py
Expand Up @@ -150,7 +150,7 @@ def setupWindows():
"icon_resources": [(1, "fofix.ico")],
"other_resources": [(RT_VERSION, 1, VersionResource(
#stump: the parameter below must consist only of up to four numerical fields separated by dots
Version.versionNum(),
Version.VERSION,
file_description="Frets on Fire X",
legal_copyright=r"© 2008-2009 FoFiX Team. GNU GPL v2 or later.",
company_name="FoFiX Team",
Expand Down

0 comments on commit 30dba51

Please sign in to comment.