VST plugin for live coding using Koto programming language.
Use ./build.sh win
on Windows or ./build.sh mac
on macOS.
If you wish to build manually, you should build GUI first:
cd gui
yarn
yarn build
Then you can build the plugin:
cd ..
cargo build
On OS X VST plugins are packaged inside of loadable bundles. To package your VST as a loadable bundle you may use the osx_vst_bundler.sh script this library provides.
Example:
./osx_vst_bundler.sh Plugin target/release/plugin.dylib
Creates a Plugin.vst bundle
To make the plugin work as expected, you should right-click on the plugin in the FX Rack and choose "Send all keyboard input to plugin".
The debug build initialize a log file on your desktop. At least on macOS this crashes FL Studio on start. To prevent it, comment out the log initialization.
Just tag a new version and push it to remote.
git tag {version}
git push origin {version}
You need doctave and gh-pages node package.
To install gh-pages (it's important to use 3.0.0 version):
npm install -g [email protected]
Building and deploying the docs:
doctave build --release
gh-pages -d site