Skip to content

Commit

Permalink
New module - Beatovnik
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Sosnowski authored and Tomasz Sosnowski committed Mar 23, 2018
1 parent 6cbb4f9 commit 4fdac9e
Show file tree
Hide file tree
Showing 11 changed files with 1,416 additions and 193 deletions.
25 changes: 25 additions & 0 deletions KoralfxVCV.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"slug": "KoralfxVCV",
"name": "Koralfx VCV",
"author": "Tomek Sosnowski",
"license": "BSD 3-clause",
"version": "0.5.8",
"homepage": "https://github.com/koralfx/KoralfxVCV",
"donation": "https://www.paypal.me/koralfx/",
"manual": "https://github.com/koralfx/KoralfxVCV/blob/master/README.md",
"source": "https://github.com/koralfx/KoralfxVCV",
"downloads": {
"win": {
"download": "https://example.com/AudibleInstruments-0.5.0-win.zip",
"sha256": "9372ce3f8ef42d7e874beda36f7c051b3d7de9c904e259a5fc9dba8dc664bf65"
},
"lin": {
"download": "https://example.com/AudibleInstruments-0.5.0-lin.zip",
"sha256": "238145156cc4e11b3ca6d750df38ca2daf3e09648d9c7db5f23e9518c1ccf5dc"
},
"mac": {
"download": "https://example.com/AudibleInstruments-0.5.0-mac.zip",
"sha256": "c19fcdfd07dc6184ce30953bf9adb2b4a77d20ef66d2b1c6a6024c2ca4ff505b"
}
}
}
Binary file modified KoralfxVCV_Plugins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 14 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SLUG = KoralfxVCV

# Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
VERSION = 0.5.7
VERSION = 0.5.8

# FLAGS will be passed to both the C and C++ compiler
FLAGS +=
Expand All @@ -25,3 +25,16 @@ RACK_DIR ?= ../..

# Include the VCV Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk


.PHONY: dist

dist: all
mkdir -p dist/$(SLUG)
cp plugin.* dist/$(SLUG)/
cp LICENSE.txt dist/$(SLUG)/
cp README.md dist/$(SLUG)/
cp *.png dist/$(SLUG)/
mkdir -p dist/$(SLUG)/res/
cp -R res/*.svg dist/$(SLUG)/res/
cd dist && zip -5 -r $(SLUG)-$(VERSION)-$(ARCH).zip $(SLUG)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ You can support the development by making a donation, it will be appreciated!


## Mixovnik
A constant-power panning 16-channel mixer width two AUX sends, external mix input and CV Pan inputs (bipolar mode).

A constant-power panning 16-channel mixer width two AUX sends and returns, external mix input, CV Vol (unipolar mode) and CV Pan (bipolar mode) inputs. Also with mute and solo buttons.

## Quantovnik
A pitch quantizer with note info and bipolar-unipolar converter. Also with octave and course shift.


## Beatovnik
Based on the external BPM clock, the module generates 2x and 4x multiply and 2x and 4x divide clock signals. In addition, you can set the pulse width (proportionally for all outputs). The last important thing - CV output compatible 100% with Fundamental Delay CV Time input. This is a CV to time conversion, of course based on BPM.


Enjoy!
371 changes: 371 additions & 0 deletions res/Beatovnik-Dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
371 changes: 371 additions & 0 deletions res/Beatovnik-Light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
92 changes: 46 additions & 46 deletions res/Mixovnik-Dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4fdac9e

Please sign in to comment.