Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-13 | Merge pull request #54956 from ↵ | Rémi Verschelde | |
Calinou/lineedit-textedit-add-caret-width-theme-item Add a theme constant to change LineEdit and TextEdit's caret width | |||
2022-01-09 | [TextServer] Improve ligature cursor handling. | bruvzg | |
Fix mid-grapheme hit test. Fix OpenType features property handling, add default features override option. Enable mid-grapheme cursor by default. | |||
2022-01-07 | Add a theme constant to change LineEdit and TextEdit's caret width | Hugo Locurcio | |
This can be useful to improve caret visibility, especially at larger font sizes. This can also be used for accessibility purposes. | |||
2022-01-02 | Fix usage of "Return" in the docs | kobewi | |
2021-12-15 | Document that transparent StyleBoxes/textures should be used for UI focus | Hugo Locurcio | |
2021-12-03 | Make overridden properties link to parent definition | Yuri Sizov | |
Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com> | |||
2021-12-03 | Merge pull request #55520 from pycbouh/docs-sort-group-newline-theme-and-enums | Rémi Verschelde | |
2021-12-02 | Add drag and drop to TextEdit | ConteZero | |
2021-12-01 | Sort and group theme properties in docs, improve formatting for theme and enums | Yuri Sizov | |
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-10-27 | Add option to make selection unique | ConteZero | |
2021-10-20 | Merge pull request #53702 from ConteZero/primary_clipboard_linux | Rémi Verschelde | |
2021-10-18 | Added primary clipboard for Linux | ConteZero | |
2021-10-10 | Add warnings to methods that give access to internal nodes | Yuri Sizov | |
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-05 | doc: Fix style inconsistencies for `[b]Note:[/b]` paragraphs | Rémi Verschelde | |
And fix up formatting not supported by makerst. | |||
2021-09-21 | Added search colors to TextEdit and CodeEdit theme | Paulb23 | |
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-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. | |||
2021-08-12 | Fix breakpoint toggle signal not firing when expected | Paulb23 | |
2021-08-12 | Cleanup and complete TextEdit inspector and docs | Paulb23 | |
2021-08-12 | Cleanup and expose viewport / scrolling methods | Paulb23 | |
2021-08-12 | Rename readonly to editable | Paulb23 | |
2021-08-12 | Rename insert mode to overtype mode | Paulb23 | |
2021-08-12 | Cleanup TextEdit selection methods | Paulb23 | |
2021-08-12 | Expose and cleanup TextEdit line wrap API | Paulb23 | |
2021-08-12 | Cleanup and rename caret operations | Paulb23 | |
2021-08-12 | Make TextEdit cut, copy and paste overridable | Paulb23 | |
2021-08-04 | Add theme item descriptions to the online documentation | Yuri Sizov | |
2021-08-01 | Clean up and complete CodeEdit inspector and docs | Paulb23 | |
2021-08-01 | Move symbol lookup into CodeEdit | Paulb23 | |
2021-08-01 | Move line length guidelines into CodeEdit | Paulb23 | |
2021-08-01 | Move brace matching into CodeEdit | Paulb23 | |
2021-08-01 | Move auto brace completion to CodeEdit | Paulb23 | |
2021-07-30 | doc: Use self-closing tags for `return` and `argument` | Rémi Verschelde | |
For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there. | |||
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-19 | Fixed typos in `TextEdit::GutterType` enum | Yuri Roubinsky | |
2021-07-17 | Create many types of popups on demand | reduz | |
* LineEdit popups created on demand. * TextEdit popups created on demand. * SpinSlider popups created on demand. * ResourcePicker popups created on demand. Improves editor responsiveness. | |||
2021-07-06 | Add multiple descriptions to several classes | Nick Huelin | |
This pull request adds several descriptions to multiple different classes. This improves the completeness of the documentation and enhances usability by doing so. | |||
2021-06-20 | Move indent management to CodeEdit | Paulb23 | |
2021-06-18 | Better format arguments in variant parser | Michael Alexsander Silva Dias | |
2021-06-01 | Move code folding into CodeEdit and hide line hiding API | Paulb23 | |
2021-06-01 | Update String/Comment, autocomplete and hints docs | Paulb23 | |
2021-05-22 | Add custom background line colour to TextEdit and remove marked lines | Paulb23 | |
2021-05-18 | Merge pull request #48528 from sent44/textedit | Rémi Verschelde | |
Expose get_total_visible_rows method to GDScript | |||
2021-05-10 | Scroll faster when holding Alt in TextEdit (and script editor) | Hugo Locurcio | |
This feature is inspired by a similar feature found in Visual Studio Code. | |||
2021-05-07 | Expose get_total_visible_rows as get_visible_line_count | sent44 | |
2021-03-10 | doc: Sync classref with current source | Rémi Verschelde | |
2021-03-05 | Docs: Port Code Examples to C# (R, S, T, U) | HaSa1002 | |
* RenderingServer * RichTextEffect * SceneTree * SceneTreeTimer * ScriptCreateDialog * SpinBox * Sprite2D * StreamPeer * String * SurfaceTool * TextEdit * TileMap * Tree * Tween * UDPServer * UndoRedo Co-authored-by: Aaron Franke <arnfranke@yahoo.com> |