Skip to content

Commit

Permalink
Update to Godot 4.3-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
devloglogan committed Aug 15, 2024
1 parent aa8792d commit f2bcbe2
Show file tree
Hide file tree
Showing 5 changed files with 331 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-addon-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
needs: build

env:
GODOT_VERSION: "4.3-beta2"
GODOT_VERSION: "4.3-stable"
XRSIM_VERSION: "65.0.0"

steps:
Expand Down
3 changes: 1 addition & 2 deletions config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ ext {
]

libraries = [
// TODO: Update to the 4.3 stable version when it's out.
godotAndroidLib: "org.godotengine:godot:4.3.0.beta-SNAPSHOT",
godotAndroidLib: "org.godotengine:godot:4.3.0.stable",
]
}

Expand Down
2 changes: 1 addition & 1 deletion thirdparty/godot-cpp
Submodule godot-cpp updated 63 files
+16 −0 .editorconfig
+2 −6 .gitattributes
+4 −5 .github/actions/godot-cache-restore/action.yml
+17 −0 .github/actions/godot-cache-save/action.yml
+8 −2 .github/workflows/ci.yml
+21 −42 .github/workflows/static_checks.yml
+1 −1 .gitignore
+64 −0 .pre-commit-config.yaml
+13 −1 CMakeLists.txt
+13 −11 README.md
+2 −7 SConstruct
+15 −7 binding_generator.py
+327 −17 gdextension/extension_api.json
+5 −1 gdextension/gdextension_interface.h
+14 −10 include/godot_cpp/classes/wrapped.hpp
+1 −1 include/godot_cpp/core/method_bind.hpp
+1 −0 include/godot_cpp/core/method_ptrcall.hpp
+1 −0 include/godot_cpp/core/type_info.hpp
+4 −4 include/godot_cpp/templates/local_vector.hpp
+5 −0 include/godot_cpp/variant/array_helpers.hpp
+5 −0 include/godot_cpp/variant/color_names.inc.hpp
+1 −1 include/godot_cpp/variant/rect2.hpp
+1 −1 include/godot_cpp/variant/rect2i.hpp
+17 −6 include/godot_cpp/variant/typed_array.hpp
+3 −0 include/godot_cpp/variant/variant.hpp
+0 −37 misc/hooks/README.md
+0 −48 misc/hooks/canonicalize_filename.sh
+0 −50 misc/hooks/pre-commit
+0 −202 misc/hooks/pre-commit-black
+0 −242 misc/hooks/pre-commit-clang-format
+0 −103 misc/hooks/winmessage.ps1
+0 −25 misc/scripts/black_format.sh
+4 −2 misc/scripts/check_ci_log.py
+3 −3 misc/scripts/check_get_file_list.py
+0 −38 misc/scripts/clang_format.sh
+0 −5 misc/scripts/codespell.sh
+50 −49 misc/scripts/copyright_headers.py
+46 −0 misc/scripts/file_format.py
+0 −41 misc/scripts/file_format.sh
+127 −0 misc/scripts/header_guards.py
+0 −60 misc/scripts/header_guards.sh
+0 −11 misc/scripts/mypy.ini
+0 −6 misc/scripts/mypy_check.sh
+58 −0 pyproject.toml
+1 −2 src/classes/wrapped.cpp
+3 −3 src/core/memory.cpp
+1 −1 src/variant/basis.cpp
+1 −1 src/variant/color.cpp
+9 −0 src/variant/variant.cpp
+0 −2 test/SConstruct
+2 −2 test/project/main.gd
+5 −5 test/src/example.cpp
+1 −1 test/src/example.h
+19 −18 test/src/tests.h
+2 −2 tools/android.py
+0 −1 tools/common_compiler_flags.py
+7 −6 tools/godotcpp.py
+6 −15 tools/ios.py
+1 −1 tools/linux.py
+1 −0 tools/macos.py
+0 −1 tools/my_spawn.py
+0 −1 tools/web.py
+73 −4 tools/windows.py
2 changes: 1 addition & 1 deletion thirdparty/godot_cpp_gdextension_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This directory contains the API JSON for
[**Godot Engine**](https://github.com/godotengine/godot)'s *GDExtensions* API.

## Current API version
- [commit c414c2b37d0563456a2fe194b16f8c4aa442e865](https://github.com/godotengine/godot/commit/c414c2b37d0563456a2fe194b16f8c4aa442e865)
- [commit fbbf9ec4efd8f1055d00edb8d926eef8ba4c2cce](https://github.com/godotengine/godot/commit/fbbf9ec4efd8f1055d00edb8d926eef8ba4c2cce)

## Updating API

Expand Down
Loading

0 comments on commit f2bcbe2

Please sign in to comment.