diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index a133210..8d6caff 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -3,6 +3,8 @@ name: Python package on: push: branches: [ "main" ] + paths-ignore: + - "README.md" pull_request: branches: [ "main" ] release: diff --git a/README.md b/README.md index 7711ebf..8c72af8 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ print("potential sources:", vita.get_modulation_sources()) print("potential destinations:", vita.get_modulation_destinations()) # "lfo_1" and "filter_1_cutoff" are potential sources and destinations. +# Let's use "lfo_1" as a source and "filter_1_cutoff" as a destination. assert synth.connect_modulation("lfo_1", "filter_1_cutoff") controls = synth.get_controls() @@ -69,6 +70,8 @@ synth.load_init_preset() synth.clear_modulations() ``` +Documentation is not yet automated. Please browse [bindings.cpp](https://github.com/DBraun/Vita/blob/main/src/headless/bindings.cpp) to get a sense of how the code works. + ### Issues If you find any issues with the code, report them at https://github.com/DBraun/Vita.