Skip to content

Commit

Permalink
Update godot-cpp to 4.2.2+, Use macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
2shady4u committed Aug 1, 2024
1 parent 18d2a21 commit b9b018d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_var.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
{
"name": "MacOS (universal)",
"os": "macos-11",
"os": "macos-latest",
"platform": "macos",
"artifact-extension": "framework",
"flags": "arch=universal",
Expand Down
2 changes: 1 addition & 1 deletion godot-cpp
Submodule godot-cpp updated 82 files
+16 −0 .editorconfig
+2 −6 .gitattributes
+22 −7 .github/workflows/ci.yml
+21 −42 .github/workflows/static_checks.yml
+1 −1 .gitignore
+64 −0 .pre-commit-config.yaml
+1 −1 CMakeLists.txt
+2 −7 SConstruct
+266 −74 binding_generator.py
+19 −9 include/godot_cpp/classes/wrapped.hpp
+26 −4 include/godot_cpp/core/class_db.hpp
+8 −0 include/godot_cpp/core/math.hpp
+3 −1 include/godot_cpp/core/method_bind.hpp
+4 −4 include/godot_cpp/core/method_ptrcall.hpp
+34 −0 include/godot_cpp/core/property_info.hpp
+10 −0 include/godot_cpp/core/type_info.hpp
+1 −0 include/godot_cpp/godot.hpp
+4 −4 include/godot_cpp/templates/local_vector.hpp
+1 −0 include/godot_cpp/variant/aabb.hpp
+5 −0 include/godot_cpp/variant/array_helpers.hpp
+1 −0 include/godot_cpp/variant/basis.hpp
+5 −0 include/godot_cpp/variant/color_names.inc.hpp
+1 −0 include/godot_cpp/variant/plane.hpp
+1 −0 include/godot_cpp/variant/quaternion.hpp
+2 −1 include/godot_cpp/variant/rect2.hpp
+1 −1 include/godot_cpp/variant/rect2i.hpp
+1 −0 include/godot_cpp/variant/transform2d.hpp
+1 −0 include/godot_cpp/variant/transform3d.hpp
+16 −6 include/godot_cpp/variant/typed_array.hpp
+1 −0 include/godot_cpp/variant/vector2.hpp
+1 −0 include/godot_cpp/variant/vector3.hpp
+1 −0 include/godot_cpp/variant/vector4.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 −4 src/classes/wrapped.cpp
+18 −0 src/core/class_db.cpp
+3 −3 src/core/memory.cpp
+58 −0 src/core/object.cpp
+2 −0 src/godot.cpp
+4 −0 src/variant/aabb.cpp
+5 −1 src/variant/basis.cpp
+1 −1 src/variant/color.cpp
+4 −0 src/variant/plane.cpp
+4 −0 src/variant/quaternion.cpp
+4 −0 src/variant/rect2.cpp
+4 −0 src/variant/transform2d.cpp
+4 −0 src/variant/transform3d.cpp
+4 −0 src/variant/vector2.cpp
+4 −0 src/variant/vector3.cpp
+4 −0 src/variant/vector4.cpp
+0 −2 test/SConstruct
+9 −0 test/build_profile.json
+9 −2 test/project/main.gd
+11 −4 test/src/example.cpp
+3 −1 test/src/example.h
+19 −18 test/src/tests.h
+2 −2 tools/android.py
+0 −1 tools/common_compiler_flags.py
+16 −6 tools/godotcpp.py
+3 −2 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 b9b018d

Please sign in to comment.