Skip to content

Commit 11b0cc3

Browse files
committed
Support Unreal Engine 5.5
1 parent 94ef56d commit 11b0cc3

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ workflows:
1616
- unreal-engine-ci
1717
matrix:
1818
parameters:
19-
# TODO: The container image is not supported for 5.4.0.
2019
unreal-engine-version: [
21-
"4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0"
20+
"4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.3", "5.5.1"
2221
]
2322
version: ["free", "full"]
2423
- build-sample:

.github/workflows/release.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
unreal_engine_version:
21-
["4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0"]
21+
[
22+
"4.27.0",
23+
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0"
24+
]
2225
version:
2326
["free", "full"]
2427
steps:
@@ -44,7 +47,7 @@ jobs:
4447
mv Kdtree_UE${{ matrix.unreal_engine_version }}_${{ matrix.version }}.zip release-plugin-${{ matrix.version }}
4548
4649
- name: Upload artifact
47-
uses: actions/upload-artifact@v2
50+
uses: actions/upload-artifact@v3
4851
with:
4952
name: Kdtree_${{ matrix.version }}
5053
path: "release-plugin-${{ matrix.version }}"
@@ -63,7 +66,7 @@ jobs:
6366
mv samples/SampleProject.zip release-sample
6467
6568
- name: Upload artifact
66-
uses: actions/upload-artifact@v2
69+
uses: actions/upload-artifact@v3
6770
with:
6871
name: SampleProject
6972
path: "release-sample"
@@ -77,7 +80,7 @@ jobs:
7780
- name: Checkout repo
7881
uses: actions/checkout@v2
7982
- name: Fetch Artifacts
80-
uses: actions/download-artifact@v2
83+
uses: actions/download-artifact@v3
8184
with:
8285
path: dist
8386
- name: Install hub command

Kdtree/Kdtree.uplugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"VersionName": "1.3",
55
"FriendlyName": "kd-tree",
66
"Description": "Blueprint nodes to build a kd-tree",
7-
"EngineVersion": "5.4.0",
7+
"EngineVersion": "5.5.0",
88
"Category": "Other",
99
"CreatedBy": "nutti (Colorful Pico)",
1010
"CreatedByURL": "https://github.com/nutti/UEPlugin-Kdtree",

tools/remove_code.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -eEu
66

77
SUPPORTED_VERSIONS=(
88
"4.26.0" "4.27.0"
9-
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0"
9+
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0"
1010
)
1111

1212
function usage() {
@@ -19,7 +19,7 @@ if [ $# -ne 4 ]; then
1919
fi
2020

2121
SOURCE_DIR=${1}
22-
ENGINE_VERSION=${2}
22+
ENGINE_VERSION="${2%.*}.0"
2323
FULL=0
2424
if [ "${3}" = "full" ]; then
2525
FULL=1

tools/replace_engine_version.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -eEu
66

77
SUPPORTED_VERSIONS=(
88
"4.26.0" "4.27.0"
9-
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0"
9+
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0"
1010
)
1111

1212
function usage() {
@@ -19,7 +19,7 @@ if [ $# -ne 2 ]; then
1919
fi
2020

2121
source_dir=${1}
22-
engine_version=${2}
22+
engine_version="${2%.*}.0"
2323

2424
supported=0
2525
for v in "${SUPPORTED_VERSIONS[@]}"; do
@@ -35,6 +35,6 @@ fi
3535

3636
# shellcheck disable=SC2044
3737
for file in $(find "${source_dir}" -name "*.uplugin"); do
38-
sed -i -e "s/\"EngineVersion\": \"5.4.0\",/\"EngineVersion\": \"${engine_version}\",/g" "${file}"
38+
sed -i -e "s/\"EngineVersion\": \"5.5.0\",/\"EngineVersion\": \"${engine_version}\",/g" "${file}"
3939
echo "Replaced engine version in ${file}"
4040
done

0 commit comments

Comments
 (0)