Skip to content

Commit 58f6fbb

Browse files
authored
Merge pull request #45 from RedMser/update-4.3-stable
Update for Godot v4.3 stable
2 parents b90ab40 + 5c97da5 commit 58f6fbb

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/ensure_build_works.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
name: Download Latest Godot
4040
with:
4141
repository: 'godotengine/godot-builds'
42-
fileName: 'Godot_v4.3-beta3_linux.x86_64.zip'
43-
tag: '4.3-beta3'
42+
fileName: 'Godot_v4.3-stable_linux.x86_64.zip'
43+
tag: '4.3-stable'
4444
extract: true
4545
out-file-path: ./build
4646
- name: Make downloaded file executable
47-
run: chmod +x ./build/Godot_v4.3-beta3_linux.x86_64
47+
run: chmod +x ./build/Godot_v4.3-stable_linux.x86_64
4848
- name: Set executable env var
49-
run: echo "GODOT4_BIN=$GITHUB_WORKSPACE/build/Godot_v4.3-beta3_linux.x86_64" >> $GITHUB_ENV
49+
run: echo "GODOT4_BIN=$GITHUB_WORKSPACE/build/Godot_v4.3-stable_linux.x86_64" >> $GITHUB_ENV
5050
- name: Build
5151
working-directory: ./rust
5252
run: cargo build --features custom-godot

.github/workflows/make_release_files.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ jobs:
4747
name: Download Latest Godot
4848
with:
4949
repository: 'godotengine/godot-builds'
50-
fileName: 'Godot_v4.3-beta3_win64.exe.zip'
51-
tag: '4.3-beta3'
50+
fileName: 'Godot_v4.3-stable_win64.exe.zip'
51+
tag: '4.3-stable'
5252
extract: true
5353
out-file-path: ./build
5454
- name: Set executable env var
55-
run: echo "GODOT4_BIN=$env:GITHUB_WORKSPACE/build/Godot_v4.3-beta3_win64.exe" >> $env:GITHUB_ENV
55+
run: echo "GODOT4_BIN=$env:GITHUB_WORKSPACE/build/Godot_v4.3-stable_win64.exe" >> $env:GITHUB_ENV
5656
- name: Build Debug
5757
working-directory: ./rust
5858
run: cargo build --features custom-godot
@@ -111,14 +111,14 @@ jobs:
111111
name: Download Latest Godot
112112
with:
113113
repository: 'godotengine/godot-builds'
114-
fileName: 'Godot_v4.3-beta3_linux.x86_64.zip'
115-
tag: '4.3-beta3'
114+
fileName: 'Godot_v4.3-stable_linux.x86_64.zip'
115+
tag: '4.3-stable'
116116
extract: true
117117
out-file-path: ./build
118118
- name: Make downloaded file executable
119-
run: chmod +x ./build/Godot_v4.3-beta3_linux.x86_64
119+
run: chmod +x ./build/Godot_v4.3-stable_linux.x86_64
120120
- name: Set executable env var
121-
run: echo "GODOT4_BIN=$GITHUB_WORKSPACE/build/Godot_v4.3-beta3_linux.x86_64" >> $GITHUB_ENV
121+
run: echo "GODOT4_BIN=$GITHUB_WORKSPACE/build/Godot_v4.3-stable_linux.x86_64" >> $GITHUB_ENV
122122
- name: Build Debug
123123
working-directory: ./rust
124124
run: cargo build --features custom-godot

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ As explained in the [Available Versions](./README.md#forked) section of the read
2929

3030
## Version Compatibility
3131

32-
You must use [Godot v4.3 dev 6](https://godotengine.org/article/dev-snapshot-godot-4-3-dev-6/) or newer.
32+
You must use [Godot v4.3](https://github.com/godotengine/godot/releases/tag/4.3-stable) or newer.
3333

3434
The GDExtension uses following APIs only available in this version:
3535

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This extension can be downloaded in two different versions, each with their own
2424

2525
### Default
2626

27-
- Works with official releases of [Godot v4.3 dev 6](https://godotengine.org/article/dev-snapshot-godot-4-3-dev-6/) or newer.
27+
- Works with official releases of [Godot v4.3](https://github.com/godotengine/godot/releases/tag/4.3-stable) or newer.
2828
- Available on the [Asset Library](https://godotengine.org/asset-library/asset/2937).
2929
- Has some limitations
3030
- Translations that use variables are written like `tr(TranslationFluent.args("message", { ... }))`
@@ -60,7 +60,7 @@ This is why you have the choice between a version that has better engine support
6060
- The **Default** version is also available on the [Asset Library](https://godotengine.org/asset-library/asset/2937).
6161
- Extract the zip file contents to your project folder, so that the project root contains an `addons` folder.
6262
- Download a compatible version of Godot.
63-
- **Default**: [Godot v4.3 dev 6](https://godotengine.org/article/dev-snapshot-godot-4-3-dev-6/) or newer.
63+
- **Default**: [Godot v4.3](https://github.com/godotengine/godot/releases/tag/4.3-stable) or newer.
6464
- **Forked**: [Download forked builds here.](https://github.com/RedMser/godot/releases)
6565
- Start Godot editor. If it was already running, restart it to fix autocompletion.
6666
- Follow the sample code to see if installation was successful. Remove any code which contains errors, as some of it only works depending on the version you've installed.

0 commit comments

Comments
 (0)