-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ca79f1
commit 06c7c2e
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: minimal | ||
dist: bionic | ||
sudo: false | ||
|
||
script: | ||
- ./extra/publish.sh | ||
|
||
deploy: | ||
provider: releases | ||
api_key: $GITHUB_TOKEN | ||
file_glob: true | ||
file: | ||
- fallout_sonora*.zip | ||
skip_cleanup: true | ||
on: | ||
tags: true | ||
branch: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Fallout-Sonora-HQ-music | ||
|
||
High quality music for Fallout Sonora. | ||
|
||
## Installation | ||
|
||
### Low quality | ||
1. Download LQ version from the [latest release page](https://github.com/egornovivan/Fallout-Sonora-HQ-music/releases/latest). | ||
1. Extract into `data\sound\music`. | ||
1. In `fallout2.cfg` find `[sound]` section and set `music_path1=data\sound\music\`. | ||
|
||
### High quality | ||
1. Make sure you have [sfall](https://github.com/phobos2077/sfall/) (`ddraw.dll`) version no less than 4.2.9. | ||
1. Download HQ version from the [latest release page](https://github.com/egornovivan/Fallout-Sonora-HQ-music/releases/latest). | ||
1. Extract into `data\sound\music`. | ||
1. In `fallout2.cfg` find `[sound]` section and set `music_path1=data\sound\music\`. | ||
|
||
### Ultra high quality | ||
1. Make sure you have [sfall](https://github.com/phobos2077/sfall/) (`ddraw.dll`) version no less than 4.1.1. | ||
1. Download UHQ version from the [latest release page](https://github.com/egornovivan/Fallout-Sonora-HQ-music/releases/latest). | ||
1. Extract into `data\sound\music`. | ||
1. In `fallout2.cfg` find `[sound]` section and set `music_path1=data\sound\music\`. | ||
1. In `ddraw.ini`, find `[Sound]` section and set `AllowDShowSound=2`. | ||
|
||
## Composer | ||
[Nobody's Nail Machine](https://nobodysnailmachine.bandcamp.com/) | ||
[Mark Morgan](https://vgmdb.net/artist/1446) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
set -xeu -o pipefail | ||
|
||
# release? | ||
if [ -n "$TRAVIS_TAG" ]; then # tag found: releasing | ||
export version="$TRAVIS_TAG" | ||
else | ||
export version="git$TRAVIS_COMMIT" | ||
fi | ||
|
||
for q in lq_ebur128 hq_ebur128 uhq_ebur128; do | ||
fname="fallout_sonora_${q}_music_${version}.zip" | ||
cp "LICENSE.md" "$q" | ||
cd "$q" | ||
zip "$fname" * | ||
mv "$fname" .. | ||
cd .. | ||
done |