Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update godot-cpp to the Godot 4.3-beta2 version #171

Merged
merged 1 commit into from
Jun 20, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/build-addon-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
- name: Download Godot
run: |
# @todo Download an actual Godot build!
Invoke-WebRequest -Uri "https://github.com/godotengine/godot-builds/releases/download/4.3-beta1/Godot_v4.3-beta1_win64.exe.zip" -OutFile "godot.zip"
Invoke-WebRequest -Uri "https://github.com/godotengine/godot-builds/releases/download/4.3-beta2/Godot_v4.3-beta2_win64.exe.zip" -OutFile "godot.zip"

- name: Extract Godot
run: |
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:

- name: Import the demo project
run: |
$godot = "Godot_v4.3-beta1_win64.exe"
$godot = "Godot_v4.3-beta2_win64.exe"
Start-Process -FilePath "$godot" -ArgumentList "--path demo --import --headless" -NoNewWindow -Wait

- name: Launch a synthetic environment
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
Set-Content -Path $jsonPath -Value $jsonContent
echo "$jsonContent"

$godot = "Godot_v4.3-beta1_win64.exe"
$godot = "Godot_v4.3-beta2_win64.exe"
$timeout = 300
$waitTime = 0

Expand Down
2 changes: 1 addition & 1 deletion thirdparty/godot_cpp_gdextension_api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This directory contains the API JSON for
[**Godot Engine**](https://github.com/godotengine/godot)'s *GDExtensions* API.

## Current API version
- [commit 6118592c6d88350d01f74faff6fd49754f84a7d0](https://github.com/godotengine/godot/commit/6118592c6d88350d01f74faff6fd49754f84a7d0)
- [commit c414c2b37d0563456a2fe194b16f8c4aa442e865](https://github.com/godotengine/godot/commit/c414c2b37d0563456a2fe194b16f8c4aa442e865)

## Updating API

Expand Down
Loading
Loading