From 4e7d606b3904df28288e97fc8e5196c4a16a741c Mon Sep 17 00:00:00 2001 From: nutti Date: Sat, 4 Jul 2026 19:26:33 +0530 Subject: [PATCH] Support Unreal Engine 5.8 --- .circleci/config.yml | 2 +- .github/workflows/release.yaml | 2 +- AdvancedControlFlow/AdvancedControlFlow.uplugin | 2 +- README.md | 2 +- tools/remove_code.sh | 2 +- tools/replace_engine_version.sh | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5988566..c6db2d7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,7 +19,7 @@ workflows: parameters: unreal-engine-version: [ "4.27.0", - "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.3", "5.5.1", "5.6.1", "5.7.0" + "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.3", "5.5.1", "5.6.1", "5.7.0", "5.8.0" ] version: ["free", "full"] - build-sample: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0d2cbb7..9d65ee8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -21,7 +21,7 @@ jobs: unreal_engine_version: [ "4.26.0", "4.27.0", - "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0", "5.6.0", "5.7.0" + "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0", "5.6.0", "5.7.0", "5.8.0" ] version: ["free", "full"] diff --git a/AdvancedControlFlow/AdvancedControlFlow.uplugin b/AdvancedControlFlow/AdvancedControlFlow.uplugin index 291934f..39ac88c 100644 --- a/AdvancedControlFlow/AdvancedControlFlow.uplugin +++ b/AdvancedControlFlow/AdvancedControlFlow.uplugin @@ -4,7 +4,7 @@ "VersionName": "1.8.0", "FriendlyName": "Advanced Control Flow", "Description": "Blueprint nodes to realize the complex control flow", - "EngineVersion": "5.7.0", + "EngineVersion": "5.8.0", "Category": "Other", "CreatedBy": "nutti (Colory Games)", "CreatedByURL": "https://github.com/colory-games/UEPlugin-AdvancedControlFlow", diff --git a/README.md b/README.md index 91cdc1c..e754c8c 100644 --- a/README.md +++ b/README.md @@ -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.7 +* Unreal Engine Version: 4.26-4.27 / 5.0-5.8 * Development Platforms: Windows / macOS / Linux * Target Build Platforms: All platforms diff --git a/tools/remove_code.sh b/tools/remove_code.sh index 5d68494..8b3ccff 100644 --- a/tools/remove_code.sh +++ b/tools/remove_code.sh @@ -6,7 +6,7 @@ set -eEu SUPPORTED_VERSIONS=( "4.26.0" "4.27.0" - "5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0" "5.7.0" + "5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0" "5.7.0" "5.8.0" ) function usage() { diff --git a/tools/replace_engine_version.sh b/tools/replace_engine_version.sh index d25c4c9..c599079 100644 --- a/tools/replace_engine_version.sh +++ b/tools/replace_engine_version.sh @@ -6,7 +6,7 @@ set -eEu SUPPORTED_VERSIONS=( "4.26.0" "4.27.0" - "5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0" "5.7.0" + "5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0" "5.7.0" "5.8.0" ) function usage() { @@ -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.7.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file} + sed -i -e "s/\"EngineVersion\": \"5.8.0\",/\"EngineVersion\": \"${engine_version}\",/g" ${file} echo "Replaced engine version in ${file}" done