Skip to content

Commit

Permalink
Support Unreal Engine 5.3 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti authored Sep 24, 2023
1 parent 46f23d4 commit ee480e5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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

0 comments on commit ee480e5

Please sign in to comment.