summaryrefslogtreecommitdiffstats
path: root/doc/classes/TextServer.xml
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand Godot 4.3 to RedotTrashguy2024-10-131-3/+3
|
* [TextServer] Fix get_word_breaks and it uses.bruvzg2024-06-211-2/+3
|
* [TextServer] Add notes about high level text/font classes and getting active ↵bruvzg2024-05-151-0/+10
| | | | server instance.
* Merge pull request #81639 from MJacred/is_letterRémi Verschelde2024-05-031-0/+7
|\ | | | | | | Add `is_valid_letter()` to `TextServer`
| * Add is_valid_letter() to TextServerMJacred2024-05-021-0/+7
| |
* | Improve TextEdit/LineEdit word selection.bruvzg2024-04-221-0/+1
| |
* | [TextServer] Expose ICU title case string conversion to scripting.bruvzg2024-04-041-0/+10
| |
* | [TextServer] Use GDVIRTUAL_REQUIRED_CALL for required extensions methods, ↵bruvzg2024-03-131-6/+6
| | | | | | | | update extension docs.
* | Merge pull request #89395 from bruvzg/rtl_ts_img_rangeRémi Verschelde2024-03-121-0/+16
|\ \ | | | | | | | | | [RTL] Use "visible characters" property for inline object visibility
| * | [RTL] Use "visible characters" property for inline object visibilitybruvzg2024-03-121-0/+16
| | |
* | | [Font] Add option to disable embedded bitmaps loading.bruvzg2024-03-111-0/+15
|/ /
* / [TextEdit] Add support for optional wrapped line indentation.bruvzg2024-02-261-0/+3
|/
* [TextServer] Implement soft hyphen handling.bruvzg2024-02-231-0/+3
|
* [TextServer / Font] Add support for customizable baseline offset.bruvzg2024-01-281-0/+15
|
* Add missing descriptions to TextServer's constantsMicky2024-01-061-0/+3
|
* [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-041-0/+15
| | | | system font fallback.
* Fix typo in TextureServer.font_get_face_index descriptionHaoyu Qiu2023-11-121-2/+2
|
* [Bitmap fonts] Add support for scaling.bruvzg2023-10-131-0/+24
|
* Merge pull request #82691 from YuriSizov/rst-validate-with-exceptionsRémi Verschelde2023-10-041-4/+3
|\ | | | | | | Validate `code` tags for class and member references
| * Validate `code` tags for class and member referencesYuri Sizov2023-10-031-4/+3
| | | | | | | | | | | | | | | | This commit also adds means to manually disable warnings in `code` tags where it's a false positive with the new `skip-lint` attribute. Warnings are now enabled on CI to prevent future errors.
* | [TextServer] Store font extra spacing variations without making a full copy ↵bruvzg2023-09-281-0/+7
|/ | | | of font.
* Merge pull request #80954 from bruvzg/sp_per_fontRémi Verschelde2023-08-281-0/+17
|\ | | | | | | [Text Server] Store extra spacing of individual font variations.
| * [Text Server] Store extra spacing of individual font variations.bruvzg2023-08-241-0/+17
| |
* | Fix various typos in classrefHaoyu Qiu2023-08-221-2/+2
|/
* [TextServer] Fix system font fallback and caret/selection behavior for ↵bruvzg2023-08-151-2/+45
| | | | composite characters.
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Display `BitField[Enum]` in docs to distinguish from `Enum`Danil Alexeev2023-06-151-7/+7
|
* Overhaul the top sections of the class reference (GUI classes)VolTer2023-05-281-3/+3
|
* [TextServer] Add support for retrieving OpenType name strings.bruvzg2023-05-221-0/+7
|
* Expose TextServer justification flags to Label, Label3D, TextMesh and RTL. ↵bruvzg2023-05-151-1/+17
| | | | Add flags to control last/single line justification.
* Fix various typos in the classrefHaoyu Qiu2023-04-181-1/+1
|
* [TextServer] Use dedicated flag for object replacement characters.bruvzg2023-04-121-0/+3
|
* Fix typos and inconsistencies in classrefHaoyu Qiu2023-03-271-1/+1
| | | | | | | | | | | * Typo fixes. * Navigation agent's `velocity_computed` signal is not emitted by `set_velocity`, but at the end of that frame if `set_velocity` is called. * Simplify link in navigation agent's `avoidance_enabled` description. * Unify `navigation_layers` description across `NavigationAgent{2,3}D`. * Unify `is_normalized()` description across `Vector2`, `Vector3`, and `Vector4`
* Merge pull request #74149 from bruvzg/get_charYuri Sizov2023-03-161-1/+10
|\ | | | | [Font] Implement `get_char_from_glyph_index` function.
| * [Font] Implement `get_char_from_glyph_index` function.bruvzg2023-03-011-1/+10
| |
* | Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
|/ | | | Can't stop, won't stop, they said, huh?
* Various classref typo fixesHaoyu Qiu2023-02-201-1/+1
|
* Implement BiDi override mode for GDScript source.bruvzg2023-01-181-4/+7
|
* Update documentation for TextServer.format_number() when language parameter ↵Ken Paulson2022-12-181-0/+1
| | | | is omitted.
* Fix String::word_wrap() for long wordsHaoyu Qiu2022-12-161-2/+9
| | | | | | | | | - Changes `TextServer.string_get_word_breaks()` - Returns pairs of boundary start and end offsets - Accepts `chars_per_line` to return line breaks - Removes `String::word_wrap()` Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* [RTL/TextServer] Add baseline inline alignment mode for objects and RTL tables.bruvzg2022-12-151-0/+2
|
* Use capitalized ID in the docHaoyu Qiu2022-12-081-1/+1
|
* Use system fonts as fallback and improve system font handling.bruvzg2022-12-041-0/+48
| | | | | | | Add support for font weight and stretch selection when using system fonts. Add function to get system fallback font from a font name, style, text, and language code. Implement system font support for Android. Use system fonts as a last resort fallback.
* Hide Antialiasing import option on DynamicFonts with MSDF enabledHugo Locurcio2022-11-031-9/+9
| | | | | | | | Antialiasing cannot be adjusted on fonts rendered with MSDF. Internally, Godot always uses grayscale antialiasing for those fonts. This also tweaks property hints for consistency, and renames uses of "sub-pixel" to the more commonly used "subpixel".
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-021-2/+2
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* Improve font glyph cache packing shelf best height fit heuristic.bruvzg2022-10-181-2/+2
|
* [GDExtension] Use function names with underscore for TextServer extension, ↵bruvzg2022-09-281-0/+2
| | | | add macros to generate wrappers for module functions.
* Do not use horizontal hinting for the editor monospace font.bruvzg2022-09-141-0/+1
|
* Merge pull request #65170 from KoBeWi/your_argument_is_TypedArrayRémi Verschelde2022-09-021-2/+2
|\