diff --git a/.gitea/ISSUE_TEMPLATE/release-process.md b/.gitea/ISSUE_TEMPLATE/release-process.md index 3bdad45131..294173bf65 100644 --- a/.gitea/ISSUE_TEMPLATE/release-process.md +++ b/.gitea/ISSUE_TEMPLATE/release-process.md @@ -74,13 +74,12 @@ Before moving on with Full Freeze, make sure that: - [ ] [Freeze Jenkins](wiki/ReleaseProcess#freeze-jenkins) - [ ] [Confirm full freeze](wiki/ReleaseProcess#confirm-full-freeze) -- [ ] [Package East Asian mods](wiki/ReleaseProcess#package-east-asian-mods) - [ ] [Announce Release Candidates](wiki/ReleaseProcess#announce-release-candidates) - [ ] Release Testing: [link to RC]( ) --- -When RCs are released, a planned release date is decided with the team and published here. This improves internal coordination and allows us to release announcements on all platforms at the same time. +When RCs are released, a planned release date is decided with the team and published here. This improves internal coordination and allows us to release announcements on all platforms at the same time. --- diff --git a/source/tools/dist/0ad.nsi b/source/tools/dist/0ad.nsi index e653540c44..ea7ab87bf5 100644 --- a/source/tools/dist/0ad.nsi +++ b/source/tools/dist/0ad.nsi @@ -103,13 +103,17 @@ !insertmacro MUI_LANGUAGE "Hungarian" !insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Italian" + !insertmacro MUI_LANGUAGE "Japanese" + !insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Polish" !insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "PortugueseBR" !insertmacro MUI_LANGUAGE "Russian" + !insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "Slovak" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Swedish" + !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Ukrainian" diff --git a/source/tools/dist/build-archives.sh b/source/tools/dist/build-archives.sh index da6f8220e4..859f0fe51b 100755 --- a/source/tools/dist/build-archives.sh +++ b/source/tools/dist/build-archives.sh @@ -14,10 +14,9 @@ echo "Building archives" echo "Filtering languages" # Included languages -# CJK languages are excluded, as they are in mods. # Note: Needs to be edited manually at each release. # Keep in sync with the installer languages in 0ad.nsi. -LANGS="ast cs de el en_GB es eu fi fr gl hu id it nl pl pt_BR pt_PT ru sk sv tr uk" +LANGS="ast cs de el en_GB es eu fi fr gl hu id it ja ko nl pl pt_BR pt_PT ru sk sv tr uk zh zh_TW" # shellcheck disable=SC2086 REGEX=$(printf "\|%s" ${LANGS} | cut -c 2-)