From 17f7b134791972c0f37a2c4812f73111ea736072 Mon Sep 17 00:00:00 2001 From: s-ol Date: Sat, 7 Sep 2019 11:01:11 +0200 Subject: add plugin.json and fix gitignore close #6 --- .gitignore | 9 ++++++--- plugin.json | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 3 deletions(-) create mode 100644 plugin.json diff --git a/.gitignore b/.gitignore index e6e210a..abde234 100644 --- a/.gitignore +++ b/.gitignore @@ -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" + ] + } + ] +} -- cgit v1.2.3