Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-31 | Merge pull request #67507 from Sauermann/fix-toplevel-root-control-node | Rémi Verschelde | |
Fix event propagation to child after set_as_toplevel | |||
2023-01-30 | Updates VideoDecoder plugin API to GDExtension. | anish bhobe | |
Adds VideoStream and relevant resource loaders to migrate external GDNative plugins to GDExtension. Adds a VideoStreamLoader as a specialization of ResourceFormatLoader as ClassDB::is_parent_class is inaccessible from GDExtension currently. Using Object* instead of Ref<T> in order to avoid the refcount bug (godotengine/godot-cpp#652) Also another bug is in ResourceLoader in use on the extension side that requires fixing. | |||
2023-01-30 | [RichTextLabel] Fix thread unsafe `set_physics_process_internal` usage. Use ↵ | bruvzg | |
`WorkerThreadPool` instead of creating new threads. | |||
2023-01-29 | Merge pull request #71896 from poohcom1/fix/autocomplete-substring-filter | Rémi Verschelde | |
Fix autocomplete filter not including substrings | |||
2023-01-28 | Fix connections drawing in GraphEdit minimap | Stanislav Labzyuk | |
2023-01-27 | Merge pull request #58334 from Sauermann/fix-to-gui-or-not-to-gui | Rémi Verschelde | |
Fix SubViewportContainer processing Events before other Control-Nodes | |||
2023-01-27 | Merge pull request #72167 from dalexeev/line-text-edit-context-menu | Rémi Verschelde | |
Fix `LineEdit` and `TextEdit` context menus not customizable | |||
2023-01-27 | Merge pull request #72149 from MinusKube/rich_text_visible_chars_bug | Rémi Verschelde | |
Fix char offset calculation when processing RichTextLabel line caches | |||
2023-01-27 | Fix `LineEdit` and `TextEdit` context menus not customizable | Danil Alexeev | |
2023-01-27 | Fix char offset calculation when processing RichTextLabel line caches | MinusKube | |
2023-01-27 | Merge pull request #71427 from ↵ | Rémi Verschelde | |
Calinou/spinbox-custom-arrow-step-add-property-hint Add a property hint for SpinBox's `custom_arrow_step` property | |||
2023-01-26 | Merge pull request #66688 from Sauermann/fix-control-get-global-rect-coordinates | Rémi Verschelde | |
Fix Control rect coordinate system inconsistency | |||
2023-01-26 | [Windows] Fix committing IME text without IME deactivation. | bruvzg | |
2023-01-26 | Merge pull request #72046 from MewPurPur/buttons-inspector-clutter-reduction | Rémi Verschelde | |
Add groups to Button and BaseButton to reduce inspector clutter | |||
2023-01-25 | Add more sections to Button and BaseButton | VolTer | |
2023-01-25 | Merge pull request #71983 from vmedea/push-customfx | Rémi Verschelde | |
Expose RichTextLabel::push_customfx to GDScript | |||
2023-01-25 | Merge pull request #71685 from groud/gesture_into_viewpanner | Rémi Verschelde | |
Add gesture to ViewPanner and simplify a bit its API | |||
2023-01-25 | Merge pull request #71142 from aaronfranke/never-duplicate-script | Rémi Verschelde | |
Add `PROPERTY_USAGE_NEVER_DUPLICATE` flag and use for script | |||
2023-01-25 | Merge pull request #71330 from Geometror/richtextlabel-fit-content | Rémi Verschelde | |
[RichTextLabel] Match minimum size calculation of Label (proper content fitting) | |||
2023-01-24 | PropertyUsage: Rename "DO_NOT_SHARE_ON_DUPLICATE" to "ALWAYS_DUPLICATE" | Aaron Franke | |
2023-01-24 | Improve clarity of Tree's activated/double-clicked signals | Aaron Franke | |
Co-authored-by: Yuri Sizov <yuris@humnom.net> | |||
2023-01-24 | Expose RichTextLabel::push_customfx to GDScript | mara | |
2023-01-23 | Add gesture to ViewPanner and simplify a bit its API | Gilles Roudière | |
2023-01-23 | Cleanup and unify keyboard input. | bruvzg | |
- Unify keycode values (secondary label printed on a key), remove unused hardcoded Latin-1 codes. - Unify IME behaviour, add inline composition string display on Windows and X11. - Add key_label (localized label printed on a key) value to the key events, and allow mapping actions to the unshifted Unicode events. - Add support for physical keyboard (Bluetooth or Sidecar) handling on iOS. - Add support for media key handling on macOS. Co-authored-by: Raul Santos <raulsntos@gmail.com> | |||
2023-01-23 | Convert en_GB spelling to en_US with codespell | Rémi Verschelde | |
2023-01-23 | Fix autocomplete filter not including substrings | poohcom1 | |
2023-01-22 | Merge pull request #71686 from YuriSizov/stylebox-min-size-but-better | Rémi Verschelde | |
Clean-up, harmonize, and improve StyleBox API | |||
2023-01-22 | Merge pull request #71609 from lufog/menubar-auto-translation | Rémi Verschelde | |
MenuBar add auto-translation of Menu names | |||
2023-01-21 | Merge pull request #70773 from KoBeWi/lector | Rémi Verschelde | |
Add range iterator to LocalVector | |||
2023-01-21 | Merge pull request #67253 from KoBeWi/PICKER_USAGE_NO_EDITOR | Rémi Verschelde | |
Remove editor dependencies from ColorPicker | |||
2023-01-21 | Use range iterators in LocalVector loops | kobewi | |
2023-01-21 | Fix constant editor redraw after shortcut | Juan Linietsky | |
Introduced by me by mistake on #71328. Fixes #71652. | |||
2023-01-20 | MenuBar add auto-translation of Menu names | Алексей Смирнов | |
2023-01-19 | Merge pull request #71598 from bruvzg/gdscript_bidi_override | Rémi Verschelde | |
Implement BiDi override mode for GDScript source. | |||
2023-01-19 | Clean-up, harmonize, and improve StyleBox API | Yuri Sizov | |
- Make all margin properties follow the same naming convention (their getter and setter too). - Remove a virtual counterpart of `get_style_margin` from API. - Allow to override `get_minimum_size` from scripting and remove `get_center_size`. | |||
2023-01-19 | Cleanup unused engine code v2 | kobewi | |
2023-01-18 | Merge pull request #60904 from KoBeWi/👻👻👻 | Rémi Verschelde | |
Allow unindent without selection | |||
2023-01-18 | Implement BiDi override mode for GDScript source. | bruvzg | |
2023-01-18 | Merge pull request #71379 from KoBeWi/destruction_of_compatibility_function | Rémi Verschelde | |
Remove set_drag_forwarding_compat() | |||
2023-01-18 | Allow unindent without selection | kobewi | |
2023-01-17 | Prevent infinite cascade of re-layout after label text reshaping | Pedro J. Estébanez | |
2023-01-16 | Merge pull request #70685 from stmSi/fix-nan-graphedit-infinite-loop | Rémi Verschelde | |
Fix: NaN value making infinite loop inside GraphEdit's `NOTIFICATION_DRAW` | |||
2023-01-16 | Merge pull request #70433 from Sauermann/fix-treeitem-id | Rémi Verschelde | |
Fix confusion about TreeItem.add_button ambiguity between id and index | |||
2023-01-14 | Add a property hint for SpinBox's `custom_arrow_step` property | Hugo Locurcio | |
Only positive or zero values make sense for this property. | |||
2023-01-14 | Fixed adding extra quote when completing strings | Paulb23 | |
2023-01-14 | Remove set_drag_forwarding_compat() | kobewi | |
2023-01-14 | Merge pull request #71328 from reduz/button-shortcuts-no-longer-press | Yuri Sizov | |
Button shortcuts no longer "press" the Button. | |||
2023-01-13 | Add expand mode compat to TextureRect | kobewi | |
2023-01-13 | Button shortcuts no longer "press" the Button. | Juan Linietsky | |
* Button shortcuts were treated as generic input events on buttons. This means that to activate a button shortcut you had to press and release. * This logic is removed and now shortcuts always activate on press. * This makes the editor feel more responsive and solves problems related to this behavior. Fixes #45033 and possibly others. | |||
2023-01-13 | [RichTextLabel] Match minimum size calculation of Label | Hendrik Brucker | |
(optional via fit_content property) |