Skip to content

Commit

Permalink
Update to Godot 4.3 stable (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
paddy-exe authored Aug 17, 2024
1 parent 626ba22 commit b10ed25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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

0 comments on commit b10ed25

Please sign in to comment.