Skip to content

Commit

Permalink
Bump to Godot v4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashton Meuser authored and Ashton Meuser committed May 30, 2024
1 parent 1cea71d commit 8b1bb36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
TARGET: template_release
GODOT_REF: 4.2.1-stable
GODOT_REF: 4.2.2-stable
LIBRARY_PATH: addons/godot-wasm/bin

jobs:
Expand Down
2 changes: 1 addition & 1 deletion godot-cpp
Submodule godot-cpp updated 64 files
+5 −5 .github/workflows/ci.yml
+1 −1 CMakeLists.txt
+6 −3 README.md
+66 −22 binding_generator.py
+65 −4 gdextension/extension_api.json
+2 −2 include/godot_cpp/classes/editor_plugin_registration.hpp
+8 −8 include/godot_cpp/classes/ref.hpp
+10 −32 include/godot_cpp/classes/wrapped.hpp
+63 −63 include/godot_cpp/core/binder_common.hpp
+17 −5 include/godot_cpp/core/builtin_ptrcall.hpp
+47 −20 include/godot_cpp/core/class_db.hpp
+1 −1 include/godot_cpp/core/defs.hpp
+7 −7 include/godot_cpp/core/engine_ptrcall.hpp
+2 −2 include/godot_cpp/core/math.hpp
+41 −19 include/godot_cpp/core/memory.hpp
+21 −21 include/godot_cpp/core/method_bind.hpp
+3 −3 include/godot_cpp/core/method_ptrcall.hpp
+13 −13 include/godot_cpp/core/object.hpp
+2 −2 include/godot_cpp/core/property_info.hpp
+5 −5 include/godot_cpp/core/type_info.hpp
+189 −99 include/godot_cpp/templates/cowdata.hpp
+5 −5 include/godot_cpp/templates/hash_map.hpp
+3 −3 include/godot_cpp/templates/hash_set.hpp
+5 −5 include/godot_cpp/templates/hashfuncs.hpp
+5 −5 include/godot_cpp/templates/list.hpp
+3 −3 include/godot_cpp/templates/local_vector.hpp
+8 −8 include/godot_cpp/templates/pair.hpp
+1 −1 include/godot_cpp/templates/rb_map.hpp
+1 −1 include/godot_cpp/templates/rb_set.hpp
+3 −3 include/godot_cpp/templates/rid_owner.hpp
+11 −2 include/godot_cpp/templates/safe_refcount.hpp
+1 −1 include/godot_cpp/templates/search_array.hpp
+1 −1 include/godot_cpp/templates/self_list.hpp
+2 −2 include/godot_cpp/templates/sort_array.hpp
+3 −3 include/godot_cpp/templates/thread_work_pool.hpp
+59 −44 include/godot_cpp/templates/vector.hpp
+1 −1 include/godot_cpp/templates/vmap.hpp
+1 −1 include/godot_cpp/templates/vset.hpp
+3 −3 include/godot_cpp/variant/aabb.hpp
+10 −10 include/godot_cpp/variant/callable_method_pointer.hpp
+13 −13 include/godot_cpp/variant/char_string.hpp
+1 −1 include/godot_cpp/variant/typed_array.hpp
+10 −4 include/godot_cpp/variant/variant.hpp
+6 −6 src/core/memory.cpp
+5 −0 src/godot.cpp
+22 −22 src/variant/char_string.cpp
+20 −20 src/variant/packed_arrays.cpp
+1 −1 src/variant/projection.cpp
+33 −51 src/variant/variant.cpp
+1 −1 test/CMakeLists.txt
+9 −0 test/project/main.gd
+2 −0 test/project/main.tscn
+28 −0 test/src/example.cpp
+39 −2 test/src/example.h
+8 −5 test/src/register_types.cpp
+9 −0 tools/android.py
+94 −0 tools/common_compiler_flags.py
+180 −40 tools/godotcpp.py
+3 −0 tools/ios.py
+4 −1 tools/linux.py
+3 −0 tools/macos.py
+0 −144 tools/targets.py
+3 −0 tools/web.py
+3 −2 tools/windows.py

0 comments on commit 8b1bb36

Please sign in to comment.