Stop building Rack core audio and midi, setup Cardinal replacements
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
5d39ab42cb
commit
c4609cba06
7 changed files with 550 additions and 71 deletions
|
|
@ -12,48 +12,6 @@
|
|||
"changelogUrl": "https://github.com/VCVRack/Rack/blob/v2/CHANGELOG.md",
|
||||
"description": "Necessary modules built into Cardinal",
|
||||
"modules": [
|
||||
{
|
||||
"slug": "AudioInterface2",
|
||||
"name": "Audio 2",
|
||||
"description": "Sends audio and CV to/from an audio device",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#Audio",
|
||||
"tags": [
|
||||
"External"
|
||||
],
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"slug": "AudioInterface",
|
||||
"name": "Audio 8",
|
||||
"description": "Sends audio and CV to/from an audio device",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#Audio",
|
||||
"tags": [
|
||||
"External"
|
||||
],
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"slug": "AudioInterface16",
|
||||
"name": "Audio 16",
|
||||
"description": "Sends audio and CV to/from an audio device",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#Audio",
|
||||
"tags": [
|
||||
"External"
|
||||
],
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"slug": "MIDIToCVInterface",
|
||||
"name": "MIDI to CV",
|
||||
"description": "Converts MIDI from an external device to CV and gates",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#MIDI-CV",
|
||||
"tags": [
|
||||
"External",
|
||||
"MIDI",
|
||||
"Polyphonic"
|
||||
],
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"slug": "MIDICCToCVInterface",
|
||||
"name": "MIDI CC to CV",
|
||||
|
|
@ -84,18 +42,6 @@
|
|||
"MIDI"
|
||||
]
|
||||
},
|
||||
{
|
||||
"slug": "CV-MIDI",
|
||||
"name": "CV to MIDI",
|
||||
"description": "Converts CV to MIDI and sends to an external device",
|
||||
"manualUrl": "https://vcvrack.com/manual/Core#CV-MIDI",
|
||||
"tags": [
|
||||
"External",
|
||||
"MIDI",
|
||||
"Polyphonic"
|
||||
],
|
||||
"hidden": true
|
||||
},
|
||||
{
|
||||
"slug": "CV-CC",
|
||||
"name": "CV to MIDI CC",
|
||||
|
|
|
|||
|
|
@ -567,14 +567,9 @@ std::string pluginPath(const std::string& dirname);
|
|||
|
||||
// core plugins
|
||||
namespace core {
|
||||
extern Model* modelAudio2;
|
||||
extern Model* modelAudio8;
|
||||
extern Model* modelAudio16;
|
||||
extern Model* modelMIDI_CV;
|
||||
extern Model* modelMIDICC_CV;
|
||||
extern Model* modelMIDI_Gate;
|
||||
extern Model* modelMIDIMap;
|
||||
extern Model* modelCV_MIDI;
|
||||
extern Model* modelCV_MIDICC;
|
||||
extern Model* modelGate_MIDI;
|
||||
extern Model* modelBlank;
|
||||
|
|
@ -670,14 +665,9 @@ static void initStatic__Core()
|
|||
const StaticPluginLoader spl(p, "Core");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(rack::core::modelAudio2);
|
||||
p->addModel(rack::core::modelAudio8);
|
||||
p->addModel(rack::core::modelAudio16);
|
||||
p->addModel(rack::core::modelMIDI_CV);
|
||||
p->addModel(rack::core::modelMIDICC_CV);
|
||||
p->addModel(rack::core::modelMIDI_Gate);
|
||||
p->addModel(rack::core::modelMIDIMap);
|
||||
p->addModel(rack::core::modelCV_MIDI);
|
||||
p->addModel(rack::core::modelCV_MIDICC);
|
||||
p->addModel(rack::core::modelGate_MIDI);
|
||||
p->addModel(rack::core::modelBlank);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue