Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-13 | Add get_character_line method for RichTextLabel | markdibarry | |
Adds the ability to get the line number of provided character position Fix arg name Add get_character_paragraph Replaced glyph logic with code suggestions, added get_character_paragraph method Run doctool Use built-in method Replace TS access with built in method | |||
2022-02-10 | Add get_content_width method | markdibarry | |
Adds a get_content_width method to RichTextLabel | |||
2022-02-03 | Add auto-wrap mode property to the RichTextLabel, set default auto-wrap mode ↵ | bruvzg | |
to AUTOWRAP_WORD_SMART to match 3.x behavior. | |||
2022-01-15 | Mention that modifying text erases BBCode stacks | kobewi | |
2022-01-03 | Merge pull request #55487 from YeldhamDev/scroll_bikeshedding | Rémi Verschelde | |
2021-12-23 | Merge pull request #55636 from bruvzg/vis_char_modes | Rémi Verschelde | |
Add different "visible characters" behavior modes. | |||
2021-12-15 | Document that transparent StyleBoxes/textures should be used for UI focus | Hugo Locurcio | |
2021-12-09 | align to horizontal_alignment, valign to vertical_alignment, related | Nathan Franke | |
2021-12-06 | Add different "visible characters" behavior modes. | bruvzg | |
2021-12-03 | Make overridden properties link to parent definition | Yuri Sizov | |
Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com> | |||
2021-12-01 | Sort and group theme properties in docs, improve formatting for theme and enums | Yuri Sizov | |
2021-11-30 | Rename all methods that return `ScrollBar` nodes to `get_*_scroll_bar()` | Michael Alexsander | |
2021-11-15 | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | |
2021-11-06 | Fix Label and RichTextLabale text shadows and shadow outlines. | bruvzg | |
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 | Make RichTextLabel's parse_bbcode and append_text return void | Haoyu Qiu | |
2021-10-10 | Add warnings to methods that give access to internal nodes | Yuri Sizov | |
2021-10-06 | doc: Update links to latest documentation after content reorganization | Rémi Verschelde | |
2021-09-16 | Remove bbcode_text from RichTextLabel | HaSa1002 | |
Also renames: - append_bbcode -> append_text - get_bbcode -> get_text - set_bbcode -> set_text - get_text -> get_parsed_text Property text is: set_text get_text | |||
2021-09-16 | Merge pull request #50197 from SirQuartz/patch-16 | Max Hilbrunner | |
Add note to `RichTextLabel` about BBCode and `push_*/pop` functions | |||
2021-08-20 | Fix line_separation constant working incorrectly in RichTextLabel | requizm | |
2021-08-08 | [Text Server] Improve object (image/table) inline alignment. | bruvzg | |
2021-08-04 | Add theme item descriptions to the online documentation | Yuri Sizov | |
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-07 | Add note to `RichTextLabel` | Nick Huelin | |
2021-06-20 | Rich Text Label now allows for foreground colors and background colors | golfinq | |
2021-06-18 | Better format arguments in variant parser | Michael Alexsander Silva Dias | |
2021-02-15 | Expose RichTextLabel selection to script | PouleyKetchoupp | |
Expose existing get_selection_text and add methods to get the current selection index from and index to. | |||
2021-02-14 | [CTL] Add missing font outline drawing routines and theme constants. | bruvzg | |
2021-01-28 | doc: Sync classref with current source | Rémi Verschelde | |
2021-01-24 | Change themes *_color_* to *_*_color | Marcel Admiraal | |
Changed: font_color_accel -> font_accelerator_color font_color_bg -> font_unselected_color font_color_disabled -> font_disabled_color font_color_fg -> font_selected_color font_color_hover -> font_hover_color font_color_hover_pressed -> font_hover_pressed_color font_color_pressed -> font_pressed_color font_color_readonly -> font_readonly_color font_color_selected -> font_selected_color font_color_shadow -> font_shadow_color font_color_uneditable -> font_uneditable_color icon_color_disabled -> icon_disabled_color icon_color_hover -> icon_hover_color icon_color_hover_pressed -> icon_hover_pressed_color icon_color_normal -> icon_normal_color icon_color_pressed -> icon_pressed_color Also includes: font_outline_modulate -> font_outline_color tab_fg -> tab_selected tab_bg -> tab_unselected | |||
2021-01-18 | RichTextLabel: adds separate `get_total_x_count`, `get_visible_x_count` and ↵ | bruvzg | |
`scroll_to_x` functions for wrapped lines and paragraphs (newlines). | |||
2021-01-14 | Keep RichTextLabel visible character properties in sync | Alexander Pech | |
The RichTextLabel class is inconsistent in how it updates the visible_characters and percent_visible properties when either is changed. To keep both properties consistent, update percent_visible when setting the visible_characters property. For both properties, when setting one, notify change for the other. Docs updated for member set_visible_characters on RichTextLabel class. | |||
2020-12-29 | Merge pull request #44710 from Calinou/doc-richtextlabel-no-entangled-tags | Rémi Verschelde | |
Document RichTextLabel not supporting entangled BBCode tags | |||
2020-12-26 | Document RichTextLabel not supporting entangled BBCode tags | Hugo Locurcio | |
See #44634. | |||
2020-12-13 | [Complex Text Layouts] Add drop-caps support to TextParagraph and RTL. | bruvzg | |
2020-12-11 | [Complex Text Layouts] Refactor RichTextLabel. | bruvzg | |
2020-12-04 | doc: Sync classref with current source | Rémi Verschelde | |
And fixups: - Add missing bindings in RenderingServer - Remove duplicate ArrayMesh enum bindings (they're in Mesh already) - Remove redundant _unhandled_key_input binding in Control (it's in Node already) | |||
2020-11-26 | [Complex Text Layouts] Add TextServer documentation. Update Font, ↵ | bruvzg | |
CanvasItem, Theme and modified controls documentation. | |||
2020-10-01 | Link to demos from within the class reference | Aaron Franke | |
2020-09-20 | Document `RichTextLabel.append_bbcode()` not closing previously open tags | Hugo Locurcio | |
This closes #42216. | |||
2020-08-31 | Add link titles for all links in the class reference | Hugo Locurcio | |
This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.) | |||
2020-08-19 | Document limitations related to centering text with RichTextLabel | Hugo Locurcio | |
This is a relatively common question on various community channels. | |||
2020-06-25 | doc: Sync classref with current source | Rémi Verschelde | |
2020-06-19 | Merge pull request #33235 from nekomatata/rich-text-label-fit-height | Rémi Verschelde | |
Option in RichTextLabel for height to fit content | |||
2020-05-30 | Add color option for img bbcode tag in RichTextLabel to tint images | PouleyKetchoupp | |
2020-05-22 | Option in RichTextLabel for height to fit content | PouleyKetchoupp | |
2020-03-13 | Add LOTS of missing docs | Tomasz Chabora | |
2020-02-18 | doc: Sync classref with current source | Rémi Verschelde | |
Handle removal of Pool*Array types and other recent changes. |