Skip to content

Commit 690f067

Browse files
committed
Support Unreal Engine 5.7
1 parent f839f50 commit 690f067

6 files changed

Lines changed: 8 additions & 7 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ workflows:
1010
matrix:
1111
parameters:
1212
unreal-engine-version: [
13-
"4.27.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.3", "5.5.1"
13+
"4.27.0",
14+
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.3", "5.5.1", "5.6.1", "5.7.0"
1415
]
1516
version: ["free", "full"]
1617
- build-sample:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ jobs:
121121
uses: actions/checkout@v3
122122

123123
- name: Check CRLF
124-
uses: erclu/check-crlf@v1
124+
uses: erclu/check-crlf@master
125125
with:
126126
path: .

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
unreal_engine_version:
2222
[
2323
"4.27.0",
24-
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0", "5.6.0"
24+
"5.0.0", "5.1.0", "5.2.0", "5.3.0", "5.4.0", "5.5.0", "5.6.0", "5.7.0"
2525
]
2626
version:
2727
["free", "full"]

BlueprintToRSTDoc/BlueprintToRSTDoc.uplugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"VersionName": "1.4.0",
55
"FriendlyName": "Blueprint to reStructuredText Document",
66
"Description": "Generate reStructuredText (RST) Format Documents from Blueprints",
7-
"EngineVersion": "5.6.0",
7+
"EngineVersion": "5.7.0",
88
"Category": "Other",
99
"CreatedBy": "nutti (Colorful Pico)",
1010
"CreatedByURL": "https://github.com/nutti/UEPlugin-BlueprintToRSTDoc",

tools/remove_code.sh

Lines changed: 1 addition & 1 deletion
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" "5.5.0" "5.6.0"
9+
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0" "5.7.0"
1010
)
1111

1212
function usage() {

tools/replace_engine_version.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" "5.5.0" "5.6.0"
9+
"5.0.0" "5.1.0" "5.2.0" "5.3.0" "5.4.0" "5.5.0" "5.6.0" "5.7.0"
1010
)
1111

1212
function usage() {
@@ -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.6.0\",/\"EngineVersion\": \"${engine_version}\",/g" "${file}"
38+
sed -i -e "s/\"EngineVersion\": \"5.7.0\",/\"EngineVersion\": \"${engine_version}\",/g" "${file}"
3939
echo "Replaced engine version in ${file}"
4040
done

0 commit comments

Comments
 (0)