-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
5,596 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## Credits | ||
|
||
The Component Library graphics for these modules are copyright © VCV and licensed under CC BY-NC 4.0 (https://creativecommons.org/licenses/by-nc/4.0/) | ||
|
||
Thanks to Omri Cohen for support (https://omricohen-music.com/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# If RACK_DIR is not defined when calling the Makefile, default to two directories above | ||
RACK_DIR ?= ../.. | ||
|
||
# FLAGS will be passed to both the C and C++ compiler | ||
FLAGS += | ||
CFLAGS += | ||
CXXFLAGS += | ||
|
||
# Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path. | ||
# Static libraries are fine, but they should be added to this plugin's build system. | ||
LDFLAGS += | ||
|
||
# Add .cpp files to the build | ||
SOURCES += $(wildcard src/*.cpp) | ||
|
||
# Add files to the ZIP package when running `make dist` | ||
# The compiled plugin and "plugin.json" are automatically added. | ||
DISTRIBUTABLES += res | ||
DISTRIBUTABLES += $(wildcard LICENSE*) | ||
DISTRIBUTABLES += $(wildcard presets) | ||
|
||
# Include the Rack plugin Makefile framework | ||
include $(RACK_DIR)/plugin.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"slug": "SickoCV", | ||
"name": "SickoCV", | ||
"version": "2.0.0", | ||
"license": "GPL-3.0", | ||
"brand": "Sickozell", | ||
"author": "Sickozell", | ||
"authorEmail": "[email protected]", | ||
"authorUrl": "http://www.sickozell.org", | ||
"pluginUrl": "https://github.com/sickozell/SickoCV", | ||
"manualUrl": "https://github.com/sickozell/SickoCV", | ||
"sourceUrl": "https://github.com/sickozell/SickoCV", | ||
"donateUrl": "", | ||
"changelogUrl": "", | ||
"modules": [ | ||
{ | ||
"slug": "Btoggler", | ||
"name": "bToggler", | ||
"description": "8 buffered toggle switches (flip flop) with gate output and signal routing", | ||
"tags": [ | ||
"Logic" | ||
] | ||
}, | ||
{ | ||
"slug": "BtogglerPlus", | ||
"name": "bTogglerPlus", | ||
"description": "8 buffered toggle switches (flip flop) with signal routing and warnings to use with led midi controllers", | ||
"tags": [ | ||
"Logic", | ||
"Utility" | ||
] | ||
}, | ||
{ | ||
"slug": "Calcs", | ||
"name": "Calcs", | ||
"description": "Calculates sums, differences, multiplications, divisions and averages of 3 CV inputs", | ||
"tags": [ | ||
"Utility" | ||
] | ||
}, | ||
{ | ||
"slug": "Toggler", | ||
"name": "Toggler", | ||
"description": "Stereo signal toggle switches (flip flop) router, ASR envelope with VCA", | ||
"tags": [ | ||
"Logic", | ||
"Envelope generator", | ||
"Voltage-controlled amplifier" | ||
] | ||
}, | ||
{ | ||
"slug": "TogglerCompact", | ||
"name": "Toggler Compact", | ||
"description": "Stereo signal toggle switches (flip flop) router, ASR envelope with VCA in a compact form factor", | ||
"tags": [ | ||
"Logic", | ||
"Envelope generator", | ||
"Voltage-controlled amplifier" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.