Promote git revision number to 4th version string component

This commit is contained in:
Asher Baker 2015-09-29 11:07:16 +01:00
parent 66a3811049
commit 722c0eb32b
2 changed files with 4 additions and 6 deletions

View File

@ -1 +1 @@
1.8.0-dev
1.8.0

View File

@ -55,12 +55,10 @@ def output_version_headers():
if m == None:
raise Exception('Could not detremine product version')
major, minor, release, tag = m.groups()
product = "{0}.{1}.{2}".format(major, minor, release)
product = "{0}.{1}.{2}.{3}".format(major, minor, release, count)
fullstring = product
if tag != "":
fullstring += "-{0}".format(tag)
if tag == "dev":
fullstring += "+{0}".format(count)
with open(os.path.join(OutputFolder, 'sourcemod_version_auto.h'), 'w') as fp:
fp.write("""
@ -74,10 +72,10 @@ def output_version_headers():
#define SM_BUILD_RELEASE \"{4}\"
#define SM_BUILD_LOCAL_REV \"{6}\"
#define SM_BUILD_UNIQUEID "{6}:" SM_BUILD_CSET
#define SM_BUILD_UNIQUEID SM_BUILD_LOCAL_REV \":\" SM_BUILD_CSET
#define SM_VERSION_STRING \"{5}\"
#define SM_VERSION_FILE {2},{3},{4},0
#define SM_VERSION_FILE {2},{3},{4},{6}
#endif /* _SOURCEMOD_AUTO_VERSION_INFORMATION_H_ */
""".format(tag, shorthash, major, minor, release, fullstring, count))