From 18a94088af91ea88c08c83bf120a42385870b6d6 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Tue, 15 Jul 2025 09:53:26 -0700 Subject: [PATCH] update godot --- .gitignore | 2 ++ CHANGELOG.md | 1 + godot_compile/godot_compile.py | 4 ++-- godot_compile/godot_compile_utils.py | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1a284d6..d91f24a 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,8 @@ godot-4.2.1-stable/ godot-4.2.1-stable.zip godot-4.3-stable/ godot-4.3-stable.zip +godot-4.4.1-stable/ +godot-4.4.1-stable.zip mingw64/ # python diff --git a/CHANGELOG.md b/CHANGELOG.md index c6697d5..4865aa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ Changes are grouped by the date they are merged to the main branch of the reposi ## 2025-07-15 - Updated 7-Zip to 25.00 - Updated Y-Cruncher to v0.8.6.9545 +- Updated Godot compile to 4.4.1-stable ## 2025-04-02 - Fixed Keras not finding the FPS in Shadow of the Tomb Raider diff --git a/godot_compile/godot_compile.py b/godot_compile/godot_compile.py index 5abb906..12120fd 100644 --- a/godot_compile/godot_compile.py +++ b/godot_compile/godot_compile.py @@ -78,11 +78,11 @@ def main(): report = { "start_time": start_time, - "version": "4.3-stable", + "version": "4.4.1-stable", "end_time": end_time, "score": score, "unit": "seconds", - "test": "Godot 4.3 Compile" + "test": "Godot 4.4.1 Compile" } write_report_json(LOG_DIR, "report.json", report) diff --git a/godot_compile/godot_compile_utils.py b/godot_compile/godot_compile_utils.py index f78f604..89a2eca 100644 --- a/godot_compile/godot_compile_utils.py +++ b/godot_compile/godot_compile_utils.py @@ -14,7 +14,7 @@ MINGW_ZIP = "x86_64-13.2.0-release-posix-seh-msvcrt-rt_v11-rev1.zip" MINGW_FOLDER = SCRIPT_DIR.joinpath("mingw64") MINICONDA_EXECUTABLE_PATH = Path("C:\\ProgramData\\miniconda3\\_conda.exe") CONDA_ENV_NAME = "godotbuild" -GODOT_DIR = "godot-4.3-stable" +GODOT_DIR = "godot-4.4.1-stable" def install_mingw() -> str: @@ -51,7 +51,7 @@ def install_miniconda() -> str: raise Exception("could not copy miniconda from network drive") from err command =[ "powershell", - "start-process", + "start-process", "-FilePath", f'"{str(SCRIPT_DIR.joinpath(MINICONDA_INSTALLER))}"', "-ArgumentList",