BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit 9439e6220c9e32a734f99966ba4527a07b1952c2
parent e953c572e93e02083f4d6453c5596b52239a462b
Author: Matt Demanett <matt@demanett.net>
Date:   Tue,  5 Dec 2017 23:54:19 -0500

Fixes for license, build, module display order.

Diffstat:
ALICENSE-dist.txt | 2++
RLICENSE -> LICENSE.txt | 0
MMakefile | 13++++++++-----
Msrc/BogaudioModules.cpp | 5+++--
4 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/LICENSE-dist.txt b/LICENSE-dist.txt @@ -0,0 +1,2 @@ + +Uses FFTReal (https://github.com/cyrilcode/fft-real) under terms of the "Do What The F*ck You Want To Public License" (see https://github.com/cyrilcode/fft-real/blob/master/license.txt). diff --git a/LICENSE b/LICENSE.txt diff --git a/Makefile b/Makefile @@ -21,10 +21,13 @@ clean: benchmark_clean distprep: rm -f build/src/BogaudioModules.cpp* +SLUG=Bogaudio dist: distprep @$(MAKE) all REQUIRE_VERSION=1 - mkdir -p dist/BogaudioModules - cp LICENSE* dist/BogaudioModules/ - cp plugin.* dist/BogaudioModules/ - cp -R res dist/BogaudioModules/ - rm dist/BogaudioModules/res/*-src.svg + mkdir -p dist/$(SLUG) + cp README* dist/$(SLUG)/ + cp LICENSE* dist/$(SLUG)/ + cp plugin.* dist/$(SLUG)/ + cp -R res dist/$(SLUG)/ + rm dist/$(SLUG)/res/*-src.svg + (cd dist && zip -r $(SLUG)-$(VERSION)-$(ARCH).zip $(SLUG)) diff --git a/src/BogaudioModules.cpp b/src/BogaudioModules.cpp @@ -15,10 +15,11 @@ void init(rack::Plugin *p) { p->addModel(createModel<ShaperPlusWidget>("Bogaudio", "Bogaudio-ShaperPlus", "Shaper+", ENVELOPE_GENERATOR_TAG, AMPLIFIER_TAG)); p->addModel(createModel<DADSRHWidget>("Bogaudio", "Bogaudio-DADSRH", "DADSR(H)", ENVELOPE_GENERATOR_TAG)); p->addModel(createModel<DADSRHPlusWidget>("Bogaudio", "Bogaudio-DADSRHPlus", "DADSR(H)+", ENVELOPE_GENERATOR_TAG)); + p->addModel(createModel<AnalyzerWidget>("Bogaudio", "Bogaudio-Analyzer", "Analyzer")); - p->addModel(createModel<OffsetWidget>("Bogaudio", "Bogaudio-Offset", "Offset", ATTENUATOR_TAG, UTILITY_TAG)); - p->addModel(createModel<SampleHoldWidget>("Bogaudio", "Bogaudio-SampleHold", "S&H", SAMPLE_AND_HOLD_TAG, DUAL_TAG, UTILITY_TAG)); p->addModel(createModel<ManualWidget>("Bogaudio", "Bogaudio-Manual", "Manual", UTILITY_TAG)); p->addModel(createModel<NoiseWidget>("Bogaudio", "Bogaudio-Noise", "Noise", NOISE_TAG, UTILITY_TAG)); + p->addModel(createModel<OffsetWidget>("Bogaudio", "Bogaudio-Offset", "Offset", ATTENUATOR_TAG, UTILITY_TAG)); + p->addModel(createModel<SampleHoldWidget>("Bogaudio", "Bogaudio-SampleHold", "S&H", SAMPLE_AND_HOLD_TAG, DUAL_TAG, UTILITY_TAG)); }