Skip to content

Commit

Permalink
Update to 4.4
Browse files Browse the repository at this point in the history
Contains changes to .gitignore file due to the addition of .uid files
  • Loading branch information
paddy-exe committed Mar 4, 2025
1 parent 8e13217 commit 3482eb5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ demo/bin/macos/*
demo/bin/windows/*
!demo/bin/windows/.gitkeep
!demo/bin/*.gdextension
!demo/bin/*.gdextension.uid
.sconsign*.dblite

# Ignore custom.py
Expand Down
1 change: 1 addition & 0 deletions demo/bin/example.gdextension.uid
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
uid://celiw111ifxm7
2 changes: 1 addition & 1 deletion demo/project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ config_version=5
[application]

config/name="godot cpp template"
config/features=PackedStringArray("4.1", "Forward Plus")
config/features=PackedStringArray("4.4", "Forward Plus")
config/icon="res://icon.svg"
2 changes: 1 addition & 1 deletion godot-cpp
Submodule godot-cpp updated 56 files
+18 −45 .github/workflows/ci.yml
+4 −1 .gitignore
+54 −16 CMakeLists.txt
+216 −72 binding_generator.py
+169 −0 cmake/GodotCPPModule.cmake
+40 −0 cmake/android.cmake
+176 −93 cmake/common_compiler_flags.cmake
+40 −0 cmake/emsdkHack.cmake
+325 −192 cmake/godotcpp.cmake
+21 −0 cmake/ios.cmake
+21 −0 cmake/linux.cmake
+46 −0 cmake/macos.cmake
+42 −0 cmake/web.cmake
+103 −0 cmake/windows.cmake
+0 −57 doc/cmake.md
+377 −0 doc/cmake.rst
+55 −0 doc_source_generator.py
+106,876 −87,456 gdextension/extension_api.json
+133 −12 gdextension/gdextension_interface.h
+3 −12 include/godot_cpp/classes/wrapped.hpp
+19 −10 include/godot_cpp/core/class_db.hpp
+0 −4 include/godot_cpp/core/defs.hpp
+2 −2 include/godot_cpp/core/type_info.hpp
+5 −2 include/godot_cpp/godot.hpp
+1 −1 include/godot_cpp/variant/aabb.hpp
+1 −1 include/godot_cpp/variant/basis.hpp
+1 −1 include/godot_cpp/variant/color.hpp
+1 −1 include/godot_cpp/variant/plane.hpp
+1 −1 include/godot_cpp/variant/projection.hpp
+1 −1 include/godot_cpp/variant/quaternion.hpp
+1 −1 include/godot_cpp/variant/rect2.hpp
+1 −1 include/godot_cpp/variant/rect2i.hpp
+1 −1 include/godot_cpp/variant/transform2d.hpp
+1 −1 include/godot_cpp/variant/transform3d.hpp
+439 −0 include/godot_cpp/variant/typed_dictionary.hpp
+3 −0 include/godot_cpp/variant/variant.hpp
+509 −0 include/godot_cpp/variant/variant_internal.hpp
+1 −1 include/godot_cpp/variant/vector2.hpp
+1 −1 include/godot_cpp/variant/vector2i.hpp
+1 −1 include/godot_cpp/variant/vector3.hpp
+1 −1 include/godot_cpp/variant/vector3i.hpp
+1 −1 include/godot_cpp/variant/vector4.hpp
+1 −1 include/godot_cpp/variant/vector4i.hpp
+4 −4 src/classes/wrapped.cpp
+9 −6 src/core/class_db.cpp
+10 −4 src/godot.cpp
+6 −0 src/variant/packed_arrays.cpp
+7 −6 src/variant/variant.cpp
+43 −0 src/variant/variant_internal.cpp
+81 −143 test/CMakeLists.txt
+18 −2 test/project/main.gd
+43 −0 test/src/example.cpp
+17 −0 test/src/example.h
+1 −0 test/src/register_types.cpp
+2 −46 tools/godotcpp.py
+8 −3 tools/windows.py

0 comments on commit 3482eb5

Please sign in to comment.