Audio registry with searchable list of packages containing Plugins, Presets and Projects. Provides an API with file metadata and urls to binaries for installation.
This registry is primarily for distributing free open-source packages. There are plenty of solutions for closed-source, paid plugins. Packages should be built for cross-platform, supporting Linux, Mac and Windows. Packages which don't meet the guidelines may be rejected and/or removed at an Open Stack contributor at any time.
Community members add Yaml files to a new branch of this code, one for each package version. After yaml files have been scanned for security, they are merged into the main codebase. GitHub Actions generates a GitHub static site containing json files for each part of the registry. Compatible command-line tools, apps and websites can read the json files to discover packages.
Create a fork of the repo open-audio-stack-registry
. Add new folders for your organization and package using kebab-case:
./src/plugins/org-name/package-name
Add a jpeg screenshot of the package, and flac audio file previewing the package:
./src/plugins/org-name/package-name/package-name.flac
./src/plugins/org-name/package-name/package-name.jpg
.jpg
and .flac
compressed formats were chosen to optimize loading times on compatible websites.
Create yaml files for each version of the package using Semantic Versioning.
./src/plugins/org-name/package-name/1.0.0/index.yaml
./src/plugins/org-name/package-name/2.0.0/index.yaml
Semantic versioning allows a compatible installer to install the latest non-breaking version of a package.
Use the below template yaml file as a starting point. Open Audio Stack Registry validates each package's metadata, if you miss or enter incorrect information, your package will not be included in the registry.
---
audio: https://open-audio-stack.github.io/open-audio-stack-registry/plugins/surge-synthesizer/surge/surge.flac
author: Surge Synth Team
changes: |-
- Fixed bug with audio
- New feature added
date: '2024-03-02T00:00:00.000Z'
description: Hybrid synthesizer featuring many synthesis techniques, a great selection
of filters, a flexible modulation engine, a smorgasbord of effects, and modern features
like MPE and microtuning.
files:
- architectures:
- x64
contains:
- elf
- clap
- lv2
- vst3
format: zip
sha256: 42ad977d43d6caa75361cd2ad8794e36
systems:
- type: linux
size: 94448096
type: archive
url: https://github.com/surge-synthesizer/releases-xt/releases/download/1.3.1/surge-xt-linux-1.3.1-pluginsonly.tar.gz
image: https://open-audio-stack.github.io/open-audio-stack-registry/plugins/surge-synthesizer/surge/surge.jpg
license: gpl-3.0
name: Surge XT
tags:
- Instrument
- Synth
- Modulation
type: instrument
url: https://github.com/surge-synthesizer/surge
For file downloads, we recommend .zip
files which are cross-platform and can be extracted automatically and placed into the correct locations without user interaction.
If you use other formats such as deb, dmg, exe, msi
compatible apps will download and copy the file to the users directory, but might not support full installation.
Validate your changes locally by running these command:
npm install
npm run dev:validate -- src/plugins/surge-synthesizer/surge/1.3.1/index.yaml
Ensure you provide the path to the yaml file you changed.
After validation passes, push your branch to GitHub to have the automated GitHub Action run additional checks and return any issues with your changes.
Open Audio Stack Registry was built using:
Install dependencies using:
npm install
Run dev commands using:
npm run lint
npm run format
npm run dev
npm test
Create a production build using:
npm run build
Run the production build:
npm start
This package is versioned using git tags:
npm version patch
git push && git push origin --tags
GitHub Actions will automatically publish the package to Github pages at:
https://open-audio-stack.github.io/open-audio-stack-registry
For more information please contact kmturley