Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-03 | Rename Basis get_axis to get_column, remove redundant methods | Aaron Franke | |
2022-05-03 | Merge pull request #60627 from aaronfranke/rename-elements | Rémi Verschelde | |
Rename Transform2D and Basis `elements` to `columns` and `rows` respectively | |||
2022-05-03 | Merge pull request #60714 from Calinou/typedef-remove-ref | Rémi Verschelde | |
Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>` | |||
2022-05-03 | Merge pull request #60601 from touilleMan/gdextension_get_library_path | Rémi Verschelde | |
Add GDNativeInterface::get_library_path to GDExtension | |||
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 #59895 from akien-mga/clang-tidy | Rémi Verschelde | |
2022-05-02 | Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init` | Rémi Verschelde | |
Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors. | |||
2022-05-02 | Fix resource dependence renaming. | bruvzg | |
2022-05-01 | Fix left aligned integer sign in string formatting | Haoyu Qiu | |
2022-04-30 | Merge pull request #60556 from ↵ | Rémi Verschelde | |
KoBeWi/D_METHOD1,D_METHOD2,D_METHOD3,D_METHOD4,D_METHOD5,D_METHOD6,D_METHOD7,D_METHOD8,D_METHOD9,D_METHOD10 | |||
2022-04-30 | Change D_METHOD to variadic template | kobewi | |
2022-04-30 | Simplify Callable error text methods | kobewi | |
2022-04-29 | Rename Basis "elements" to "rows" | Aaron Franke | |
2022-04-29 | Rename Transform2D "elements" to "columns" | Aaron Franke | |
2022-04-29 | Add GDNativeInterface::get_library_path to GDExtension | Emmanuel Leblond | |
2022-04-27 | Merge pull request #56093 from bruvzg/pck_section_load | Rémi Verschelde | |
Improve embedded PCK loading and exporting. | |||
2022-04-27 | Merge pull request #59582 from Faless/net/4.x_tcp_explicit_poll | Rémi Verschelde | |
2022-04-27 | Merge pull request #59932 from vnen/remove-arg-names-release | Rémi Verschelde | |
2022-04-27 | Merge pull request #59979 from bruvzg/cpp_check2 | Rémi Verschelde | |
2022-04-27 | Expose move_to_trash() | kobewi | |
2022-04-26 | Merge pull request #60420 from AndreaCatania/fix_looup_ptr_const | Rémi Verschelde | |
Add mutable OAHashMap::lookup_ptr function to fix mutability. | |||
2022-04-25 | Merge pull request #60438 from Paulb23/text-edit-tests | Rémi Verschelde | |
Add TextEdit unit tests and multiple fixes. | |||
2022-04-25 | Merge pull request #60424 from timothyqiu/fa-unref | Rémi Verschelde | |
Close `FileAccess` before accessing it with `DirAccess` | |||
2022-04-25 | Merge pull request #60298 from reduz/scene-unique-paths | Rémi Verschelde | |
2022-04-25 | Implement Scene Unique Nodes | reduz | |
Implements https://github.com/godotengine/godot-proposals/issues/4096 * Nodes can be marked unique to the scene in the editor (or via code). * Unique nodes can be accessed via the **%** prefix at any point in the path. From that point in the path (depending on whether the scene of the path is), the unique node will be fetched. * Implementation is very optimal, as these nodes are cached. | |||
2022-04-22 | Merge pull request #60201 from laws65/datetime-string-message-fix | Aaron Franke | |
Proper (in)validation of negative values in datetime strings and datetime dicts | |||
2022-04-22 | Use Input::push_input for tests plus extra mouse testing | Paulb23 | |
2022-04-22 | Close FileAccess before accessing it with DirAccess | Haoyu Qiu | |
2022-04-22 | Add mutable OAHashMap::lookup_ptr function to fix mutability. | AndreaCatania | |
2022-04-20 | Improve embedded PCK loading and exporting. | bruvzg | |
Windows export process: Limit size of executable with embedded PCK to 4 GB. Use "rcedit" before embedding PCK. Capture and process "rcedit" errors. Windows, Linux: Add support for PCK loading from executable "pck" section. | |||
2022-04-20 | Fix more issues found by cppcheck. | bruvzg | |
2022-04-19 | Merge pull request #50175 from kleonc/image-blit-blend-fix-rects | Hugo Locurcio | |
`Image.blit_rect/blend_rect` Fix rects calculations for negative arguments | |||
2022-04-17 | Proper validation of negative values in datetime strings and datetime dicts | laws65 | |
2022-04-15 | Quick fix: Crash when parsing invalid datetime string #60189 | Oğuzhan Eroğlu | |
2022-04-14 | Merge pull request #60203 from RedHeadphone/master | Rémi Verschelde | |
Fix Time.get_datetime_string_from_dict() does not validate input | |||
2022-04-14 | Merge pull request #60208 from Magorx/input-set-custom-mouse-cursor-fix | Rémi Verschelde | |
Added p_shape check to avoid engine crash in DisplayServer | |||
2022-04-13 | Merge pull request #60093 from TokageItLab/reset-blend | Rémi Verschelde | |
Make blend animation to use ResetTrack as default value | |||
2022-04-13 | Merge pull request #60191 from novaplusplus/file-open-fix | Rémi Verschelde | |
2022-04-13 | Fix "File must be opened" error with File.open() | nova++ | |
2022-04-13 | Added p_shape check to avoid engine crush | KingCakeTheFruity | |
2022-04-13 | validate input in Time.get_datetime_string_from_dict() | RedHeadphone | |
format fix better fix to handle ERR_FAIL_COND_V_MSG return data type | |||
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-13 | Merge pull request #60097 from V-Sekai/fix_triangle_mesh_selection | Rémi Verschelde | |
Rearrange TriangleMesh function to workaround MSVC compiler bug | |||
2022-04-13 | Rearrange TriangleMesh stack level incrementation to fix MSVC compiler ↵ | SaracenOne | |
optimization bug | |||
2022-04-12 | Merge pull request #60078 from Pineapple/cowdata-get-data | Rémi Verschelde | |
Remove get_data() from CowData | |||
2022-04-12 | Remove or make private `FileAccess` `close()` methods. | bruvzg | |
2022-04-12 | Narrow FileAccess scope to prevent deadlocks. | bruvzg | |
2022-04-11 | Merge pull request #53573 from Klowner/53568-safelist-leak-fix | Rémi Verschelde | |
2022-04-11 | Merge pull request #60046 from Zylann/print_line_function | Rémi Verschelde | |
2022-04-11 | Make FileAccess and DirAccess classes reference counted. | bruvzg | |