Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Updated all variable names to use GODOT_ prefix | Samuel Nicholas | 2024-09-14 | 2 | -30/+32 | |
| |/ / | | | | | | | | | | | | | | | | changed cache type for api file and api dir to FILEPATH and PATH respectively. Minor whitespace. docstring parity | |||||
* | | | Merge pull request #1593 from Repiteo/4.4.dev2-bindings | David Snopek | 2024-09-17 | 2 | -38/+3719 | |
|\ \ \ | |/ / |/| | | Update bindings to 4.4.dev2 | |||||
| * | | Update bindings to 4.4.dev2 | Thaddeus Crews | 2024-09-17 | 2 | -38/+3719 | |
|/ / | ||||||
* | | Merge pull request #1579 from enetheru/visibility-hidden | David Snopek | 2024-09-13 | 1 | -1/+13 | |
|\ \ | | | | | | | add SYMBOL_VISIBILITY cache variable to match scons interface. | |||||
| * | | Add GODOT_SYMBOL_VISIBILITY cache variable to match scons interface. | Samuel Nicholas | 2024-09-14 | 1 | -1/+13 | |
|/ / | ||||||
* | | Merge pull request #1563 from APokorny/visibility-hidden | David Snopek | 2024-09-11 | 1 | -0/+5 | |
|\ \ | | | | | | | Add visibility-hidden to CMake build | |||||
| * | | Add visibility-hidden | Andreas Pokorny | 2024-08-26 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | | | This should make all symbols that are not marked otherwise have hidden visibility. There still may be exposed symbols if marked with respective attributes. | |||||
* | | | Merge pull request #1535 from bruvzg/llvm-mingw-arm64 | David Snopek | 2024-09-10 | 2 | -8/+48 | |
|\ \ \ | | | | | | | | | Add support for LLVM/MinGW and ARM64 Windows builds. | |||||
| * | | | Add support for LLVM/MinGW and ARM64 Windows builds. | bruvzg | 2024-08-12 | 2 | -8/+48 | |
| | | | | ||||||
* | | | | Merge pull request #1548 from ytnuf/hot_reload | David Snopek | 2024-09-10 | 1 | -4/+5 | |
|\ \ \ \ | |_|_|/ |/| | | | Add hot reload support when building with GCC and CMake | |||||
| * | | | Add hot reload support when building with GCC and CMake | ytnuf | 2024-08-26 | 1 | -4/+5 | |
| |/ / | ||||||
* | | | Merge pull request #1520 from dsnopek/test-library-path-absolute | David Snopek | 2024-08-27 | 3 | -0/+16 | |
|\ \ \ | | | | | | | | | Add a test to ensure that library path is absolute | |||||
| * | | | Add a test to ensure that library path is absolute | David Snopek | 2024-08-22 | 3 | -0/+16 | |
| | | | | ||||||
* | | | | Merge pull request #1561 from Spartan322/gcc-14-Wtemplate-id-cdtor-warning | David Snopek | 2024-08-26 | 1 | -1/+1 | |
|\ \ \ \ | | | | | | | | | | | Fix GCC 14 -Wtemplate-id-cdtor warning | |||||
| * | | | | Fix GCC 14 -Wtemplate-id-cdtor warning | George L. Albany | 2024-08-25 | 1 | -1/+1 | |
| | |_|/ | |/| | | | | | | As was fixed with godotengine/godot#91208 | |||||
* | | | | Merge pull request #1560 from Faless/fix/build_web_cppflags_is_ccflags | David Snopek | 2024-08-26 | 1 | -1/+1 | |
|\ \ \ \ | | | | | | | | | | | [Web/SCons] Use CCFLAGS for SIDE_MODULE option | |||||
| * | | | | [Web/SCons] Use CCFLAGS for SIDE_MODULE option | Fabio Alessandrelli | 2024-08-24 | 1 | -1/+1 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was using CPPFLAGS, but should use the explicit scons CCFLAGS which makes it clear they are applied to both the C and C++ compiler. CPPFLAGS was also fine (they are preprocessor flags, also applied to both C and C++), but we should try to stay consistent with what we do in Godot. | |||||
* | | | | Merge pull request #1558 from aaronfranke/fix-typed-packed-array-bind | David Snopek | 2024-08-26 | 3 | -9/+25 | |
|\ \ \ \ | |/ / / |/| | | | Fix missing MAKE_TYPED_ARRAY_INFO for Packed*Arrays | |||||
| * | | | Fix missing MAKE_TYPED_ARRAY_INFO for Packed*Arrays | Aaron Franke | 2024-08-22 | 3 | -9/+25 | |
|/ / / | ||||||
* | | | Merge pull request #1554 from raulsntos/char-metadata | David Snopek | 2024-08-22 | 1 | -0/+2 | |
|\ \ \ | | | | | | | | | Correct type for `char16` and `char32` meta | |||||
| * | | | Correct type for `char16` and `char32` meta | Raul Santos | 2024-08-23 | 1 | -0/+2 | |
|/ / / | ||||||
* | | | Merge pull request #1557 from mihe/cpp-operators | David Snopek | 2024-08-22 | 1 | -6/+38 | |
|\ \ \ | |/ / |/| | | Fix incorrect generation of some C++ operators | |||||
| * | | Fix incorrect generation of some C++ operators | Mikael Hermansson | 2024-08-21 | 1 | -6/+38 | |
| | | | ||||||
* | | | Merge pull request #1555 from raulsntos/fix-r1722784216 | David Snopek | 2024-08-22 | 1 | -2/+0 | |
|\ \ \ | |/ / |/| | | Avoid hardcoded type conversion for metadata | |||||
| * | | Avoid hardcoded type conversion for metadata | Raul Santos | 2024-08-20 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | The engine uses the names `int` and `float` to refer to the 64-bit types, so in the bindings generator we have a hardcoded conversion for those types. But this type conversion should not be used for metadata. Even though the underlying type should still be 64-bit for interop, metadata is meant to specify the correct type to expose. So if metadata says `float` it means the type is really meant to be a 32-bit `float` and not `double`. Other hardcoded type conversions (`int` and `Nil`) won't ever be metadata. This change corrects the `float` type, to use the right type in the generated C++ code. Before we were always using `double` due to this type conversion. | |||||
* | | | Merge pull request #1528 from AThousandShips/style_fix_2 | David Snopek | 2024-08-21 | 1 | -62/+113 | |
|\ \ \ | |/ / |/| | | Make generated code mostly style compliant | |||||
| * | | Make generated code mostly style compliant | A Thousand Ships | 2024-07-17 | 1 | -62/+113 | |
| | | | ||||||
* | | | Merge pull request #1550 from Naros/sync-4.3-stable | David Snopek | 2024-08-15 | 1 | -3/+2 | |
|\ \ \ | |_|/ |/| | | gdextension: Sync with upstream commit 77dcf97d82cbfe4e4615475fa52ca03da645dbd8 (4.3-stable) | |||||
| * | | gdextension: Sync with upstream commit ↵ | Chris Cranford | 2024-08-15 | 1 | -3/+2 | |
|/ / | | | | | | | 77dcf97d82cbfe4e4615475fa52ca03da645dbd8 (4.3-stable) | |||||
* | | Merge pull request #1546 from aaronfranke/fix-vec4arr | David Snopek | 2024-08-11 | 4 | -0/+4 | |
|\ \ | | | | | | | Fix missing type info for PackedVector4Array | |||||
| * | | Fix missing type info for PackedVector4Array | Aaron Franke | 2024-08-10 | 4 | -0/+4 | |
|/ / | ||||||
* | | gdextension: Sync with upstream commit ↵ | David Snopek | 2024-08-09 | 1 | -2/+2 | |
| | | | | | | | | 03afb92efa18874da19f7fc185a32c005d20aa1d (4.3-rc3) | |||||
* | | Merge pull request #1545 from Klaim/warnings_gdclass | David Snopek | 2024-08-08 | 1 | -6/+6 | |
|\ \ | | | | | | | Removes warnings generated by GDCLASS usage | |||||
| * | | removes warnings generated by GDCLASS usage | Klaim (Joël Lamotte) | 2024-08-08 | 1 | -6/+6 | |
|/ / | | | | | | | | | | | | | | | This change removes the warnings (unused parameters) coming from code injected by the GDCLASS macro. Contrary to warnings coming from the normal source code which can be suppressed with most compiles by specifying the include directories of this library as external or system, when the code is injected through a macro it is considered in the context of the user, which is the source code of user of the library. That forces the users to modify their code to hide the warnings coming from the mandatory `GDCLASS` here. That's why it's important to remove these warning from that specific macro and ideally any other macro that the user must use. | |||||
* | | Merge pull request #1543 from Calinou/readme-use-github-admonition-syntax | David Snopek | 2024-08-07 | 1 | -11/+13 | |
|\ \ | | | | | | | Use GitHub admonition syntax for the warning in README | |||||
| * | | Use GitHub admonition syntax for the warning in README | Hugo Locurcio | 2024-08-05 | 1 | -11/+13 | |
| | | | ||||||
* | | | Merge pull request #1539 from Naros/dispatch-get-set-up-hierarchy | David Snopek | 2024-08-07 | 1 | -4/+8 | |
|\ \ \ | | | | | | | | | Make sure `_get` and `_set` dispatch up the class hierarchy | |||||
| * | | | Make sure `_get` and `_set` dispatch up the class hierarchy | Chris Cranford | 2024-08-01 | 1 | -4/+8 | |
| | | | | ||||||
* | | | | Merge pull request #1330 from pimms/cmake-hot-reload | David Snopek | 2024-08-07 | 1 | -0/+12 | |
|\ \ \ \ | |_|/ / |/| | | | Add hot reload support to CMakeLists.txt | |||||
| * | | | PR comments — added doc, default 'ON' in Debug, 'OFF' in Release | Joakim Stien | 2023-12-10 | 1 | -1/+8 | |
| | | | | ||||||
| * | | | Added hot reload support to CMakeLists.txt | Joakim Stien | 2023-12-09 | 1 | -0/+5 | |
| | | | | ||||||
* | | | | gdextension: Sync with upstream commit ↵ | David Snopek | 2024-08-02 | 2 | -17/+332 | |
| |/ / |/| | | | | | | | | 3978628c6cc1227250fc6ed45c8d854d24c30c30 (4.3-rc2) | |||||
* | | | Merge pull request #1530 from akien-mga/py-two-old | David Snopek | 2024-07-24 | 1 | -13/+3 | |
|\ \ \ | | | | | | | | | SCons: Remove old Python 2 compat code | |||||
| * | | | SCons: Remove old Python 2 compat code | Rémi Verschelde | 2024-07-18 | 1 | -13/+3 | |
| | |/ | |/| | ||||||
* | | | Merge pull request #1519 from AThousandShips/cache_improve | David Snopek | 2024-07-24 | 3 | -7/+29 | |
|\ \ \ | |/ / |/| | | [CI] Upload build cache before running tests | |||||
| * | | [CI] Upload build cache before running tests | A Thousand Ships | 2024-07-13 | 3 | -7/+29 | |
| | | | ||||||
* | | | Merge pull request #1513 from dsnopek/unexpose-is-instance-valid | David Snopek | 2024-07-15 | 1 | -0/+9 | |
|\ \ \ | | | | | | | | | Unexpose `UtilityFunctions::is_instance_valid()` | |||||
| * | | | Unexpose `UtilityFunctions::is_instance_valid()` | David Snopek | 2024-07-01 | 1 | -0/+9 | |
| | | | | ||||||
* | | | | Merge pull request #1510 from dsnopek/memnew-better-crash-message | David Snopek | 2024-07-15 | 1 | -2/+1 | |
|\ \ \ \ | |_|/ / |/| | | | Remind developers about `memnew()` in crash message when missing binding callbacks | |||||
| * | | | Remind developers about `memnew()` in crash message when missing binding ↵ | David Snopek | 2024-06-27 | 1 | -2/+1 | |
| |/ / | | | | | | | | | | callbacks |