diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2019-09-07 09:01:11 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2019-09-07 09:01:11 +0000 |
| commit | 17f7b134791972c0f37a2c4812f73111ea736072 (patch) | |
| tree | f10d99d28df75e41f186aa2617bd3e8837bf332d | |
| parent | add parameter descriptions (diff) | |
| download | vcvmods-master.tar.gz vcvmods-master.zip | |
close #6
| -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" + ] + } + ] +} |
