Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/linux_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
SCONS_FLAGS: >-
dev_mode=yes
module_text_server_fb_enabled=yes
"accesskit_sdk_path=${{ github.workspace }}/accesskit-c-0.18.0/"
"accesskit_sdk_path=${{ github.workspace }}/accesskit-c-0.21.2/"
GODOT_CPP_BRANCH: 4.5
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
Expand Down Expand Up @@ -161,13 +161,13 @@ jobs:
- name: Download pre-built AccessKit
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: AccessKit/accesskit-c
version: tags/0.18.0
file: accesskit-c-0.18.0.zip
target: accesskit-c-0.18.0/accesskit_c.zip
repo: godotengine/godot-accesskit-c-static
version: tags/0.21.2
file: accesskit-c-0.21.2.zip
target: accesskit-c-0.21.2/accesskit_c.zip

- name: Extract pre-built AccessKit
run: unzip -o accesskit-c-0.18.0/accesskit_c.zip
run: unzip -o accesskit-c-0.21.2/accesskit_c.zip

- name: Install mold linker
if: matrix.proj-test
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/macos_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
SCONS_FLAGS: >-
dev_mode=yes
module_text_server_fb_enabled=yes
"accesskit_sdk_path=${{ github.workspace }}/accesskit-c-0.18.0/"
"accesskit_sdk_path=${{ github.workspace }}/accesskit-c-0.21.2/"

jobs:
build-macos:
Expand Down Expand Up @@ -53,13 +53,13 @@ jobs:
- name: Download pre-built AccessKit
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: AccessKit/accesskit-c
version: tags/0.18.0
file: accesskit-c-0.18.0.zip
target: accesskit-c-0.18.0/accesskit_c.zip
repo: godotengine/godot-accesskit-c-static
version: tags/0.21.2
file: accesskit-c-0.21.2.zip
target: accesskit-c-0.21.2/accesskit_c.zip

- name: Extract pre-built AccessKit
run: unzip -o accesskit-c-0.18.0/accesskit_c.zip
run: unzip -o accesskit-c-0.21.2/accesskit_c.zip

- name: Setup Vulkan SDK
id: vulkan-sdk
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
module_text_server_fb_enabled=yes
debug_symbols=no
"angle_libs=${{ github.workspace }}/"
"accesskit_sdk_path=${{ github.workspace }}/accesskit-c-0.18.0/"
"accesskit_sdk_path=${{ github.workspace }}/accesskit-c-0.21.2/"
SCONS_CACHE_MSVC_CONFIG: true
PYTHONIOENCODING: utf8

Expand Down Expand Up @@ -98,13 +98,13 @@ jobs:
- name: Download pre-built AccessKit
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: AccessKit/accesskit-c
version: tags/0.18.0
file: accesskit-c-0.18.0.zip
target: accesskit-c-0.18.0/accesskit_c.zip
repo: godotengine/godot-accesskit-c-static
version: tags/0.21.2
file: accesskit-c-0.21.2.zip
target: accesskit-c-0.21.2/accesskit_c.zip

- name: Extract pre-built AccessKit
run: unzip -o accesskit-c-0.18.0/accesskit_c.zip
run: unzip -o accesskit-c-0.21.2/accesskit_c.zip

- name: Compilation
uses: ./.github/actions/godot-build
Expand Down
8 changes: 8 additions & 0 deletions doc/classes/TextServer.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1269,6 +1269,14 @@
Returns the font size of the [param index] text run (in visual order).
</description>
</method>
<method name="shaped_get_run_glyph_range" qualifiers="const">
<return type="Vector2i" />
<param index="0" name="shaped" type="RID" />
<param index="1" name="index" type="int" />
<description>
Returns the glyph range of the [param index] text run (in visual order).
</description>
</method>
<method name="shaped_get_run_language" qualifiers="const">
<return type="String" />
<param index="0" name="shaped" type="RID" />
Expand Down
8 changes: 8 additions & 0 deletions doc/classes/TextServerExtension.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1241,6 +1241,14 @@
Returns the font size of the [param index] text run (in visual order).
</description>
</method>
<method name="_shaped_get_run_glyph_range" qualifiers="virtual const">
<return type="Vector2i" />
<param index="0" name="shaped" type="RID" />
<param index="1" name="index" type="int" />
<description>
Returns the glyph range of the [param index] text run (in visual order).
</description>
</method>
<method name="_shaped_get_run_language" qualifiers="virtual const">
<return type="String" />
<param index="0" name="shaped" type="RID" />
Expand Down
Loading
Loading