Skip to content

Commit e9b1222

Browse files
committed
fixed package version name
1 parent 50b24e0 commit e9b1222

File tree

4 files changed

+26
-13
lines changed

4 files changed

+26
-13
lines changed

.travis.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,21 @@ language: minimal
22
dist: bionic
33
sudo: false
44

5+
addons:
6+
apt:
7+
update: true
8+
packages:
9+
- p7zip
10+
- wine-stable
11+
- wine32
12+
513
script:
614
- ./extra/appearance.sh
715

816
env:
917
global:
1018
- extra_dir: extra
1119
- bin_dir: extra/bin
12-
- mod_version: 1
1320
- appearance_dir: appearance
1421
- release_dir: release
1522
- WINEARCH: win32

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@
55

66
[__Download__](https://github.com/BGforgeNet/Fallout2_Hero_Appearance/releases/latest)
77
| [__Install__](#installation)
8+
| [__Report issues__](https://github.com/BGforgeNet/Fallout2_Hero_Appearance/issues)
89

9-
This a collection of additional __player__ character models for Fallout 2 and games based on its engine.
10-
11-
## Installation
12-
13-
* It is included in [killap's Restoration Project](https://github.com/BGforgeNet/Fallout2_Restoration_Project). If you're using it, you **do not need** to download this collection separately.
14-
* But you can also use it with [killap's Unofficial Patch](https://github.com/BGforgeNet/Fallout2_Unofficial_Patch), other modifications or even vanilla game.
15-
In that case:
16-
- Ensure that [sfall](https://github.com/phobos2077/sfall) is installed and `EnableHeroAppearanceMod=1` is set in `ddraw.ini`.
17-
- After that, simply download the [latest release](https://github.com/BGforgeNet/Fallout2_Hero_Appearance/releases/latest) and extract it into game directory.
10+
This a collection of additional **player** character models for Fallout 2 and games based on its engine.
1811

12+
**Notes:**
13+
- You can use it with [killap's Unofficial Patch](https://github.com/BGforgeNet/Fallout2_Unofficial_Patch), other modifications or vanilla game.
14+
- It is **already included** in [killap's Restoration Project](https://github.com/BGforgeNet/Fallout2_Restoration_Project). If you're using RPU, you **do not need** to download this collection separately.
1915

16+
## Installation
17+
- Ensure that [sfall](https://github.com/phobos2077/sfall) is installed and `EnableHeroAppearanceMod=1` is set in `ddraw.ini`.
18+
- After that, simply download the [latest release](https://github.com/BGforgeNet/Fallout2_Hero_Appearance/releases/latest) and extract it into game directory.
2019

2120
### [Changelog](docs/changelog.md)

docs/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## Version 1.2
4+
Fixed package version in filename.
5+
36
## Version 1.1
47
Fixed Punk Girl switching to default look on death.
58

extra/appearance.sh

+7-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ bin_dir="$(realpath $bin_dir)"
66
dat2a="wine $bin_dir/dat2.exe a -1"
77
file_list="$(realpath file.list)"
88
release_dir="$(realpath $release_dir)"
9-
zip="appearance_v${mod_version}.zip"
9+
# release?
10+
if [ -n "$TRAVIS_TAG" ]; then # tag found: releasing
11+
export version="$TRAVIS_TAG"
12+
else
13+
export version="git$TRAVIS_COMMIT"
14+
fi
15+
zip="appearance_${version}.zip"
1016

11-
sudo apt-get -q update
12-
sudo apt-get -q -y --no-install-recommends install wine-stable wine32
1317

1418
if [[ -d "$appearance_dir" ]]; then
1519
mkdir -p "$release_dir/appearance"

0 commit comments

Comments
 (0)