Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-30 | [RichTextLabel] Fix thread unsafe `set_physics_process_internal` usage. Use ↵ | bruvzg | |
`WorkerThreadPool` instead of creating new threads. | |||
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 char offset calculation when processing RichTextLabel line caches | MinusKube | |
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 #71330 from Geometror/richtextlabel-fit-content | Rémi Verschelde | |
[RichTextLabel] Match minimum size calculation of Label (proper content fitting) | |||
2023-01-24 | Expose RichTextLabel::push_customfx to GDScript | mara | |
2023-01-18 | Implement BiDi override mode for GDScript source. | bruvzg | |
2023-01-13 | [RichTextLabel] Match minimum size calculation of Label | Hendrik Brucker | |
(optional via fit_content property) | |||
2023-01-12 | Merge pull request #70566 from cg9999/richtextlabel_fix | Rémi Verschelde | |
Fix crash in RichTextLabel table parsing | |||
2023-01-12 | Fix crash in RichTextLabel table parsing | Henri Valta | |
Fixed with help of feedback from bruvzg. Prevents invalid items getting to stack. | |||
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". | |||
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-21 | Renamed RTL remove_line() to remove_paragraph(). | Koyper | |
2022-12-15 | [RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables. | bruvzg | |
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-08 | RichTextLabel: decouple meta cursor from underline | Lluc Pares | |
This commit decouples the type of cursor used when the underline of meta tag is set to False. Previous to this commit setting the meta underline to false in the RichTextLabel would also make it show the arrow cursor instead of the hand cursor. Making the meta tag with no underline should not have any effect on the type of cursor, since the text will still be clickable it should be expected to have a hand cursor. The same behavior is seen in other languages, like HTML+CSS, where the setting "text-decoration" to "none" for the links, disables the underline but maintains the clickable cursor. Fixes godotengine/godot-proposals#3193 | |||
2022-12-04 | [RTL] Fix search method not taking nested frame and line wraps into account. | bruvzg | |
2022-12-02 | [RichTextEffect] Restore missing `relative_index` property. | bruvzg | |
2022-11-30 | Rename theme cache separation names | Iceflower | |
2022-11-24 | Add MAKE_RESOURCE_TYPE_HINT macro to simplify binding arrays of resources | Rémi Verschelde | |
2022-11-23 | add possibility to use only one color | Hana | |
2022-11-17 | Fix multithreaded RTL resetting scroll position on resize. | bruvzg | |
2022-11-17 | Add `Control::localize_numeral_system` property to toggle automatic numeral ↵ | bruvzg | |
system conversion. | |||
2022-11-14 | Remove redundant Variant-types initializations | Markus Sauermann | |
2022-10-31 | Merge pull request #63590 from golfinq/fbg-padding | Rémi Verschelde | |
Add padding options in theme for fg/bgcolor tags in RichTextLabel | |||
2022-10-26 | Remove override_selected_font_color property | kobewi | |
2022-10-13 | Merge pull request #66337 from EricEzaM/sprite-frames | Rémi Verschelde | |
Ensure control built-in shortcuts are matched exactly & add shortcuts for SpriteFrames editor | |||
2022-10-11 | Add Spritesheet support to RichTextLabel BBCode | Petra Baranski | |
BBCode: [img region=0,0,16,16]res://icon.svg[/img] | |||
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-09-28 | Fix MSVC warning C4702: unreachable code | Rémi Verschelde | |
Part of #66537. | |||
2022-09-26 | [RTL] Fix font variations / OpenType features of theme default font not ↵ | bruvzg | |
updated when default font is changed. | |||
2022-09-24 | Ensure all checks of `is_action` in the editor which are for 'shortcut' use, ↵ | Eric M | |
check the action exactly. | |||
2022-09-23 | Merge pull request #65158 from nongvantinh/fixed-infinite-loop | Rémi Verschelde | |
Fixes engine runs into an infinite loop when searching using FindBar | |||
2022-09-19 | [RTL] Add option to apply built-in effects to the individual connected glyphs. | bruvzg | |
2022-09-16 | Fix RichTextLabel not updating on theme/theme override change until text is ↵ | bruvzg | |
updated. | |||
2022-09-13 | RTL Improvements | bruvzg | |
Do not apply negative line separation to the last line. Ensure all methods immediately update cache in a single thread mode. Fix bbcode_enabled change not being applied until text is changed. Fix crash if line height is zero or less. | |||
2022-09-07 | [RTL] Stop threaded RTL auto-redrawing as soon as text processing is ↵ | bruvzg | |
finished, instead of waiting for first redraw. | |||
2022-09-06 | Fix theming code in Panel, SplitContainer, RichTextLabel | Yuri Sizov | |
2022-09-06 | Improve naming of theme properties throughout GUI code | Yuri Sizov | |
Rename ItemList's bg -> panel Rename ItemList's bg_focus -> focus Rename ProgressBar's bg -> background Rename ProgressBar's fg -> fill Rename Tree's bg -> panel Rename Tree's bg_focus -> focus Rename ScrollContainer's bg -> panel Rename FileDialog's *_icon_modulate -> *_icon_color Rename FileDialog's files_disabled -> file_disabled_color Rename CheckButton's on/off -> checked/unchecked Rename check_v_adjust -> check_v_offset | |||
2022-09-06 | Rename `range_lerp` to `remap` | Micky | |
2022-09-02 | Fix theme propagation in various parts of the editor | Yuri Sizov | |
2022-09-01 | Fix Label & RichTextLabel's visible_ratio not working | Micky | |
2022-09-01 | [TextServer] Add support for trimming edge spaces on line break. | bruvzg | |
2022-09-01 | Fixes #64962 that cause program run into infinite loop | Nong Van Tinh | |
2022-08-29 | Rename `CanvasItem.update()` to `queue_redraw()` | Micky | |
Affects a lot of classes. Very thoroughly checked signal connections and deferred calls to this method, add_do_method/add_undo_method calls, and so on. Also renames the internal `_update_callback()` to `_redraw_callback()` for consistency. Just a few comments have also been changed to say "redraw". In CPUParticles2D, there was a private variable with the same name. It has been renamed to `do_redraw`. | |||
2022-08-28 | Reorganized Label and RichTextLabel properties | VolTer | |
2022-08-26 | Rename Label & RichTextLabel.`percent_visible` to `visible_ratio` | Micky | |
Also updates the documentation of both `visible_characters` and `visible_ratio` to, better describe what they do and improve consistency between the two Classes. | |||
2022-08-24 | Merge pull request #59226 from Rindbee/better-setters-in-gui-controls | Yuri Sizov | |
Improve the setters in gui, return directly if the value does not change. |