mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Merge branch 'main' into breaking_changes
# Conflicts: # Adjuster.py # Gui.py # MultiClient.py # setup.py # worlds/alttp/AdjusterMain.py # worlds/alttp/Main.py
This commit is contained in:
7
setup.py
7
setup.py
@@ -48,8 +48,8 @@ def manifest_creation():
|
||||
path = os.path.join(dirpath, filename)
|
||||
hashes[os.path.relpath(path, start=buildfolder)] = pool.submit(_threaded_hash, path)
|
||||
import json
|
||||
manifest = {"buildtime": buildtime.isoformat(sep=" ", timespec="seconds")}
|
||||
manifest["hashes"] = {path: hash.result() for path, hash in hashes.items()}
|
||||
manifest = {"buildtime": buildtime.isoformat(sep=" ", timespec="seconds"),
|
||||
"hashes": {path: hash.result() for path, hash in hashes.items()}}
|
||||
json.dump(manifest, open(manifestpath, "wt"), indent=4)
|
||||
print("Created Manifest")
|
||||
|
||||
@@ -58,7 +58,8 @@ scripts = {"MultiClient.py": "ArchipelagoClient",
|
||||
"MultiMystery.py": "ArchipelagoMultiMystery",
|
||||
"MultiServer.py": "ArchipelagoServer",
|
||||
"gui.py": "ArchipelagoCreator",
|
||||
"Mystery.py": "ArchipelagoMystery"}
|
||||
"Mystery.py": "ArchipelagoMystery",
|
||||
"Adjuster.py": "ArchipelagoLttPAdjuster"}
|
||||
|
||||
exes = []
|
||||
|
||||
|
Reference in New Issue
Block a user