summaryrefslogtreecommitdiffstats
path: root/modules/text_server_adv/gdextension_build
Commit message (Collapse)AuthorAgeFilesLines
* Update ICU to 76.1bruvzg2024-10-241-1/+1
|
* Update HarfBuzz to 10.0.1bruvzg2024-10-011-0/+1
|
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+2
|
* Remove unnecessary DLL export attributes.bruvzg2024-08-121-0/+2
|
* [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵bruvzg2024-06-121-1/+3
| | | | 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-141-1/+1
|
* SCons: Fixes for warn/error colorizationThaddeus Crews2024-04-291-44/+46
|
* SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-282-60/+84
|
* harfbuzz: Update to 8.4.0Rémi Verschelde2024-04-051-0/+1
|
* Update ICU and msdfgen.bruvzg2024-03-131-2/+2
|
* SCons: Ensure `with` statement where applicableThaddeus Crews2024-03-101-46/+46
|
* Enforce `\n` eol for Python writesThaddeus Crews2024-03-091-2/+2
| | | | • Ensure utf-8 encoding if previously unspecified
* Add two new COMSTR environment variablesThaddeus Crews2024-03-011-0/+8
|
* 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-031-1/+3
|\ | | | | | | ICU4C: Update to version 74.1
| * ICU4C: Update to version 74.1bruvzg2023-11-011-1/+3
| |
* | Fix various typos with codespellRémi Verschelde2023-11-111-2/+2
|/ | | | Using 2.2.7.dev51+geb4a58fe.
* ThorVG: Update to v0.11.1Martin Capitanio2023-10-161-2/+7
| | | | | | | | | | | | https://github.com/thorvg/thorvg/releases/tag/v0.11.1 Godot related: + [SwEngine] Enhanced the quality of the dash line corners. + [SVG] Fixed a regression bug related to maskContentUnit, userSpaceOnUse/objectBoundingBox. Fixes #82982 icons. Fixes #83198 svg ← png/jpg.
* ThorVG: update to v0.11.0 release.Martin Capitanio2023-09-291-34/+39
| | | | | | | | | | | | | | | | | See https://github.com/thorvg/thorvg/releases/tag/v0.11.0 + Infrastructure Repository folder structure was make it more intuitive and coherent. "thorvg/src/lib" -> "thorvg/src/common" (providing essential common functionalities used internally among the renderer and sub-modules) "thorvg/src/lib" -> "thorvg/src/renderer" (for vector drawing features) + SVG related Fix stroke regression https://github.com/thorvg/thorvg/issues/1670 Support stroke dash offset function https://github.com/thorvg/thorvg/issues/1591#issuecomment-1681319321 Support Focal property in Radial Gradient https://github.com/thorvg/thorvg/issues/1558
* thorvg: Update to 0.10.7Rémi Verschelde2023-09-261-5/+11
| | | | Fixes #81618.
* SCons: Fix ThorVG build option in TextServers with #80095Rémi Verschelde2023-08-171-10/+4
|
* libpng: Enable intrinsics on x86/SSE2, ppc64/VSX, and all arm/NEONRémi Verschelde2023-08-041-1/+0
|
* FreeType: Update to version 2.13.1bruvzg2023-07-101-1/+0
|
* Fix text_server_adv compiling as a GDExtensionDavid Snopek2023-06-201-0/+1
|
* Update HarfBuzz, ICU and FreeTypebruvzg2023-05-231-1/+2
| | | | | | HarfBuzz: Update to version 7.3.0 ICU4C: Update to version 73.1 FreeType: Update to version 2.13.0
* Update HarfBuzz to 7.1.0Pedro J. Estébanez2023-04-031-6/+14
|
* Implement SVG in OT support.bruvzg2022-11-041-0/+74
|
* ICU: Update to version 72.1bruvzg2022-10-281-1/+1
|
* [TextServer GDExtension] Update build scripts and `.gdextension` files to ↵bruvzg2022-10-052-14/+24
| | | | use new target names and arch suffixes.
* SCons: Unify tools/target build type configurationRémi Verschelde2022-09-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements https://github.com/godotengine/godot-proposals/issues/3371. New `target` presets ==================== The `tools` option is removed and `target` changes to use three new presets, which match the builds users are familiar with. These targets control the default optimization level and enable editor-specific and debugging code: - `editor`: Replaces `tools=yes target=release_debug`. * Defines: `TOOLS_ENABLED`, `DEBUG_ENABLED`, `-O2`/`/O2` - `template_debug`: Replaces `tools=no target=release_debug`. * Defines: `DEBUG_ENABLED`, `-O2`/`/O2` - `template_release`: Replaces `tools=no target=release`. * Defines: `-O3`/`/O2` New `dev_build` option ====================== The previous `target=debug` is now replaced by a separate `dev_build=yes` option, which can be used in combination with either of the three targets, and changes the following: - `dev_build`: Defines `DEV_ENABLED`, disables optimization (`-O0`/`/0d`), enables generating debug symbols, does not define `NDEBUG` so `assert()` works in thirdparty libraries, adds a `.dev` suffix to the binary name. Note: Unlike previously, `dev_build` defaults to off so that users who compile Godot from source get an optimized and small build by default. Engine contributors should now set `dev_build=yes` in their build scripts or IDE configuration manually. Changed binary names ==================== The name of generated binaries and object files are changed too, to follow this format: `godot.<platform>.<target>[.dev][.double].<arch>[.<extra_suffix>][.<ext>]` For example: - `godot.linuxbsd.editor.dev.arm64` - `godot.windows.template_release.double.x86_64.mono.exe` Be sure to update your links/scripts/IDE config accordingly. More flexible `optimize` and `debug_symbols` options ==================================================== The optimization level and whether to generate debug symbols can be further specified with the `optimize` and `debug_symbols` options. So the default values listed above for the various `target` and `dev_build` combinations are indicative and can be replaced when compiling, e.g.: `scons p=linuxbsd target=template_debug dev_build=yes optimize=debug` will make a "debug" export template with dev-only code enabled, `-Og` optimization level for GCC/Clang, and debug symbols. Perfect for debugging complex crashes at runtime in an exported project.
* [GDExtension] Implement support for typed arrays.bruvzg2022-09-221-2/+27
|
* Rename OSX to macOS and iPhoneOS to iOS.bruvzg2022-07-213-8/+8
|
* HarfBuzz: Update to version 4.4.1bruvzg2022-07-041-12/+12
|
* Update HarfBuzz, ICU and FreeType.bruvzg2022-05-171-2/+10
| | | | | | HarfBuzz: Update to version 4.2.1 FreeType: Update to version 2.12.1 ICU: Update to version 71.1
* [ICU] Add library name suffix for API rename to avoid conflicts (GDExtension ↵bruvzg2022-03-311-0/+7
| | | | build).
* Unify TextServer built-in module and GDExtension code.bruvzg2022-03-173-0/+780