Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-10 | Merge pull request #59643 from kneejuicer/geometry2D-tests | Rémi Verschelde | |
Add extra unit tests for Geometry2D | |||
2022-05-09 | Fix backspace when selection reaches left edge | Paweł Fertyk | |
Fixes #60866. | |||
2022-05-05 | Fix inconsistent naming in Time | Nicholas Huelin | |
2022-05-03 | Rename Basis get_axis to get_column, remove redundant methods | Aaron Franke | |
2022-05-03 | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>` | Hugo Locurcio | |
These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors. | |||
2022-05-02 | Merge pull request #60529 from timothyqiu/theme-validation | Rémi Verschelde | |
2022-05-01 | Fix left aligned integer sign in string formatting | Haoyu Qiu | |
2022-04-29 | Merge pull request #60519 from nathanfranke/fix-newline-indent | Rémi Verschelde | |
fix lines with ':' that end in comments causing auto indent | |||
2022-04-28 | remove escapes in gdscript test output | Nathan Franke | |
2022-04-28 | fix lines ending in comments causing auto indent | Nathan Franke | |
2022-04-28 | Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵ | bruvzg | |
Windows. Implement TextServer word break method. | |||
2022-04-26 | Rename variable names for some singletons | Aaron Franke | |
2022-04-26 | Merge pull request #60513 from Calinou/default-font-add-msdf-mipmap | Rémi Verschelde | |
Add MSDF and mipmap generation project settings for the default font | |||
2022-04-26 | Validate theme type/item names | Haoyu Qiu | |
2022-04-25 | Add MSDF and mipmap generation project settings for the default font | Hugo Locurcio | |
This can be used to improve Label3D and scaled Control appearance in prototypes. | |||
2022-04-22 | Add inital TextEdit UnitTests | Paulb23 | |
2022-04-22 | Use Input::push_input for tests plus extra mouse testing | Paulb23 | |
2022-04-13 | Color: Rename `to_srgb`/`to_linear` to include base color space | Rémi Verschelde | |
This helps reduce confusion around sRGB <> Linear conversions by making both input and output color spaces explicit. | |||
2022-04-11 | Make FileAccess and DirAccess classes reference counted. | bruvzg | |
2022-04-07 | Remove unused legacy tests | Rémi Verschelde | |
They haven't been updated for years and still use the old MainLoop basic framework instead of the new doctest one. They're of dubious quality and best redone from scratch using the new framework. | |||
2022-04-04 | Zero initialize all pointer class and struct members | Rémi Verschelde | |
This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr. | |||
2022-03-29 | Add extra unit tests for Geometry2D | kneejuicer | |
2022-03-28 | Expose Color's `to_linear()` and `to_srgb()` to scripting | Hugo Locurcio | |
2022-03-24 | Refactor Object metadata | reduz | |
* API kept the same (Although functions could be renamed to set_metadata/get_metadata in a later PR), so not much should change. * Metadata now exposed as individual properties. * Properties are editable in inspector (unless metadata name begins with _) under the metadata/ namespace. * Added the ability to Add/Remove metadata properties to the inspector. This is a functionality that was requested very often, that makes metadata work a bit more similar to custom properties in Blender. | |||
2022-03-20 | Rename `AStar` to `AStar3D` | Yuri Roubinsky | |
2022-03-18 | Merge pull request #58233 from bruvzg/gde_ts | Rémi Verschelde | |
2022-03-17 | Update color constants to use HEX codes | taigi100 | |
2022-03-17 | Unify TextServer built-in module and GDExtension code. | bruvzg | |
2022-03-12 | Fix Slerp C# docs and add test cases for vectors in the same direction | Aaron Franke | |
2022-03-10 | Merge pull request #58485 from aaronfranke/time-offset | Rémi Verschelde | |
2022-03-09 | Remove VARIANT_ARG* macros | reduz | |
* Very old macros from the time Godot was created. * Limited arguments to 5 (then later changed to 8) in many places. * They were replaced by C++11 Variadic Templates. * Renamed methods that take argument pointers to have a "p" suffix. This was used in some places and not in others, so made it standard. * Also added a dereference check for Variant*. Helped catch a couple of bugs. | |||
2022-03-09 | Remove unused GDNative code | Rémi Verschelde | |
This has been superseded by GDExtension so this code is no longer useful nor usable. There's still some GDNative-related stuff in platform export code which needs to be adapted for GDExtension (e.g. to include GDExtension libraries in exports). | |||
2022-02-23 | Add offset string from minutes conversion method to Time singleton | Aaron Franke | |
2022-02-16 | Style: Cleanup single-line blocks, semicolons, dead code | Rémi Verschelde | |
Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported. | |||
2022-02-12 | Add sub-pixel glyph positioning support. | bruvzg | |
2022-02-12 | Improve compilation speed (forward declarations/includes cleanup) | Hendrik Brucker | |
2022-02-10 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 2.2-dev from current git. Added `misc/scripts/codespell.sh` to make it easier to run it once in a while and update the skip and ignore lists. | |||
2022-02-08 | Revert "Add missing SNAME macro optimization to all theme methods call" | Rémi Verschelde | |
This reverts commit a988fad9a092053434545c32afae91ccbdfbe792. As discussed in #57725 and clarified in #57788, `SNAME` is not meant to be used everywhere but only in critical code paths. For theme methods specifically, it was by design that only getters use `SNAME` and not setters. | |||
2022-02-07 | Merge pull request #57490 from Calinou/test-add-animation | Rémi Verschelde | |
2022-02-06 | Add missing SNAME macro optimization to all theme methods call | jmb462 | |
2022-02-06 | Add a unit test suite for Animation | Hugo Locurcio | |
2022-02-05 | Merge pull request #57620 from Haydoggo/expression-exp-fix | Rémi Verschelde | |
Fix Expression's parsing of positive exponent literals | |||
2022-02-05 | Make parser treat all exponent literals as float | Hayden | |
2022-02-04 | Core: Move Vector2i to its own `vector2i.h` header | Rémi Verschelde | |
Also reduce interdependencies and clean up a bit. | |||
2022-02-04 | Core: Move Rect2i to its own `rect2i.h` header | Rémi Verschelde | |
And take the opportunity to improve interdependencies a bit with forward declares where possible. | |||
2022-02-04 | Cleanup and move char functions to the `char_utils.h` header. | bruvzg | |
2022-02-04 | String: Add contains(). | Anilforextra | |
2022-02-01 | Merge pull request #57469 from Sauermann/fix-rect2i-intersect | Rémi Verschelde | |
2022-01-31 | Fix incorrect Rect2i calculations: intersects and encloses | Markus Sauermann | |
Clarify expand documentation | |||
2022-01-30 | With auto_brace_complete enabled, selected text now gets wrapped by braces | Igor Kordiukiewicz | |