Merge pull request #630 from Wasted-Audio/update/befaco_v250

update Befaco
This commit is contained in:
dreamer 2024-03-31 13:15:45 +02:00 committed by GitHub
commit c181538949
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 2 deletions

@ -1 +1 @@
Subproject commit 4c55f117212e758324412efe73f2f573a18f75d3
Subproject commit d3ad6c6732cee8a80197aa351dd9efef9c278d4c

View file

@ -555,7 +555,7 @@ PLUGIN_FILES += $(filter-out Befaco/src/plugin.cpp,$(wildcard Befaco/src/*.cpp))
PLUGIN_FILES += $(wildcard Befaco/src/noise-plethora/*/*.cpp)
# modules/types which are present in other plugins
BEFACO_CUSTOM = ADSR Mixer chowdsp
BEFACO_CUSTOM = ADSR Mixer chowdsp Burst
# --------------------------------------------------------------
# Bidoo

View file

@ -137,9 +137,11 @@ extern Model* modelChord;
// Befaco
#define modelADSR modelBefacoADSR
#define modelMixer modelBefacoMixer
#define modelBurst modelBefacoBurst
#include "Befaco/src/plugin.hpp"
#undef modelADSR
#undef modelMixer
#undef modelBurst
// Bidoo
#include "Bidoo/src/plugin.hpp"
@ -1504,6 +1506,7 @@ static void initStatic__Befaco()
{
#define modelADSR modelBefacoADSR
#define modelMixer modelBefacoMixer
#define modelBurst modelBefacoBurst
p->addModel(modelEvenVCO);
p->addModel(modelRampage);
p->addModel(modelABC);
@ -1525,8 +1528,11 @@ static void initStatic__Befaco()
p->addModel(modelChannelStrip);
p->addModel(modelPonyVCO);
p->addModel(modelMotionMTR);
p->addModel(modelBurst);
p->addModel(modelVoltio);
#undef modelADSR
#undef modelMixer
#undef modelBurst
}
}

View file

@ -413,6 +413,7 @@ static const struct {
{ kModeBefaco, "/Befaco/res/components/Knurlie.svg" },
{ kModeBefaco, "/Befaco/res/panels/ABC.svg" },
{ kModeBefaco, "/Befaco/res/panels/ADSR.svg" },
{ kModeBefaco, "/Befaco/res/panels/Burst.svg" },
{ kModeBefaco, "/Befaco/res/panels/ChoppingKinky.svg" },
{ kModeBefaco, "/Befaco/res/panels/DualAtenuverter.svg" },
{ kModeBefaco, "/Befaco/res/panels/EvenVCO.svg" },
@ -432,6 +433,7 @@ static const struct {
{ kModeBefaco, "/Befaco/res/panels/SlewLimiter.svg" },
{ kModeBefaco, "/Befaco/res/panels/SpringReverb.svg" },
{ kModeBefaco, "/Befaco/res/panels/StereoStrip.svg" },
{ kModeBefaco, "/Befaco/res/panels/Voltio.svg" },
// GPLv3+
{ kModeCardinal, "/Cardinal/res/AudioFile.svg" },
{ kModeCardinal, "/Cardinal/res/AudioToCVPitch.svg" },