Skip to content

Commit ffcd092

Browse files
committed
Bump Godot Engine version to 4.7
1 parent c3becc8 commit ffcd092

6 files changed

Lines changed: 14 additions & 13 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CLANG_TIDY_BUILD_DIR=build-clang-tidy
88
CLANG_TIDY_COMPILE_COMMANDS_FILE=$(CLANG_TIDY_BUILD_DIR)/compile_commands.json
99
CLANG_TIDY_BINDINGS_FILE=$(CLANG_TIDY_BUILD_DIR)/godot-cpp/gen/include/godot_cpp/classes/node.hpp
1010
LIBMASZYNA_DEBUG:=""
11-
CMAKE_GODOTCPP_API_VERSION=4.6
11+
CMAKE_GODOTCPP_API_VERSION=4.7
1212

1313
#Helper for CLion so it would see generated bindings
1414
generate-bindings:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ least two cores.
113113
| 30.09.2025 | 4.5 |||| ✅ (Target API Level: 34) || C++ 17 | 24.06 |
114114
| 30.11.2025 | 4.5.x |||| ✅ (Target API Level: 34) || C++ 17 | 24.06, 25.11 |
115115
| 27.01.2026 | 4.6 |||| ✅ (Target API Level: 34) || C++ 17 | 24.06, 25.11, 26.01 |
116+
| 06.07.2026 | 4.7.x |||| ✅ (Target API Level: 34) || C++ 17 | 24.06, 25.11, 26.01 |
116117
### Documentation
117118

118119
Project documentation: https://maszyna-reloaded.github.io/MaSzyna-API-wrapper/

demo/project.godot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ config/name="MaSzyna Reloaded"
1818
config/description="A port of MaSzyna Train Simulator"
1919
run/main_scene="uid://1djubq5jy2wx"
2020
run/print_header=false
21-
config/features=PackedStringArray("4.6", "Forward Plus")
21+
config/features=PackedStringArray("4.7", "Forward Plus")
2222
boot_splash/bg_color=Color(0, 0, 0, 1)
2323
boot_splash/show_image=false
2424
boot_splash/image="res://splash.png"

docker-compose.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
unit_tests:
33
environment:
44
- ${TARGET:-template_debug}
5-
image: jezsonic/build-tools:4.6.stable
5+
image: jezsonic/build-tools:4.7.stable
66
container_name: unit_tests
77
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -t template_debug -u true
88
volumes:
@@ -12,7 +12,7 @@ services:
1212
windows_x86_64:
1313
environment:
1414
- ${TARGET:-template_debug}
15-
image: jezsonic/build-tools:4.6.stable
15+
image: jezsonic/build-tools:4.7.stable
1616
container_name: windows_x86_64
1717
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p windows -a x86_64 -t $TARGET
1818
volumes:
@@ -22,7 +22,7 @@ services:
2222
windows_x86_32:
2323
environment:
2424
- ${TARGET:-template_debug}
25-
image: jezsonic/build-tools:4.6.stable
25+
image: jezsonic/build-tools:4.7.stable
2626
container_name: windows_x86_32
2727
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p windows -a x86_32 -t $TARGET
2828
volumes:
@@ -32,7 +32,7 @@ services:
3232
linux_x86_64:
3333
environment:
3434
- ${TARGET:-template_debug}
35-
image: jezsonic/build-tools:4.6.stable
35+
image: jezsonic/build-tools:4.7.stable
3636
container_name: linux_x86_64
3737
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p linux -a x86_64 -t $TARGET
3838
volumes:
@@ -42,7 +42,7 @@ services:
4242
linux_x86_32:
4343
environment:
4444
- ${TARGET:-template_debug}
45-
image: jezsonic/build-tools:4.6.stable
45+
image: jezsonic/build-tools:4.7.stable
4646
container_name: linux_x86_32
4747
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p linux -a x86_32 -t $TARGET
4848
volumes:
@@ -52,7 +52,7 @@ services:
5252
android_x86_64:
5353
environment:
5454
- ${TARGET:-template_debug}
55-
image: jezsonic/build-tools:4.6.stable.android
55+
image: jezsonic/build-tools:4.7.stable.android
5656
container_name: android_x86_64
5757
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p android -a x86_64 -t $TARGET
5858
volumes:
@@ -62,7 +62,7 @@ services:
6262
android_x86_32:
6363
environment:
6464
- ${TARGET:-template_debug}
65-
image: jezsonic/build-tools:4.6.stable.android
65+
image: jezsonic/build-tools:4.7.stable.android
6666
container_name: android_x86_32
6767
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p android -a x86_32 -t $TARGET
6868
volumes:
@@ -72,7 +72,7 @@ services:
7272
android_arm64:
7373
environment:
7474
- ${TARGET:-template_debug}
75-
image: jezsonic/build-tools:4.6.stable.android
75+
image: jezsonic/build-tools:4.7.stable.android
7676
container_name: android_arm64
7777
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p android -a arm64 -t $TARGET
7878
volumes:
@@ -82,7 +82,7 @@ services:
8282
android_arm32:
8383
environment:
8484
- ${TARGET:-template_debug}
85-
image: jezsonic/build-tools:4.6.stable.android
85+
image: jezsonic/build-tools:4.7.stable.android
8686
container_name: android_arm32
8787
entrypoint: /var/maszyna/ci/docker/entrypoint.sh -p android -a arm32 -t $TARGET
8888
volumes:

vendor/gut

Submodule gut updated 117 files

0 commit comments

Comments
 (0)