mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
moved game's version from definition.py to ct_config.json
This commit is contained in:
parent
9c8d23929d
commit
7891b47a91
2 changed files with 8 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,4 @@
|
|||
CREATE_NO_WINDOW = 0x08000000
|
||||
VERSION = "0.8.1"
|
||||
GITHUB_REPOSITORY = "Faraphel/MKWF-Install"
|
||||
GITHUB_CONTENT_ROOT = f"https://raw.githubusercontent.com/{GITHUB_REPOSITORY}/master/"
|
||||
VERSION_FILE_URL = GITHUB_CONTENT_ROOT + "version"
|
||||
|
@ -11,6 +10,13 @@ get_extension = lambda file: file.split(".")[-1]
|
|||
get_track_wu8 = lambda track: f"./file/Track-WU8/{track}.wu8"
|
||||
get_track_szs = lambda track: f"./file/Track/{track}.szs"
|
||||
|
||||
region_ID = {
|
||||
"J": "JAP",
|
||||
"P": "PAL",
|
||||
"K": "KOR",
|
||||
"E": "USA"
|
||||
}
|
||||
|
||||
|
||||
def get_trackname(name=None, prefix=None, suffix=None, track=None):
|
||||
if track:
|
||||
|
|
Loading…
Reference in a new issue