diff options
| -rw-r--r-- | .gitignore | 9 | ||||
| -rw-r--r-- | plugin.json | 44 |
2 files changed, 50 insertions, 3 deletions
@@ -1,3 +1,6 @@ -build -dist -plugin.* +/build +/dist +/plugin.so +/plugin.dylib +/plugin.dll +.DS_Store diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..c853804 --- /dev/null +++ b/plugin.json @@ -0,0 +1,44 @@ +{ + "slug": "s-ol", + "name": "s-ol", + "version": "1.0.0", + "license": "MIT", + "brand": "s-ol", + "author": "sol bekic", + "authorEmail": "s+vcv@s-ol.nu", + "authorUrl": "https://s-ol.nu", + "pluginUrl": "https://s-ol.nu/vcvmods", + "manualUrl": "https://s-ol.nu/vcvmods/doc", + "sourceUrl": "https://git.s-ol.nu/vcvmods", + "donateUrl": "", + "modules": [ + { + "slug": "WrapComp", + "name": "Wrapping Comparator", + "description": "compares a voltage against a window in a circular space", + "tags": [ + "Utility", + "Logic" + ] + }, + { + "slug": "CircleVCO", + "name": "Quadrature Circle VCO", + "description": "sinewave VCO with 90\u00b0 quadrature output for drawing circles.", + "tags": [ + "Digital", + "Oscillator", + "Visual" + ] + }, + { + "slug": "Modulo", + "name": "Modulo / Round", + "description": "generates a modulo + rounded signal for a voltage-controlled step size.", + "tags": [ + "Logic", + "Quantizer" + ] + } + ] +} |
