forked from OoTRandomizer/OoT-Randomizer
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathversion.py
More file actions
17 lines (12 loc) · 701 Bytes
/
version.py
File metadata and controls
17 lines (12 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
__version__ = '8.1.47'
# This is a supplemental version number for branches based off of main dev.
supplementary_version = 1
# Pick a unique identifier byte for your fork if you are intending to have a long-lasting branch.
# This will be 0x00 for main releases and 0x01 for main dev.
branch_identifier = 0x52
# URL to your branch on GitHub.
branch_url = 'https://github.com/Roman971/OoT-Randomizer/tree/Dev-R'
# This is named __version__ at the top for compatability with older versions trying to version check.
base_version = __version__
# And finally, the completed version string. This is what is displayed and used for salting seeds.
__version__ = f'{base_version} R-{supplementary_version}'