Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-11 | Fix crash in CodeEdit when caret column exceeds line length. | Eric M | |
2023-01-09 | Removed unused property hints and `Object::get_translatable_strings()` | Juan Linietsky | |
* Remove unused `EditorPropertyMember` and related hints, previouly used by VisualScript. Such logic should be implemented in the VS module itself. * As the above broke compatibility with the VS module, clean up the other hacks that were still in core in support of VisualScript. * `PROPERTY_USAGE_INTERNATIONALIZED` was only used in Object's `get_translatable_strings()`, which is a legacy function not used anywhere. So both are removed. * Reordered some usage flags after the above removal to minimize the diff. * General clean up. Fixes #30203. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2023-01-09 | Fix inconsistent state of Controls when editing and running scenes | Yuri Sizov | |
2023-01-09 | Fix unpressable buttons | Danil Alexeev | |
2023-01-09 | Merge pull request #71045 from reduz/use-bitfield-in-core-types | Rémi Verschelde | |
Use BitField<> in core type masks | |||
2023-01-08 | Merge pull request #71037 from reduz/array-format-bitfield | Rémi Verschelde | |
Use BitField<> hint for Mesh.ArrayFormat and Control.SizeFlags | |||
2023-01-08 | Use BitField<> in core type masks | Juan Linietsky | |
* All core types masks are now correctly marked as bitfields. * The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks. * Most bitmask operations replaced by functions in BitField<> * Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is. * Documentation and API dump updated to reflect bitfields in core types. | |||
2023-01-08 | Use BitField<> hint for ArrayFormat | Juan Linietsky | |
This was missing in the conversion of bitflags to BitField<>. | |||
2023-01-08 | Expose TabBar::clear_tabs to GDScript | Stanislav Labzyuk | |
2023-01-07 | Merge pull request #36301 from KoBeWi/daddy_node | Rémi Verschelde | |
Add reparent methods to Node | |||
2023-01-06 | Merge pull request #68429 from KoBeWi/PropertySettings | Rémi Verschelde | |
Add PropertyInfo overload for GLOBAL_DEF | |||
2023-01-06 | fix typo 'comleption' -> 'completion' | Michael Bickel | |
2023-01-05 | One Copyright Update to rule them all | Rémi Verschelde | |
As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see". | |||
2023-01-05 | Merge pull request #70933 from fire/empty-organize-graph-node | Rémi Verschelde | |
Update GraphEdit to automatically arrange nodes if nothing is selected | |||
2023-01-04 | Update graph_edit.cpp to automatically arrange nodes if nothing is selected. | K. S. Ernest (iFire) Lee | |
2023-01-03 | Fix Tree overflow without scrolling being enabled | Haoyu Qiu | |
2023-01-03 | Merge pull request #70865 from bruvzg/fd_crash | Rémi Verschelde | |
Fix file dialog crash on forward click when history is empty. | |||
2023-01-03 | Merge pull request #70690 from Sauermann/fix-menubar-hover | Rémi Verschelde | |
Fix hovering-color of MenuBar entries when reentering MenuBar | |||
2023-01-03 | Merge pull request #70763 from Maran23/4-x-tree-icon-gap-with-hscrollbar | Rémi Verschelde | |
Fix Scene Tree Editor icons shift when the pane is small | |||
2023-01-03 | Fix file dialog crash on forward click when history is empty. | bruvzg | |
2022-12-31 | Use the vertical scrollbar when calculating the width that can be used for ↵ | Marius Hanl | |
drawing The horizontal scrollbar was used before, which is not correct as it has no influence to the drawing width Also fixed the other wrong locations | |||
2022-12-29 | Fix hovering-color of MenuBar entries when reentering MenuBar | Markus Sauermann | |
When reentering MenuBar with the mouse cursor, the hovering-color was not set, because the previously hovered entry was still referenced in selected_menu. This PR resets selected_menu on mouse-exit. | |||
2022-12-27 | Fix errors when `TabBar` is empty | Michael Alexsander | |
2022-12-23 | Merge pull request #70407 from Koyper/rich_text_bold_italics | Yuri Sizov | |
[RTL] Fix push bold or italics not using bold_italics_font when required | |||
2022-12-22 | Fixed RichTextLabel push bold/italic to correctly use bold_italic font. | Koyper | |
2022-12-22 | Merge pull request #70334 from Sauermann/fix-button-group-doc | Rémi Verschelde | |
Add configuration warning when ButtonGroup is used with non-toggleable buttons | |||
2022-12-22 | Merge pull request #70413 from Koyper/rtl_rename_remove_line | Rémi Verschelde | |
[RTL] Rename remove_line() to remove_paragraph() for naming consistancy. | |||
2022-12-22 | Add configuration warning when ButtonGroup is used with non-toggleable buttons | Markus Sauermann | |
Also fix ambiguous documentation of ButtonGroup. | |||
2022-12-21 | Merge pull request #68255 from jbcolli2/ColorPickerBug | Rémi Verschelde | |
Fixed Issue #68194 involving ColorPicker being allowed to align horizontally when it shouldn't | |||
2022-12-21 | Renamed RTL remove_line() to remove_paragraph(). | Koyper | |
2022-12-20 | Fix misaligned edit box when clicking on `Tree` items with different sizes | Michael Alexsander | |
2022-12-19 | Merge pull request #70297 from Paulb23/fix-autocomplete-brace-completion | Rémi Verschelde | |
Fix autocomplete with autobrace completion not adding closing pair | |||
2022-12-19 | Fix autocomplete with autobrace completion not adding closing pair | Paulb23 | |
2022-12-19 | Restore 'rotation_degrees' properties. | Juan Linietsky | |
By popular demand, restoring the helper properties to rotate objects in degrees. Affected are local and global rotations for: * Node2D * Node3D * Control | |||
2022-12-17 | Add `uri` property for LinkButton | Zak | |
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-12-17 | Merge pull request #70168 from Haydoggo/autocomplete-placement-fix | Rémi Verschelde | |
Fix autocomplete box placement | |||
2022-12-17 | Fix autocomplete box placement | Hayden Leete | |
2022-12-15 | [RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables. | bruvzg | |
2022-12-15 | Merge pull request #69680 from LucasLaukka/bugfix-line_edit | Rémi Verschelde | |
Fix color picker showing incorrect number of digits when changing display scale | |||
2022-12-15 | [RTL] Fix nested tables getting parent offset applied multiple times. | bruvzg | |
2022-12-14 | [RTL] Fix image click detection. | bruvzg | |
2022-12-13 | [TextEdit] Fix IME intermediate text not displayed when TextEdit is empty ↵ | bruvzg | |
and placeholder is set. | |||
2022-12-13 | Fix crash after executing ItemList.set_icon_scale | Haoyu Qiu | |
2022-12-12 | Merge pull request #61855 from Calinou/popup-centered-minsize-fix-freeze | Rémi Verschelde | |
Fix infinite loop when calling `Control.popup_centered_minsize()` | |||
2022-12-12 | Merge pull request #68546 from marzecdawid/fix-deselect-all-in_tree | Rémi Verschelde | |
Fix errors while deselecting all tree items; issue #65185 | |||
2022-12-11 | Add PropertyInfo overload for GLOBAL_DEF | kobewi | |
2022-12-10 | Merge pull request #69844 from AmyGilhespy/patch-1 | Rémi Verschelde | |
Fix glyph_flags typo. | |||
2022-12-10 | Merge pull request #68728 from Rindbee/fix-wrong-edit | Rémi Verschelde | |
Make sure the popup editor is hidden when selected | |||
2022-12-09 | Fix glyph_flags typo. | AmyGilhespy | |
2022-12-09 | Merge pull request #69353 from YuriSizov/window-be-more-like-your-brother | Rémi Verschelde | |
Copy local theme overrides from `Control` to `Window` |