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

Support Unreal Engine 5.3 #45

Merged
merged 2 commits into from
Sep 24, 2023
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ workflows:
- unreal-engine-ci
matrix:
parameters:
unreal-engine-version: ["5.1.0", "5.2.0"]
unreal-engine-version: ["5.1.0", "5.2.0", "5.3.0"]
version: ["full"]
- build-plugin:
context:
- unreal-engine-ci
matrix:
parameters:
unreal-engine-version: ["4.27.0", "5.0.0", "5.1.0", "5.2.0"]
unreal-engine-version: ["4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0"]
version: ["free", "full"]
- build-sample:
context:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
unreal_engine_version:
["4.26.0", "4.27.0", "5.0.0", "5.1.0", "5.2.0"]
["4.26.0", "4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0"]
version:
["free", "full"]
steps:
Expand Down
2 changes: 1 addition & 1 deletion AdvancedControlFlow/AdvancedControlFlow.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"VersionName": "1.3.0",
"FriendlyName": "Advanced Control Flow",
"Description": "Blueprint nodes to realize the complex control flow",
"EngineVersion": "5.2.0",
"EngineVersion": "5.3.0",
"Category": "Other",
"CreatedBy": "nutti (Colory Games)",
"CreatedByURL": "https://github.com/colory-games/UEPlugin-AdvancedControlFlow",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ By using this plugin, you can realize this case with only one Multi-Branch node.

This plugin supports on the below environment.

* Unreal Engine Version: 4.26 / 4.27 / 5.0 / 5.1 / 5.2
* Unreal Engine Version: 4.26 / 4.27 / 5.0 / 5.1 / 5.2 / 5.3
* Development Platforms: Windows / macOS / Linux
* Target Build Platforms: All platforms

Expand Down
2 changes: 1 addition & 1 deletion tools/remove_code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eEu

SUPPORTED_VERSIONS=(
"4.26.0" "4.27.0"
"5.0.0" "5.1.0" "5.2.0"
"5.0.0" "5.1.0" "5.2.0" "5.3.0"
)

function usage() {
Expand Down
4 changes: 2 additions & 2 deletions tools/replace_engine_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eEu

SUPPORTED_VERSIONS=(
"4.26.0" "4.27.0"
"5.0.0" "5.1.0" "5.2.0"
"5.0.0" "5.1.0" "5.2.0" "5.3.0"
)

function usage() {
Expand All @@ -33,6 +33,6 @@ if [ ${supported} -eq 0 ]; then
fi

for file in `find ${source_dir} -name "*.uplugin"`; do
sed -i -e "s/\"EngineVersion\": \"5.2.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file}
sed -i -e "s/\"EngineVersion\": \"5.3.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file}
echo "Replaced engine version in ${file}"
done
Loading