Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sickozell authored Aug 7, 2022
1 parent c033946 commit 5209c2c
Show file tree
Hide file tree
Showing 15 changed files with 5,596 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CREDITS
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/)
23 changes: 23 additions & 0 deletions Makefile
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
62 changes: 62 additions & 0 deletions plugin.json
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"
]
}
]
}
Loading

0 comments on commit 5209c2c

Please sign in to comment.