Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-12 | Merge pull request #55729 from ↵ | Rémi Verschelde | |
cdemirer/fix-script-editor-unexpected-scroll-upon-resize | |||
2021-12-11 | Fix unexpected scroll on resize + consistent return value | cdemirer | |
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-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-03 | Fixed TextEdit underline draw pos | Paulb23 | |
2021-12-02 | Add drag and drop to TextEdit | ConteZero | |
2021-11-23 | Rename `remove()` to `remove_at()` when removing by index | Lightning_A | |
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-22 | Add methods to get position from column and line in TextEdit | Yuri Sizov | |
2021-11-17 | Fix TextEdit mouse interactions when the last line is hidden | Paulb23 | |
2021-11-16 | Rename built-in `SGN()` macro to `SIGN()` | Hugo Locurcio | |
This matches the name of the GDScript function (except it's uppercase here). | |||
2021-11-12 | Use "enum class" for input enums | Aaron Franke | |
2021-11-10 | Merge pull request #54204 from Ev1lbl0w/bugfix-textedit_selection_mode_crash | Rémi Verschelde | |
2021-11-10 | Fix crash with indexing array with bad values | Ev1lbl0w | |
2021-10-27 | Merge pull request #54166 from ConteZero/unique_selection | Rémi Verschelde | |
2021-10-27 | Add option to make selection unique | ConteZero | |
2021-10-23 | Merge pull request #54045 from ConteZero/primary_clipboard_linux_fix_warning | Rémi Verschelde | |
2021-10-23 | Fix primary clipboard warning | ConteZero | |
2021-10-21 | Use TitleCase for CTL dialog menu options | Hugo Locurcio | |
This is more consistent with other actions exposed in the dialog. | |||
2021-10-20 | Merge pull request #53702 from ConteZero/primary_clipboard_linux | Rémi Verschelde | |
2021-10-19 | Fix: typo in TextParagraph class and docs | Murilo Gonçalves | |
2021-10-18 | Added primary clipboard for Linux | ConteZero | |
2021-10-16 | Fix null crash with TextEdit | Ricardo Subtil | |
2021-10-09 | Fix missing argument names in bindings | Rémi Verschelde | |
While at it, tweak some boolean setters to use `p_enabled` for the bool. Also renames `draw_minimap()` to `set_draw_minimap()`. | |||
2021-10-06 | Fix crash when tooltip_request_func object is freed | Haoyu Qiu | |
2021-10-04 | Fix caret position and viewport centering after deleting line (Ctrl-X) | jmb462 | |
2021-10-04 | Remove EDSCALE dependency from /scene/gui | Yuri Sizov | |
2021-10-01 | Implement TextServer GDExtension interface, remove TextServer GDNative ↵ | bruvzg | |
interface. | |||
2021-09-30 | Merge pull request #53112 from EricEzaM/better-breakpoint-gutter | Rémi Verschelde | |
2021-09-30 | Improved breakpoint gutter for CodeEdit. | Eric M | |
Added preview of breakpoint placement on hover. Added override of icon for the Editor to use an SVG so it is no longer blurry. | |||
2021-09-29 | Fix TextOp setting to none when typing | Paulb23 | |
2021-09-26 | Fix LineEdit and TextEdit double-click and triple-click selection | jmb462 | |
2021-09-23 | Construct values only when necessary. | Anilforextra | |
2021-09-14 | Merge pull request #52185 from Paulb23/nested-complex-ops | Rémi Verschelde | |
Allow nested complex ops in TextEdit | |||
2021-09-13 | Merge pull request #52443 from Paulb23/code-edit-indext-fixes | Rémi Verschelde | |
Fix brace placement with space auto indent | |||
2021-09-08 | Merge pull request #52106 from Paulb23/text-edit-optimisation | Gilles Roudière | |
Optimise TextEdit get line height and width | |||
2021-09-06 | Fix brace placement with space auto indent | Paulb23 | |
2021-09-04 | Add visual feedback when hovering or dragging the code minimap grabber | Hugo Locurcio | |
This makes it more obvious that the minimap grabber can be dragged to scroll. | |||
2021-08-28 | Allow nested complex ops in TextEdit | Paulb23 | |
2021-08-28 | Optimise TextEdit get height and width | Paulb23 | |
2021-08-28 | Add support for internal nodes | kobewi | |
2021-08-27 | Makes FontData importable resource. | bruvzg | |
Adds multi-channel SDF font texture generation and rendering support. Adds per-font oversampling support. Adds FontData import plugins (for dynamic fonts, BMFonts and monospaced image fonts), font texture cache pre-generation and loading. Adds BMFont binary format and outline support. | |||
2021-08-23 | Merge pull request #51947 from AnilBK/redundant-assignments | Michael Alexsander | |
[cppcheck] Remove some redundant assignments. | |||
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-21 | Remove redundant assignments. | Anilforextra | |
Use used_in_transfer instead of used_in_compute twice. | |||
2021-08-17 | Improve Undo/Redo menu items | Haoyu Qiu | |
* Make Undo/Redo menu items disabled when clicking it does nothing. * Context menu of `TextEdit` * Context menu of `LineEdit` * Editor's Scene menu * Script editor's Edit menu and context menu (for Script and Text) * Make editor undo/redo log messages translatable. * Mark `UndoRedo`'s `has_{un,re}do()` methods as `const`. * Expose `TextEdit`'s `has_{un,re}do()` to scripts since `{un,re}do()` are already available. |