A cross-platform utility app for StepMania that downloads and automatically updates song ("simfile") packs hosted in Amazon S3 buckets (or any bucket that can interact with the S3 API).
Made with Electron and Vue.js via the Quasar framework.
Previously supported list of downloadable packs (no longer maintained by me):
# Install dependencies
yarn
# Start app in development mode (hot-code reloading, error reporting, etc.)
yarn dev
# Lint files
yarn lint
# Build app for production
yarn build
If using git-flow, disable automatic tagging to the production branch:
git config gitflow.hotfix.finish.notag true
git config gitflow.release.finish.notag true
Simply click on the + Add Songs
button and select a bucket from the list.
You can also add a new S3 bucket that is not already in the list,
in which case the name of the S3 bucket is required.
For buckets hosted outside of Amazon,
the endpoint URL of the bucket is required as well.
Once selected, the chosen bucket will then be displayed on the main page where you can view the songs in the bucket, download all files in the bucket, or remove the bucket from the app.
Note: Removing a bucket from the app will only hide the songs from StepMania, and not delete any local files from your computer. This is to prevent re-downloading any files unnecessarily should you decide to re-add the bucket. If you want to completely remove the downloaded packs from your computer, you can manually delete the files and folders yourself.
Once downloaded,
all song packs will automatically be detected and playable in StepMania
the next time you run the game
(as the download path for each bucket is automatically added
to the AdditionalSongFolders
variable in StepMania's Preferences.ini
file).
The packs will also be updated automatically as long as the app is open
or running in the background.
The app itself will check for and download updates periodically,
or you can perform a manual update
by clicking on the Update
button for each bucket.
The settings page includes the following parameters, which are set to their default values when the app is launched for the first time. Any changes made to these settings will be saved automatically.
Name | Default Value | Description |
---|---|---|
Download Path |
(See below.) | The directory in which song packs will be downloaded. Only applies to newly added packs. |
Preferences.ini Path |
Paths to all Preferences.ini files automatically found/detected. |
The full path to the Preferences.ini file used by StepMania (or paths if multiple copies of StepMania are installed). |
Update Frequency |
1 hour |
How often the app will check for and download updates. |
Auto-Launch on Login |
false |
Whether or not to open the app when the computer starts. |
Language |
English (United States) |
Language of the app's user interface. |
Default download paths:
%APPDATA%/StepMania Song Manager/Songs
~/Library/Application Support/StepMania Song Manager/Songs
$XDG_CONFIG_HOME/StepMania Song Manager/Songs
(most likely ~/.config/StepMania Song Manager/Songs
)If you want to upload your own simfile packs for others to freely download with the app, you can follow the steps for each cloud storage provider below.
Note: Regardless of the server to which you want to upload your packs, the files in the bucket must follow this directory structure:
/
. Otherwise, StepMania will not be able to recognize the simfiles from the app./ /
with the bucket name.
After this step,
your bucket should now be public and ready for download from the app!{ "Version": "2012-10-17", "Statement": [ { "Sid": "PublicRead", "Effect": "Allow", "Principal": "*", "Action": [ "s3:GetObject", "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::" , "arn:aws:s3:::/*" ] } ] }
aws configure --profile <any-profile-name>
aws configure set s3.multipart_threshold 128MB --profile <any-profile-name>
Feel free to change 128MB
to whatever size you want,
but make sure it is larger than the size of the largest file
you intend to upload.
aws s3 sync </path/to/packs> s3://<bucket-name> --delete --profile <any-profile-name>
See LICENSE for details.