From 793bc687914526f668fac0a9f0c2e49b225e6b3e Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 20 Nov 2017 17:39:30 -0500 Subject: [PATCH] Add tags --- src/Befaco.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Befaco.cpp b/src/Befaco.cpp index ca06a71..e5650ee 100644 --- a/src/Befaco.cpp +++ b/src/Befaco.cpp @@ -10,13 +10,13 @@ void init(rack::Plugin *p) { p->version = TOSTRING(VERSION); #endif - p->addModel(createModel("Befaco", "EvenVCO", "EvenVCO")); - p->addModel(createModel("Befaco", "Rampage", "Rampage")); - p->addModel(createModel("Befaco", "ABC", "A*B+C")); - p->addModel(createModel("Befaco", "SpringReverb", "Spring Reverb")); - p->addModel(createModel("Befaco", "Mixer", "Mixer")); - p->addModel(createModel("Befaco", "SlewLimiter", "Slew Limiter")); - p->addModel(createModel("Befaco", "DualAtenuverter", "Dual Atenuverter")); + p->addModel(createModel("Befaco", "EvenVCO", "EvenVCO", OSCILLATOR_TAG)); + p->addModel(createModel("Befaco", "Rampage", "Rampage", FUNCTION_GENERATOR_TAG, LOGIC_TAG, SLEW_LIMITER_TAG, ENVELOPE_FOLLOWER_TAG, DUAL_TAG)); + p->addModel(createModel("Befaco", "ABC", "A*B+C", RING_MODULATOR_TAG, ATTENUATOR_TAG, DUAL_TAG)); + p->addModel(createModel("Befaco", "SpringReverb", "Spring Reverb", REVERB_TAG, DUAL_TAG)); + p->addModel(createModel("Befaco", "Mixer", "Mixer", MIXER_TAG)); + p->addModel(createModel("Befaco", "SlewLimiter", "Slew Limiter", SLEW_LIMITER_TAG, ENVELOPE_FOLLOWER_TAG)); + p->addModel(createModel("Befaco", "DualAtenuverter", "Dual Atenuverter", ATTENUATOR_TAG, DUAL_TAG)); springReverbInit(); }