mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-11 01:10:33 +00:00
* copy over the xml * Rename anims * A bunch of renames * minor extract_assets fixes * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "820678b4e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "820678b4e" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Change rgb5a1 to rgba16 * eye and eyebrows * some dlists * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "6be9af65d" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "6be9af65d" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
18 lines
613 B
Python
18 lines
613 B
Python
#!/usr/bin/python3
|
|
|
|
import argparse
|
|
from datetime import datetime
|
|
import getpass
|
|
import subprocess
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--devel", action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
with open("ZAPD/BuildInfo.h", "w+") as buildFile:
|
|
label = subprocess.check_output(["git", "describe", "--always"]).strip().decode("utf-8")
|
|
now = datetime.now()
|
|
if args.devel:
|
|
label += " ~ Development version"
|
|
buildFile.write("const char gBuildHash[] = \"" + label + "\";\n")
|
|
#buildFile.write("const char gBuildDate[] = \"" + now.strftime("%Y-%m-%d %H:%M:%S") + "\";\n")
|