Skip to content

Commit

Permalink
Added README.md and travis script.
Browse files Browse the repository at this point in the history
  • Loading branch information
egornovivan committed Feb 14, 2021
1 parent 4ca79f1 commit 06c7c2e
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
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
28 changes: 28 additions & 0 deletions README.md
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)

19 changes: 19 additions & 0 deletions extra/publish.sh
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

0 comments on commit 06c7c2e

Please sign in to comment.