Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-15 | Use `switch` consistently in `_notification` (`scene` folder) | Rémi Verschelde | |
2022-02-13 | Limit inspector updates when dragging anchored controls | Yuri Sizov | |
2022-02-10 | Reorganize inspector layout workflow for Control nodes | Yuri Sizov | |
2022-02-03 | Remove get_focus_owner() from Control, replaced by ↵ | Gilles Roudière | |
get_viewport()->gui_get_focus_owner() | |||
2022-02-01 | Exposes gui_release_focus and gui_get_focus_owner to Viewport | Gilles Roudière | |
2022-01-31 | Revert "Fix control node transform animation jitter with pivot offset" | bruvzg | |
This reverts commit dfb7d46a2aaf9bef2c7dd067e699e70291062fb6. | |||
2022-01-21 | Merge pull request #56124 from KoBeWi/font_slayer | Rémi Verschelde | |
2022-01-19 | Ignore layout and translation changes in Controls outside of tree | Yuri Sizov | |
2022-01-18 | Merge pull request #47522 from madmiraal/rename-test_width-test_height | Rémi Verschelde | |
2022-01-06 | Merge pull request #56376 from pycbouh/theme-tombe-les-theme-properties | Rémi Verschelde | |
2022-01-05 | Merge pull request #56255 from PucklaMotzer09/control_unfocus | Rémi Verschelde | |
2022-01-04 | Rename Project Window width and height settings to match their function | Marcel Admiraal | |
2022-01-03 | Update copyright statements to 2022 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2021-12-31 | Correctly use fallback Theme values as last resort | Yuri Sizov | |
2021-12-26 | Unfocus Control on NOTIFICATION_EXIT_TREE | PucklaMotzer09 | |
2021-12-21 | Fix being unable to clear some theme overrides | kobewi | |
2021-12-10 | Merge pull request #55739 from Paulb23/text-edit-base-performance | Rémi Verschelde | |
2021-12-09 | Replace String comparisons with "", String() to is_empty() | Nathan Franke | |
Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings | |||
2021-12-08 | Optimise TextEdit base operations | Paulb23 | |
2021-12-07 | Fix bad mouse offset with Control::wrap_mouse() | jmb462 | |
2021-12-06 | Merge pull request #55662 from ↵ | Rémi Verschelde | |
KoBeWi/update_minimum_size_changed_to_update_minimum_size | |||
2021-12-06 | Fix bad popups offset in editor with single window off | jmb462 | |
Co-authored-by: Gil Arasa Verge <gilarasaverge@gmail.com> Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com> | |||
2021-12-06 | Rename minimum_size_changed() method | kobewi | |
2021-11-22 | Merge pull request #55151 from Chaosus/control_reset_size | Rémi Verschelde | |
2021-11-22 | Added `reset_size` method to `Control` and `Window` classes | Yuri Roubinsky | |
2021-11-15 | Fix drag and drop on LineEdit | ConteZero | |
2021-10-28 | clang-format: Disable alignment of operands, too unreliable | Rémi Verschelde | |
Sets `AlignOperands` to `DontAlign`. `clang-format` developers seem to mostly care about space-based indentation and every other version of clang-format breaks the bad mismatch of tabs and spaces that it seems to use for operand alignment. So it's better without, so that it respects our two-tabs `ContinuationIndentWidth`. | |||
2021-10-25 | Ignore empty Font resources as theme override. | bruvzg | |
Add range hint to font_size properties. Remove excessive `base_size` Font property. | |||
2021-10-23 | Fix unexpected crashes in `notification` | Zae | |
2021-10-19 | Implement TileMap patterns palette | Gilles Roudière | |
2021-10-04 | GDScript completion: Handle quote style ad-hoc to remove editor dependency | Rémi Verschelde | |
`core` and `scene` shouldn't depend on `editor`, so they can't query this style setting in `get_argument_options`. But we can handle it after the fact in GDScript's completion code. Also cleans up a couple extra unused invalid includes in `core`. | |||
2021-10-04 | Add the base scale factor to the Theme resource | Yuri Sizov | |
2021-10-01 | Implement TextServer GDExtension interface, remove TextServer GDNative ↵ | bruvzg | |
interface. | |||
2021-10-01 | Allow non-control Nodes to handle drag forwarding (e.g. Windows) | Eric M | |
2021-09-05 | Prevent editing properties managed by parent container | Awkor | |
2021-08-23 | Entirely removes BIND_VMETHOD in favor of GDVIRTUAL | reduz | |
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now. | |||
2021-08-22 | Replace BIND_VMETHOD by new GDVIRTUAL syntax | reduz | |
* New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits. | |||
2021-08-13 | Merge pull request #51642 from akien-mga/cleanup-use_single_quotes | Rémi Verschelde | |
2021-08-13 | Style: Cleanup code using `text_editor/completion/use_single_quotes` | Rémi Verschelde | |
2021-08-13 | Add bulk theme overrides to Control | Paulb23 | |
2021-07-31 | Make theme item overrides more obvious in the Inspector | Yuri Sizov | |
2021-07-30 | Fix "Custom *" theme sections being inside "Auto Translate" | Michael Alexsander | |
2021-07-29 | Add `auto_translate` toggle for automatic translation | Michael Alexsander | |
2021-07-25 | Merge pull request #50835 from bruvzg/optimize_is_rtl | Rémi Verschelde | |
Optimise `is_layout_rtl`. | |||
2021-07-25 | Merge pull request #50809 from akien-mga/iterators-const-references | Rémi Verschelde | |
2021-07-25 | Use const references where possible for List range iterators | Rémi Verschelde | |
2021-07-25 | Fix various typos with codespell | luz paz | |
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint` | |||
2021-07-25 | Optimise `is_layout_rtl` by caching its return value. | bruvzg | |
2021-07-23 | Use C++ iterators for Lists in many situations | Aaron Franke | |
2021-07-20 | Editor StringName and Viewport optimizations | Joan Fons | |
* Added explicit return type to the SNAME macro. * Add some extra SNAME usages. * Change some ClassDB methods to use const StringName & arguments. * Cache the Window parent in Control because it's used in is_layout_rtl(), which is called often. * Only enable internal processing for viewports that need it. * Change CanvasItem::group to be a StringName because it's only used as that. |