diff --git a/.travis.yml b/.travis.yml index d744ce6a51..ecfa04cdc1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,6 @@ env: - mod_name: rpu - extra_dir: extra - bin_dir: extra/bin - - appearance_dir: appearance - appearance_repo: BGforgeNet/Fallout2_Hero_Appearance - party_orders_repo: BGforgeNet/Fallout2_Party_Orders - hq_music_repo: BGforgeNet/Fallout2-HQ-music diff --git a/docs/changelog.md b/docs/changelog.md index 5024c6fa73..e1454bf0f3 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,6 +5,7 @@ This file lists changes for RPU only. See original RP changelog [here](rp-change In addition to the below list, RPU releases contain all applicable fixes from the corresponding [UPU releases](https://github.com/BGforgeNet/Fallout2_Unofficial_Patch/blob/master/docs/changelog.md). Sometimes UPU or RPU may be updated independently, which is why you might see gaps in version numbers. +- [Version 18](#version-18) - [Version 17](#version-17) - [Version 16](#version-16) - [Version 14](#version-14) @@ -22,6 +23,9 @@ Sometimes UPU or RPU may be updated independently, which is why you might see ga - [Version 2](#version-2) - [Version 1](#version-1) +### Version 18 +Updated [Hero Appearance](https://github.com/BGforgeNet/Fallout2_Hero_Appearance) to v2.1, shipping only canon sets by default. + ### Version 17 - Kaga now has [consistent stats and HP](https://github.com/BGforgeNet/Fallout2_Restoration_Project/issues/57). diff --git a/extra/publish/appearance.sh b/extra/publish/appearance.sh index 6682f2ffaa..0e28a3adca 100755 --- a/extra/publish/appearance.sh +++ b/extra/publish/appearance.sh @@ -3,8 +3,9 @@ set -xeu -o pipefail release_dir="$(realpath $release_dir)" +api_url="https://api.github.com/repos/${appearance_repo}/releases/latest" cd "$release_dir" -wget -nv "$(curl -s https://api.github.com/repos/${appearance_repo}/releases/latest | grep browser_download_url | awk -F '"' '{print $4}')" -unzip appearance*.zip -rm -f appearance*.zip +wget -nv "$(curl -s $api_url | grep browser_download_url | grep -v non_canon | awk -F '"' '{print $4}')" +unzip hero_appearance*.zip +rm -f hero_appearance*.zip