summaryrefslogtreecommitdiffstats
path: root/modules/text_server_adv
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand android editor to allow play store signingTrashguy2024-11-131-1/+1
| | | | Co-authored-by: Spartan322 <Megacake1234@gmail.com>
* Fix copyright headers referring to GodotSpartan3222024-10-2711-22/+22
|
* Rebrand preambles to RedotSpartan3222024-10-1311-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* fix: change esthetic -> aestheticEric allen2024-07-051-1/+1
|
* [TextServer] Fix get_word_breaks and it uses.bruvzg2024-06-211-61/+93
|
* [TextServer] Save advances rounding remainders to prevent rounding error ↵bruvzg2024-06-181-8/+19
| | | | accumulation.
* [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵bruvzg2024-06-123-16/+16
| | | | new/changed low-level methods to GDExtension API.
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-212-34/+35
|
* SCons: Fix potential Windows ANSI exceptionThaddeus Crews2024-05-181-8/+15
|
* Update ICU to 75.1bruvzg2024-05-142-2/+2
|
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-20/+20
| | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* Merge pull request #81639 from MJacred/is_letterRémi Verschelde2024-05-032-0/+11
|\ | | | | | | Add `is_valid_letter()` to `TextServer`
| * Add is_valid_letter() to TextServerMJacred2024-05-022-0/+11
| |
* | SCons: Fixes for warn/error colorizationThaddeus Crews2024-04-291-44/+46
| |
* | SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-282-60/+84
| |
* | Merge pull request #90349 from bruvzg/empty_glyph_testRémi Verschelde2024-04-082-44/+54
|\ \ | | | | | | | | | [TextServer] Improve empty glyph handling to allow glyphs smaller than 2px and avoid unnecessary texture updates.
| * | [TextServer] Improve empty glyph handling to allow glyphs smaller than 2px ↵bruvzg2024-04-072-44/+54
| | | | | | | | | | | | and avoid unnecessary texture updates.
* | | Merge pull request #90247 from akien-mga/harfbuzz-8.4.0Rémi Verschelde2024-04-082-0/+2
|\ \ \ | |/ / |/| | | | | harfbuzz: Update to 8.4.0
| * | harfbuzz: Update to 8.4.0Rémi Verschelde2024-04-052-0/+2
| | |
* | | Prefer family name in fonts' names tableHaoyu Qiu2024-04-061-3/+19
| | |
* | | [TextServer] Expose ICU title case string conversion to scripting.bruvzg2024-04-042-0/+29
|/ /
* | [Font] Apply oversampling to the "embolden" strength.bruvzg2024-03-191-1/+1
| |
* | Merge pull request #89422 from Repiteo/clang-tidy-NULLRémi Verschelde2024-03-131-3/+3
|\ \ | | | | | | | | | clang-tidy: Enforce `modernize-use-nullptr`
| * | clang-tidy: Enforce `modernize-use-nullptr`Thaddeus Crews2024-03-121-3/+3
| | |
* | | Merge pull request #89414 from bruvzg/update_icu_msdfgenRémi Verschelde2024-03-133-2/+9
|\ \ \ | |/ / |/| | | | | Update ICU and msdfgen.
| * | Update ICU and msdfgen.bruvzg2024-03-133-2/+9
| | |
* | | Merge pull request #89395 from bruvzg/rtl_ts_img_rangeRémi Verschelde2024-03-122-6/+39
|\ \ \ | |/ / |/| | | | | [RTL] Use "visible characters" property for inline object visibility
| * | [RTL] Use "visible characters" property for inline object visibilitybruvzg2024-03-122-6/+39
| | |
* | | [Font] Add option to disable embedded bitmaps loading.bruvzg2024-03-112-3/+29
|/ /
* | SCons: Ensure `with` statement where applicableThaddeus Crews2024-03-102-67/+66
| |
* | Enforce `\n` eol for Python writesThaddeus Crews2024-03-092-3/+3
| | | | | | | | • Ensure utf-8 encoding if previously unspecified
* | [TextServer] Fix fallback line breaking code adding two breaks for CR-LF.bruvzg2024-03-051-1/+4
| |
* | Add two new COMSTR environment variablesThaddeus Crews2024-03-011-0/+8
|/
* [TextServer] Implement soft hyphen handling.bruvzg2024-02-231-8/+17
|
* Merge pull request #88091 from bruvzg/extra_fallbackRémi Verschelde2024-02-152-28/+70
|\ | | | | | | [TextServer] Add extra fallback step, to lookup for individual characters.
| * [TextServer] Add extra fallback step, to lookup for individual characters.bruvzg2024-02-092-28/+70
| |
* | Merge pull request #87971 from bruvzg/font_no_image_dupRémi Verschelde2024-02-152-27/+31
|\ \ | |/ |/| | | [TextServer / Font] Do not duplicate images to prevent unnecessary embedding.
| * [TextServer / Font] Do not duplicate images to prevent unnecessary embedding.bruvzg2024-02-052-27/+31
| |
* | [TextServer] Fix bitmap font kerning override.bruvzg2024-02-081-1/+1
|/
* [TextServer / Font] Add support for customizable baseline offset.bruvzg2024-01-282-2/+50
|
* Merge pull request #86269 from aaronfranke/detect-moduleRémi Verschelde2024-01-098-11/+11
|\ | | | | | | Allow detecting when building as an engine module
| * Use GODOT_MODULE define in TextServer modulesAaron Franke2024-01-068-11/+11
| |
* | ThorVG: update from v0.11.6 to v0.12.0Martin Capitanio2024-01-081-0/+2
|/ | | | | | | | | | | | | | https://github.com/thorvg/thorvg/releases/tag/v0.12.0 Godot-related SVG bug fixes: + [SwEngine] Fixed a linear filling scaling issue. thorvg/thorvg#1834 + [SwEngine] Path data not invalid even though it doesn't start with MoveTo. thorvg/thorvg#1848 Fixes #86128 Gradient issue.
* Merge pull request #84289 from bruvzg/icu741Rémi Verschelde2024-01-032-2/+6
|\ | | | | | | ICU4C: Update to version 74.1
| * ICU4C: Update to version 74.1bruvzg2023-11-012-2/+6
| |
* | [TextServer] Do not draw non-visual characters.bruvzg2023-12-121-0/+12
| |
* | [Text Overrun] Add option to set custom ellipsis character, add support for ↵bruvzg2023-12-042-163/+220
| | | | | | | | system font fallback.
* | Fix various typos with codespellRémi Verschelde2023-11-111-2/+2
| | | | | | | | Using 2.2.7.dev51+geb4a58fe.
* | Merge pull request #81438 from 0xafbf/patch-2Rémi Verschelde2023-11-101-4/+4
|\ \ | | | | | | | | | Fix subpixel layouts in text rendering
| * | Fix subpixel layouts in text renderingAndrés Botero2023-09-071-4/+4
| | |