Changeset - r26257:26d8d8cde130
[Not reviewed]
patchpack
0 2 0
Ruby Dennington (Theleruby) - 2 years ago 2022-05-10 16:25:59
theleruby@gmail.com
Added tag 6.0.1 for changeset 521269243246
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.hgtags
Show inline comments
 
f7347205838e520d6f3ee74dbe75b3f4fc93362b 6.0.0
 
52126924324614fdb11ed3d41e2c46a981ee626b 6.0.1
versiondump.py
Show inline comments
 
@@ -5,25 +5,25 @@ import sys
 
 
 
#================================
 
# the new version format is MAJORSAVE.MINORSAVE.BUGFIX
 
 
# bump MAJORSAVE every time there is a breaking change to the save format 
 
# bump MINORSAVE every time a save format change would stop save loading in older versions
 
# bump BUGFIX if save format is untouched
 
# bumps cause all later numbers to be reset. e.g. if you bump MINORSAVE then BUGFIX goes back to 0.
 
 
# save version to end 'pre' for unreleased builds with the version number being that of the next likely release
 
 
VERSION_TAG = "TheleTTD-6.0.1"
 
VERSION_TAG = "TheleTTD-6.0.2pre"
 
#================================
 
 
 
if sys.platform == "darwin":
 
	hg_path = "/usr/local/bin/hg"
 
	hg_shell = True
 
else:
 
	hg_path = "hg"
 
	hg_shell = False
 
 
HG_BRANCH = subprocess.Popen(hg_path + " branch", cwd="src/", stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=hg_shell).stdout.read().decode('utf-8').strip()
 
HG_REVISION = subprocess.Popen(hg_path + " identify --num", cwd="src/", stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=hg_shell).stdout.read().decode('utf-8').strip()
0 comments (0 inline, 0 general)