update godot

This commit is contained in:
Nikolas
2025-07-15 09:53:26 -07:00
parent 69d2cd7c5c
commit 18a94088af
4 changed files with 7 additions and 4 deletions

2
.gitignore vendored
View File

@@ -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

View File

@@ -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

View File

@@ -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)

View File

@@ -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",