Update the rest of the plugins, tweak Fundamental dark rules
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
7035a682e5
commit
0ac564aeae
12 changed files with 111 additions and 52 deletions
|
@ -1 +1 @@
|
|||
Subproject commit b948516db4bf1d0f5ba5ee4babeb4980721ec036
|
||||
Subproject commit 43569f442ff3c54448dfd3b5d1f93a61faa0bd56
|
|
@ -1 +1 @@
|
|||
Subproject commit 98c7e62cfe878f9bc849abda61cfd70e8c1966e5
|
||||
Subproject commit 9a2a2a8f82c3ec9f6eb86c677ff8ba4e7e4aa495
|
|
@ -1 +1 @@
|
|||
Subproject commit 1d88a3e0e94542acf8ac95892ce1ff39b68424f3
|
||||
Subproject commit ed6b580f9e205f5d5d1ef6b64d5cf49bac955861
|
|
@ -1 +1 @@
|
|||
Subproject commit 71017fc7704bcb24145bee6b6ab1f7fee3340b03
|
||||
Subproject commit fe2c34eddc3064f534f2a2bd8e9e329d39021769
|
|
@ -1 +1 @@
|
|||
Subproject commit eab50a469bd24107bcab6a825050a64e3f0f1aa4
|
||||
Subproject commit efdf86ca6f47562bde164d145884de92e5ce5fc8
|
|
@ -9,6 +9,10 @@
|
|||
|
||||
|
||||
|
||||
void writeThemeAndContrastAsDefault() {}
|
||||
void readThemeAndContrastFromDefault() {}
|
||||
|
||||
|
||||
void loadThemeAndContrastFromDefault(int* panelTheme, float* panelContrast) {
|
||||
*panelTheme = 1;
|
||||
*panelContrast = panelContrastDefault;
|
||||
|
|
|
@ -212,7 +212,7 @@ PLUGIN_FILES += $(filter-out AS/src/AS.cpp,$(wildcard AS/src/*.cpp))
|
|||
PLUGIN_FILES += AS/freeverb/revmodel.cpp
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
AS_CUSTOM = ADSR LabelDisplayWidget LowFrequencyOscillator VCA allpass comb revmodel
|
||||
AS_CUSTOM = ADSR LabelDisplayWidget LowFrequencyOscillator VCA YellowRedLight allpass comb revmodel
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Atelier
|
||||
|
@ -336,7 +336,7 @@ PLUGIN_FILES += $(filter-out Befaco/src/plugin.cpp,$(wildcard Befaco/src/*.cpp))
|
|||
PLUGIN_BINARIES += Befaco/src/SpringReverbIR.pcm
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
BEFACO_CUSTOM = ADSR
|
||||
BEFACO_CUSTOM = ADSR Mixer
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Bidoo
|
||||
|
@ -390,6 +390,10 @@ PLUGIN_FILES += ESeries/src/E340.cpp
|
|||
# Fundamental
|
||||
|
||||
PLUGIN_FILES += $(filter-out Fundamental/src/plugin.cpp,$(wildcard Fundamental/src/*.cpp))
|
||||
PLUGIN_FILES += Fundamental/src/dr_wav.c
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
FUNDAMENTAL_CUSTOM = $(DRWAV)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# GrandeModular
|
||||
|
@ -522,7 +526,7 @@ PLUGIN_BINARIES += ValleyAudio/src/VOX_MACH.bin
|
|||
PLUGIN_BINARIES += ValleyAudio/src/XFADE.bin
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
VALLEYAUDIO_CUSTOM = $(DRWAV)
|
||||
VALLEYAUDIO_CUSTOM = $(DRWAV) DigitalDisplay
|
||||
VALLEYAUDIO_CUSTOM_PER_FILE = TempoKnob
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
@ -847,6 +851,13 @@ $(BUILD_DIR)/ESeries/%.cpp.o: ESeries/%.cpp
|
|||
$(foreach m,$(ESERIES_CUSTOM),$(call custom_module_names,$(m),ESeries)) \
|
||||
-DpluginInstance=pluginInstance__ESeries
|
||||
|
||||
$(BUILD_DIR)/Fundamental/%.c.o: Fundamental/%.c
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CC) $< $(BUILD_C_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(FUNDAMENTAL_CUSTOM),$(call custom_module_names,$(m),Fundamental)) \
|
||||
-DpluginInstance=pluginInstance__Fundamental
|
||||
|
||||
$(BUILD_DIR)/Fundamental/%.cpp.o: Fundamental/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d51e97d77b23b0321231b0bdab8c18f24ae159d7
|
||||
Subproject commit eb0f8f92082eb38600f35170867cd528d898b48e
|
|
@ -33,9 +33,11 @@
|
|||
// AS
|
||||
#define modelADSR modelASADSR
|
||||
#define modelVCA modelASVCA
|
||||
#define YellowRedLight ASYellowRedLight
|
||||
#include "AS/src/AS.hpp"
|
||||
#undef modelADSR
|
||||
#undef modelVCA
|
||||
#undef YellowRedLight
|
||||
|
||||
// Atelier
|
||||
#include "Atelier/src/plugin.hpp"
|
||||
|
@ -45,8 +47,10 @@
|
|||
|
||||
// Befaco
|
||||
#define modelADSR modelBefacoADSR
|
||||
#define modelMixer modelBefacoMixer
|
||||
#include "Befaco/src/plugin.hpp"
|
||||
#undef modelADSR
|
||||
#undef modelMixer
|
||||
|
||||
// Bidoo
|
||||
#include "Bidoo/src/plugin.hpp"
|
||||
|
@ -611,6 +615,7 @@ static void initStatic__Befaco()
|
|||
if (spl.ok())
|
||||
{
|
||||
#define modelADSR modelBefacoADSR
|
||||
#define modelMixer modelBefacoMixer
|
||||
p->addModel(modelEvenVCO);
|
||||
p->addModel(modelRampage);
|
||||
p->addModel(modelABC);
|
||||
|
@ -629,6 +634,7 @@ static void initStatic__Befaco()
|
|||
p->addModel(modelMuxlicer);
|
||||
p->addModel(modelMex);
|
||||
#undef modelADSR
|
||||
#undef modelMixer
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -950,6 +956,7 @@ static void initStatic__Fundamental()
|
|||
p->addModel(modelLFO2);
|
||||
p->addModel(modelDelay);
|
||||
p->addModel(modelADSR);
|
||||
p->addModel(modelMixer);
|
||||
p->addModel(modelVCMixer);
|
||||
p->addModel(model_8vert);
|
||||
p->addModel(modelUnity);
|
||||
|
@ -968,6 +975,17 @@ static void initStatic__Fundamental()
|
|||
p->addModel(modelMidSide);
|
||||
p->addModel(modelNoise);
|
||||
p->addModel(modelRandom);
|
||||
|
||||
// show all plugins, helping those familiar with v1 Rack modules
|
||||
if (json_t* const modules = json_object_get(spl.rootJ, "modules"))
|
||||
{
|
||||
size_t i;
|
||||
json_t* v;
|
||||
json_array_foreach(modules, i, v)
|
||||
{
|
||||
json_object_set(v, "hidden", json_false());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -28,9 +28,6 @@ LindenbergResearch 43959.0 (not opensource?)
|
|||
Geodesics 42761.0
|
||||
https://github.com/MarcBoule/Geodesics
|
||||
|
||||
mscHack 42316.0
|
||||
https://github.com/mschack/VCV-Rack-Plugins/
|
||||
|
||||
BaconMusic 42095.0
|
||||
https://github.com/baconpaul/BaconPlugs/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue