Browse Source

update release notes

pull/1639/head
bsp2 6 years ago
parent
commit
08c9819a59
6 changed files with 285 additions and 393 deletions
  1. +3
    -2
      README.md
  2. +0
    -132
      plugins/community/repos/bsp/src/curve_test.tks
  3. +4
    -0
      vst2_bin/CHANGELOG_VST.txt
  4. +4
    -3
      vst2_bin/README_vst2.txt
  5. +172
    -158
      vst2_bin/log.txt
  6. +102
    -98
      vst2_bin/settings.json

+ 3
- 2
README.md View File

@@ -32,7 +32,7 @@ Tested in
# Downloads # Downloads
The current release can be found in the [vst2_bin/](vst2_bin/) folder. The current release can be found in the [vst2_bin/](vst2_bin/) folder.


Here's a snapshot of it: [veeseevstrack_0_6_1_win64_bin-09Sep2018.7z](https://github.com/bsp2/releases/raw/master/vsvr/veeseevstrack_0_6_1_win64_bin-09Sep2018.7z) (64bit)
Here's a snapshot of it: [veeseevstrack_0_6_1_win64_bin-10Sep2018.7z](https://github.com/bsp2/releases/raw/master/vsvr/veeseevstrack_0_6_1_win64_bin-10Sep2018.7z) (64bit)


Note: The effect plugin can used be as an instrument, too. You just have to send it MIDI events ! Note: The effect plugin can used be as an instrument, too. You just have to send it MIDI events !


@@ -60,9 +60,10 @@ Here are some demo videos of it:


# Add-on modules # Add-on modules


The binary distribution contains the following (24) dynamically loaded add-on modules:
The binary distribution contains the following (25) dynamically loaded add-on modules:
- bsp.AttenuMixer - bsp.AttenuMixer
- bsp.DownSampler - bsp.DownSampler
- bsp.Legato
- bsp.Obxd_VCF - bsp.Obxd_VCF
- bsp.RMS - bsp.RMS
- bsp.Scanner - bsp.Scanner


+ 0
- 132
plugins/community/repos/bsp/src/curve_test.tks View File

@@ -1,132 +0,0 @@

use tksdl;
use tkopengl;

int numframesrendered=0;

float shape = 0.0f;

function onDraw() {

float dt=FPS.precision;
glClearColor(0,0,0.2,1);
// glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
glClear(GL_COLOR_BUFFER_BIT);
glDisable(GL_DEPTH_TEST);

if( !(++numframesrendered&127) )
trace "FPS.real="+FPS.real;

zglInitOrtho(1, 1);
glColor3f(0.9,0.9,0.9);

float cx = -1.0f;
float stepCx = (2.0f / Viewport.width);

float x = 0.0f;
float stepX = (1.0f / Viewport.width);

float lx = 0;
float ly = 0;

glBegin(GL_LINES);
loop(Viewport.width)
{
float cy = 0.0f;
float triY = x*2;
if(triY > 1.0f)
triY = (2.0f - triY);

float expY = sin(x*PI);
expY = mathPowerf(expY, mathPowerf(1.0f - shape, 9.0f)*64 + 1.0f);

float rectY = triY;
// rectY = (triY < 0.5) ? 0.0f : 1.0f;
rectY = mathPowerf(triY * 2.0f, mathPowerf((shape - 0.75f)*4, 20) * 400.0f + 1.0f);
if(rectY > 1.0f)
rectY = 1.0f;

float t;

if(shape < 0.5f)
{
cy = expY;
}
else if( (shape >= 0.5f) && (shape < 0.75f))
{
t = (shape -0.5f) * 4.0f;
cy = expY + (triY - expY) * t;
}
else if(shape >= 0.75f)
{
t = (shape - 0.75f) * 4.0f;
cy = triY + (rectY - triY) * t;
}

// cy = triY;
// cy = expY;

glVertex2f(lx, ly);
glVertex2f(cx, cy);
lx = cx;
ly = cy;
cx += stepCx;
x += stepX;
}
glVertex2f(0.0f, 0.0f);
glVertex2f(1.0f, 0.0f);

glEnd();
}

function onMouse(int _x, int _y, int _cbs, int _nbs) {
print "x="+_x+" y="+_y+" cbs="+_cbs+" nbs="+_nbs;

shape = (_y / float(Viewport.height));
}

function onKeyboard(Key _k) {
switch(_k.pressed)
{
case VKEY_ESCAPE:
SDL.exitEventLoop();
break;
}
}

int tim_count = 0;
function onTimer() {
// trace "xxx onTimer";
// if(++tim_count > 100)
// SDL.exitEventLoop();
}

function main() {
use callbacks;

FPS.tickInterval=1000.0/60;
//FPS.limit=30;
FPS.limit=60;

SDL.eventPolling = false; // tksdl default is "true" (do not block while waiting for an SDL event)
SDL.timerInterval = 20;

// SDL.dpiAwareness = true; // no OS scaling
// SDL.dpiAwareness = false; // assume 96dpi and let OS scale window to actual DPI

// SDL.touchInput = true; // enable WM_POINTER* messages

Viewport.multisampleSamples = 4;
Viewport.multisampleBuffers = 1;
// Viewport.stencilBits = 8;
Viewport.openWindow(640, 480);
//Viewport.openScreen(640, 480, 32);
//Viewport.swapInterval(1);

trace "xxx Viewport.dpi="+Viewport.dpi;
trace "xxx entering eventloop";

SDL.eventLoop();
}

+ 4
- 0
vst2_bin/CHANGELOG_VST.txt View File

@@ -1,3 +1,7 @@
** September 10th, 2018
- add module bsp.Legato


** September 9th, 2018 ** September 9th, 2018
- ui: clamp param value to min/max range when pasting param via ctrl-e - ui: clamp param value to min/max range when pasting param via ctrl-e
- add module bsp.DownSampler - add module bsp.DownSampler


+ 4
- 3
vst2_bin/README_vst2.txt View File

@@ -1,5 +1,5 @@
VeeSeeVST Rack VST 2.4 Plugin -- September 9th, 2018
====================================================
VeeSeeVST Rack VST 2.4 Plugin -- September 10th, 2018
=====================================================


!!!------------------------------------------------------------------------------ !!!------------------------------------------------------------------------------
!!! ***** THIS IS NOT AN OFFICIAL VCV RACK RELEASE ***** !!! !!! ***** THIS IS NOT AN OFFICIAL VCV RACK RELEASE ***** !!!
@@ -33,9 +33,10 @@ Tested in
- according to users: works in Ableton Live - according to users: works in Ableton Live




The binary distribution contains the following (24) dynamically loaded add-on modules:
The binary distribution contains the following (25) dynamically loaded add-on modules:
- bsp.AttenuMixer - bsp.AttenuMixer
- bsp.DownSampler - bsp.DownSampler
- bsp.Legato
- bsp.Obxd_VCF - bsp.Obxd_VCF
- bsp.RMS - bsp.RMS
- bsp.Scanner - bsp.Scanner


+ 172
- 158
vst2_bin/log.txt View File

@@ -1,158 +1,172 @@
[0.000 info src/main.cpp:59] VeeSeeVST Rack 0.6.1
[0.000 info src/main.cpp:62] Global directory: f:\git\VeeSeeVSTRack\vst2_bin\/
[0.000 info src/main.cpp:63] Local directory: f:\git\VeeSeeVSTRack\vst2_bin\/
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin 21kHz 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin AmalgamatedHarmonics 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin Alikins 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin alto777_LFSR 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin AS 0.6.9
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin AudibleInstruments 0.6.1
[0.001 info src/plugin.cpp:694] vcvrack: Loaded static plugin Autodafe 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin BaconMusic 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin Befaco 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin Bidoo 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin Bogaudio 0.6.7
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin CastleRocktronics 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin cf 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin com-soundchasing-stochasm 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin computerscare 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin DHE-Modules 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin DrumKit 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin ErraticInstruments 0.6.1
[0.005 info src/plugin.cpp:694] vcvrack: Loaded static plugin ESeries 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin FrankBussFormula 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin FrozenWasteland 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin Fundamental 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin Geodesics 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin Gratrix 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin HetrickCV 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin huaba 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin ImpromptuModular 0.6.11
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin JE 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin JW-Modules 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin Koralfx-Modules 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin LindenbergResearch 0.6.2b
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin LOGinstruments 0.6.1
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin mental 0.6.1
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin ML_modules 0.6.1
[0.011 info src/plugin.cpp:694] vcvrack: Loaded static plugin moDllz 0.6.1
[0.011 info src/plugin.cpp:694] vcvrack: Loaded static plugin modular80 0.6.1
[0.011 info src/plugin.cpp:694] vcvrack: Loaded static plugin mscHack 0.6.1
[0.011 info src/plugin.cpp:694] vcvrack: Loaded static plugin mtsch-plugins 0.6.1
[0.012 info src/plugin.cpp:694] vcvrack: Loaded static plugin NauModular 0.6.1
[0.013 info src/plugin.cpp:694] vcvrack: Loaded static plugin Nohmad 0.6.1
[0.013 info src/plugin.cpp:694] vcvrack: Loaded static plugin Ohmer 0.6.1
[0.013 info src/plugin.cpp:694] vcvrack: Loaded static plugin PG-Instruments 0.6.1
[0.013 info src/plugin.cpp:694] vcvrack: Loaded static plugin PvC 0.6.1
[0.013 info src/plugin.cpp:694] vcvrack: Loaded static plugin Qwelk 0.6.1
[0.013 info src/plugin.cpp:694] vcvrack: Loaded static plugin RJModules 0.6.1
[0.015 info src/plugin.cpp:694] vcvrack: Loaded static plugin SerialRacker 0.6.1
[0.015 info src/plugin.cpp:694] vcvrack: Loaded static plugin SonusModular 0.6.1
[0.016 info src/plugin.cpp:694] vcvrack: Loaded static plugin Southpole 0.6.1
[0.016 info src/plugin.cpp:694] vcvrack: Loaded static plugin Southpole-parasites 0.6.1
[0.016 info src/plugin.cpp:694] vcvrack: Loaded static plugin squinkylabs-plug1 0.6.1
[0.016 info src/plugin.cpp:694] vcvrack: Loaded static plugin SubmarineFree 0.6.1
[0.016 info src/plugin.cpp:694] vcvrack: Loaded static plugin SynthKit 0.6.1
[0.017 info src/plugin.cpp:694] vcvrack: Loaded static plugin Template 0.6.1
[0.018 info src/plugin.cpp:694] vcvrack: Loaded static plugin TheXOR 0.6.1
[0.018 info src/plugin.cpp:694] vcvrack: Loaded static plugin trowaSoft 0.6.1
[0.018 info src/plugin.cpp:694] vcvrack: Loaded static plugin unless_modules 0.6.1
[0.018 info src/plugin.cpp:694] vcvrack: Loaded static plugin Valley 0.6.1
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/21kHz/plugin.dll.fx does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Alikins/plugin.dll.fx does not exist
[0.019 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/alto777_LFSR/plugin.dll.fx does not exist
[0.031 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/AmalgamatedHarmonics/plugin.dll.fx does not exist
[0.031 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/AS/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/AudibleInstruments/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Autodafe/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/BaconMusic/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Befaco/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Bidoo/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Bogaudio/plugin.dll.fx does not exist
[0.032 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/BOKONTEPByteBeatMachine/plugin.dll.fx does not exist
[0.032 info src/plugin.cpp:157] Loaded plugin bsp 0.6.1 from f:\git\VeeSeeVSTRack\vst2_bin\/plugins/bsp/plugin.dll.fx
[0.033 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/CastleRocktronics/plugin.dll.fx does not exist
[0.033 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/cf/plugin.dll.fx does not exist
[0.033 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/com-soundchasing-stochasm/plugin.dll.fx does not exist
[0.033 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/computerscare/plugin.dll.fx does not exist
[0.033 info src/plugin.cpp:157] Loaded plugin dBiz 0.6.1 from f:\git\VeeSeeVSTRack\vst2_bin\/plugins/dBiz/plugin.dll.fx
[0.033 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/DHE-Modules/plugin.dll.fx does not exist
[0.033 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/DrumKit/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ErraticInstruments/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ESeries/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/FrankBussFormula/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/FrozenWasteland/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Fundamental/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Geodesics/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Gratrix/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/HetrickCV/plugin.dll.fx does not exist
[0.034 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/huaba/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ImpromptuModular/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/JE/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/JW-Modules/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Koralfx-Modules/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/LindenbergResearch/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/LOGinstruments/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/mental/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ML_modules/plugin.dll.fx does not exist
[0.035 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/moDllz/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/modular80/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/mscHack/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/mtsch-plugins/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/NauModular/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Nohmad/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Ohmer/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/PG-Instruments/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/PvC/plugin.dll.fx does not exist
[0.036 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Qwelk/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/RJModules/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SerialRacker/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SonusModular/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Southpole/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Southpole-parasites/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/squinkylabs-plug1/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SubmarineFree/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SynthKit/plugin.dll.fx does not exist
[0.037 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Template/plugin.dll.fx does not exist
[0.039 info src/plugin.cpp:157] Loaded plugin Template_shared 0.6.1 from f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Template_shared/plugin.dll.fx
[0.039 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/TheXOR/plugin.dll.fx does not exist
[0.039 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/trowaSoft/plugin.dll.fx does not exist
[0.039 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/unless_modules/plugin.dll.fx does not exist
[0.039 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Valley/plugin.dll.fx does not exist
[0.041 info src/settings.cpp:436] Loading settings f:\git\VeeSeeVSTRack\vst2_bin\/settings.json
[0.064 info src/window.cpp:673] Loaded font f:\git\VeeSeeVSTRack\vst2_bin\/res/fonts/DejaVuSans.ttf
[0.065 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_146097_cc.svg
[0.065 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_31859_cc.svg
[0.065 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1343816_cc.svg
[0.066 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1343811_cc.svg
[0.066 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1084369_cc.svg
[0.066 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1745061_cc.svg
[0.066 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1240789_cc.svg
[0.067 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_305536_cc.svg
[0.067 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_468341_cc.svg
[0.067 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/idle_mode_icon_cc.svg
[0.067 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/settings_icon_cc.svg
[0.067 info src/settings.cpp:436] Loading settings f:\git\VeeSeeVSTRack\vst2_bin\/settings.json
[0.069 info src/app/RackWidget.cpp:208] Loading patch from string
[0.071 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/Core/AudioInterface.svg
[0.071 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/ScrewSilver.svg
[0.071 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/PJ301M.svg
[0.071 info src/window.cpp:673] Loaded font f:\git\VeeSeeVSTRack\vst2_bin\/res/fonts/ShareTechMono-Regular.ttf
[0.074 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/Core/MIDIToCVInterface.svg
[0.076 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Fundamental/res/VCA-1.svg
[0.076 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/CKSS_0.svg
[0.077 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/CKSS_1.svg
[0.087 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Fundamental/res/Scope.svg
[0.087 info src/window.cpp:673] Loaded font f:\git\VeeSeeVSTRack\vst2_bin\plugins/Fundamental/res/fonts/Sudo.ttf
[0.087 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/RoundBlackKnob.svg
[0.088 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/CKD6_0.svg
[0.089 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/CKD6_1.svg
[0.091 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/VCAmp.svg
[0.091 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/port.svg
[0.096 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/HetrickCV/res/Exponent.svg
[0.096 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\v[19.719 info src/app/RackWidget.cpp:170] Saving patch to string
rc/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/Trimpot.svg
[0.096 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/HetrickCV/res/CKSS_rot_0.svg
[0.097 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/HetrickCV/res/CKSS_rot_1.svg
[17.857 info src/app/RackWidget.cpp:170] Saving patch to string
[18.849 info src/app/RackWidget.cpp:170] Saving patch to string
[0.000 info src/main.cpp:59] VeeSeeVST Rack 0.6.1
[0.000 info src/main.cpp:62] Global directory: f:\git\VeeSeeVSTRack\vst2_bin\/
[0.000 info src/main.cpp:63] Local directory: f:\git\VeeSeeVSTRack\vst2_bin\/
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin 21kHz 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin AmalgamatedHarmonics 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin Alikins 0.6.1
[0.000 info src/plugin.cpp:694] vcvrack: Loaded static plugin alto777_LFSR 0.6.1
[0.001 info src/plugin.cpp:694] vcvrack: Loaded static plugin AS 0.6.9
[0.001 info src/plugin.cpp:694] vcvrack: Loaded static plugin AudibleInstruments 0.6.1
[0.001 info src/plugin.cpp:694] vcvrack: Loaded static plugin Autodafe 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin BaconMusic 0.6.1
[0.002 info src/plugin.cpp:694] vcvrack: Loaded static plugin Befaco 0.6.1
[0.003 info src/plugin.cpp:694] vcvrack: Loaded static plugin Bidoo 0.6.1
[0.003 info src/plugin.cpp:694] vcvrack: Loaded static plugin Bogaudio 0.6.7
[0.003 info src/plugin.cpp:694] vcvrack: Loaded static plugin CastleRocktronics 0.6.1
[0.003 info src/plugin.cpp:694] vcvrack: Loaded static plugin cf 0.6.1
[0.003 info src/plugin.cpp:694] vcvrack: Loaded static plugin com-soundchasing-stochasm 0.6.1
[0.003 info src/plugin.cpp:694] vcvrack: Loaded static plugin computerscare 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin DHE-Modules 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin DrumKit 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin ErraticInstruments 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin ESeries 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin FrankBussFormula 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin FrozenWasteland 0.6.1
[0.004 info src/plugin.cpp:694] vcvrack: Loaded static plugin Fundamental 0.6.1
[0.005 info src/plugin.cpp:694] vcvrack: Loaded static plugin Geodesics 0.6.1
[0.005 info src/plugin.cpp:694] vcvrack: Loaded static plugin Gratrix 0.6.1
[0.005 info src/plugin.cpp:694] vcvrack: Loaded static plugin HetrickCV 0.6.1
[0.005 info src/plugin.cpp:694] vcvrack: Loaded static plugin huaba 0.6.1
[0.005 info src/plugin.cpp:694] vcvrack: Loaded static plugin ImpromptuModular 0.6.11
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin JE 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin JW-Modules 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin Koralfx-Modules 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin LindenbergResearch 0.6.2b
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin LOGinstruments 0.6.1
[0.006 info src/plugin.cpp:694] vcvrack: Loaded static plugin mental 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin ML_modules 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin moDllz 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin modular80 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin mscHack 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin mtsch-plugins 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin NauModular 0.6.1
[0.007 info src/plugin.cpp:694] vcvrack: Loaded static plugin Nohmad 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin Ohmer 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin PG-Instruments 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin PvC 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin Qwelk 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin RJModules 0.6.1
[0.008 info src/plugin.cpp:694] vcvrack: Loaded static plugin SerialRacker 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin SonusModular 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin Southpole 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin Southpole-parasites 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin squinkylabs-plug1 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin SubmarineFree 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin SynthKit 0.6.1
[0.009 info src/plugin.cpp:694] vcvrack: Loaded static plugin Template 0.6.1
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin TheXOR 0.6.1
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin trowaSoft 0.6.1
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin unless_modules 0.6.1
[0.010 info src/plugin.cpp:694] vcvrack: Loaded static plugin Valley 0.6.1
[0.010 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/21kHz/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Alikins/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/alto777_LFSR/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/AmalgamatedHarmonics/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/AS/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/AudibleInstruments/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Autodafe/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/BaconMusic/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Befaco/plugin.dll.instr does not exist
[0.011 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Bidoo/plugin.dll.instr does not exist
[0.012 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Bogaudio/plugin.dll.instr does not exist
[0.012 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/BOKONTEPByteBeatMachine/plugin.dll.instr does not exist
[0.013 info src/plugin.cpp:157] Loaded plugin bsp 0.6.1 from f:\git\VeeSeeVSTRack\vst2_bin\/plugins/bsp/plugin.dll.instr
[0.013 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/CastleRocktronics/plugin.dll.instr does not exist
[0.013 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/cf/plugin.dll.instr does not exist
[0.013 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/com-soundchasing-stochasm/plugin.dll.instr does not exist
[0.013 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/computerscare/plugin.dll.instr does not exist
[0.014 info src/plugin.cpp:157] Loaded plugin dBiz 0.6.1 from f:\git\VeeSeeVSTRack\vst2_bin\/plugins/dBiz/plugin.dll.instr
[0.014 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/DHE-Modules/plugin.dll.instr does not exist
[0.014 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/DrumKit/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ErraticInstruments/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ESeries/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/FrankBussFormula/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/FrozenWasteland/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Fundamental/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Geodesics/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Gratrix/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/HetrickCV/plugin.dll.instr does not exist
[0.015 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/huaba/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ImpromptuModular/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/JE/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/JW-Modules/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Koralfx-Modules/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/LindenbergResearch/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/LOGinstruments/plugin.dll.instr does not exist
[0.016 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/mental/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/ML_modules/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/moDllz/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/modular80/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/mscHack/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/mtsch-plugins/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/NauModular/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Nohmad/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Ohmer/plugin.dll.instr does not exist
[0.017 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/PG-Instruments/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/PvC/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Qwelk/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/RJModules/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SerialRacker/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SonusModular/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Southpole/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Southpole-parasites/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/squinkylabs-plug1/plugin.dll.instr does not exist
[0.018 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SubmarineFree/plugin.dll.instr does not exist
[0.019 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/SynthKit/plugin.dll.instr does not exist
[0.019 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Template/plugin.dll.instr does not exist
[0.020 info src/plugin.cpp:157] Loaded plugin Template_shared 0.6.1 from f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Template_shared/plugin.dll.instr
[0.020 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/TheXOR/plugin.dll.instr does not exist
[0.020 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/trowaSoft/plugin.dll.instr does not exist
[0.020 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/unless_modules/plugin.dll.instr does not exist
[0.020 warn src/plugin.cpp:86] Plugin file f:\git\VeeSeeVSTRack\vst2_bin\/plugins/Valley/plugin.dll.instr does not exist
[0.020 info src/settings.cpp:436] Loading settings f:\git\VeeSeeVSTRack\vst2_bin\/settings.json
[0.034 info src/window.cpp:673] Loaded font f:\git\VeeSeeVSTRack\vst2_bin\/res/fonts/DejaVuSans.ttf
[0.035 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_146097_cc.svg
[0.035 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_31859_cc.svg
[0.036 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1343816_cc.svg
[0.036 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1343811_cc.svg
[0.036 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1084369_cc.svg
[0.036 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1745061_cc.svg
[0.037 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_1240789_cc.svg
[0.037 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_305536_cc.svg
[0.037 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/noun_468341_cc.svg
[0.037 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/idle_mode_icon_cc.svg
[0.038 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/icons/settings_icon_cc.svg
[0.038 info src/settings.cpp:436] Loading settings f:\git\VeeSeeVSTRack\vst2_bin\/settings.json
[0.040 info src/app/RackWidget.cpp:208] Loading patch from string
[0.041 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/Core/AudioInterface.svg
[0.041 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/ScrewSilver.svg
[0.042 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/PJ301M.svg
[0.042 info src/window.cpp:673] Loaded font f:\git\VeeSeeVSTRack\vst2_bin\/res/fonts/ShareTechMono-Regular.ttf
[0.043 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/Core/MIDIToCVInterface.svg
[0.045 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/XCO.svg
[0.046 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/knob_68px.svg
[0.046 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/knob_16px.svg
[0.046 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/button_9px_0.svg
[0.047 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/button_9px_1.svg
[0.047 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/knob_38px.svg
[0.047 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/slider_switch_2_14px_0.svg
[0.047 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/slider_switch_2_14px_1.svg
[0.048 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Bogaudio/res/port.svg
[0.049 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Fundamental/res/VCA.svg
[0.049 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/RoundLargeBlackKnob.svg
[0.050 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/AS/res/ADSR.svg
[0.050 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/AS/res/as-hexscrew.svg
[0.051 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/AS/res/as-SlidePot.svg
[0.051 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/AS/res/as-SlidePotHandle.svg
[0.051 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/AS/res/as-PJ301M.svg
[0.053 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/21kHz/res/Panels/D_Inf.svg
[0.053 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/21kHz/res/Components/kHzScrew.svg
[0.053 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/21kHz/res/Components/kHzKnobSmall.svg
[0.053 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/21kHz/res/Components/kHzButton_0.svg
[0.054 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/21kHz/res/Components/kHzButton_1.svg
[0.054 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/21kHz/res/Components/kHzPort.svg
[0.055 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Autodafe/res/Multiple18.svg
[0.055 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/PJ3410.svg
[0.059 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Southpole/res/Abr.svg
[0.060 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Southpole/res/sp-Port20.svg
[0.060 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Southpole/res/sp-switchv_0.svg
[0.060 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Southpole/res/sp-switchv_1.svg
[0.061 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\plugins/Fundamental/res/VCF.svg
[0.062 info src/window.cpp:728] Loaded SVG f:\git\VeeSeeVSTRack\vst2_bin\/res/ComponentLibrary/RoundHugeBlackKnob.svg
[19.974 info src/app/RackWidget.cpp:170] Saving patch to string

+ 102
- 98
vst2_bin/settings.json View File

@@ -8,7 +8,7 @@
0.0, 0.0,
0.0 0.0
], ],
"wireOpacity": 50.0,
"wireOpacity": 51.1999969,
"wireTension": 0.939999998, "wireTension": 0.939999998,
"zoom": 1.0, "zoom": 1.0,
"refreshRate": 30, "refreshRate": 30,
@@ -41,6 +41,10 @@
"plugin": "AS", "plugin": "AS",
"model": "ADSR" "model": "ADSR"
}, },
{
"plugin": "21kHz",
"model": "kHzD_Inf"
},
{ {
"plugin": "Alikins", "plugin": "Alikins",
"model": "SpecificValue" "model": "SpecificValue"
@@ -50,212 +54,212 @@
"model": "Notes" "model": "Notes"
}, },
{ {
"plugin": "21kHz",
"model": "kHzD_Inf"
"plugin": "AudibleInstruments",
"model": "Braids"
}, },
{ {
"plugin": "PG-Instruments",
"model": "PGPanner"
"plugin": "AudibleInstruments",
"model": "Elements"
}, },
{ {
"plugin": "PG-Instruments",
"model": "PGVCF"
"plugin": "Autodafe",
"model": "Multiple 1x8"
}, },
{ {
"plugin": "Southpole",
"model": "Abr"
"plugin": "AudibleInstruments",
"model": "Clouds"
}, },
{ {
"plugin": "huaba",
"model": "EQ3"
"plugin": "Bidoo",
"model": "rabBIT"
}, },
{ {
"plugin": "JE",
"model": "RingModulator"
"plugin": "Befaco",
"model": "Mixer"
}, },
{ {
"plugin": "HetrickCV",
"model": "Exponent"
"plugin": "Bogaudio",
"model": "Bogaudio-Additator"
}, },
{ {
"plugin": "Fundamental",
"model": "VCMixer"
"plugin": "Bogaudio",
"model": "Bogaudio-XCO"
}, },
{ {
"plugin": "Fundamental",
"model": "VCA-1"
"plugin": "Bogaudio",
"model": "Bogaudio-XFade"
}, },
{ {
"plugin": "Fundamental",
"model": "VCO"
"plugin": "Befaco",
"model": "SlewLimiter"
}, },
{ {
"plugin": "Fundamental",
"model": "Scope"
"plugin": "Bidoo",
"model": "ÎŁ"
}, },
{ {
"plugin": "Fundamental",
"model": "VCA"
"plugin": "Bidoo",
"model": "lIMbO"
}, },
{ {
"plugin": "Fundamental",
"model": "VCF"
"plugin": "Bogaudio",
"model": "Bogaudio-Noise"
}, },
{ {
"plugin": "Fundamental",
"model": "LFO2"
"plugin": "DHE-Modules",
"model": "Cubic"
}, },
{ {
"plugin": "Fundamental",
"model": "VCO2"
"plugin": "Bogaudio",
"model": "Bogaudio-SampleHold"
}, },
{ {
"plugin": "Fundamental",
"model": "LFO"
"plugin": "Bogaudio",
"model": "Bogaudio-VCAmp"
}, },
{ {
"plugin": "ErraticInstruments",
"model": "MPEToCV"
"plugin": "Bogaudio",
"model": "Bogaudio-Mult"
}, },
{ {
"plugin": "FrankBussFormula",
"model": "FrankBussFormula"
"plugin": "Bogaudio",
"model": "Bogaudio-Switch"
}, },
{ {
"plugin": "LindenbergResearch",
"model": "VCF"
"plugin": "Fundamental",
"model": "VCA-1"
}, },
{ {
"plugin": "LindenbergResearch",
"model": "MS20 VCF"
"plugin": "Fundamental",
"model": "VCO"
}, },
{ {
"plugin": "LindenbergResearch",
"model": "VCO"
"plugin": "Fundamental",
"model": "VCO2"
}, },
{ {
"plugin": "LindenbergResearch",
"model": "Westcoast VCS"
"plugin": "Fundamental",
"model": "VCMixer"
}, },
{ {
"plugin": "ML_modules",
"model": "VoltMeter"
"plugin": "FrankBussFormula",
"model": "FrankBussFormula"
}, },
{ {
"plugin": "mscHack",
"model": "Maude221"
"plugin": "Fundamental",
"model": "Scope"
}, },
{ {
"plugin": "AudibleInstruments",
"model": "Braids"
"plugin": "Fundamental",
"model": "LFO"
}, },
{ {
"plugin": "AudibleInstruments",
"model": "Clouds"
"plugin": "Fundamental",
"model": "VCF"
}, },
{ {
"plugin": "AudibleInstruments",
"model": "Elements"
"plugin": "Fundamental",
"model": "VCA"
}, },
{ {
"plugin": "Autodafe",
"model": "Multiple 1x8"
"plugin": "ErraticInstruments",
"model": "MPEToCV"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-Switch"
"plugin": "Fundamental",
"model": "LFO2"
}, },
{ {
"plugin": "DHE-Modules",
"model": "Cubic"
"plugin": "huaba",
"model": "EQ3"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-VCAmp"
"plugin": "JE",
"model": "RingModulator"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-Mult"
"plugin": "HetrickCV",
"model": "Exponent"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-Noise"
"plugin": "ML_modules",
"model": "VoltMeter"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-XFade"
"plugin": "mscHack",
"model": "Maude221"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-SampleHold"
"plugin": "LindenbergResearch",
"model": "MS20 VCF"
}, },
{ {
"plugin": "Bidoo",
"model": "lIMbO"
"plugin": "LindenbergResearch",
"model": "VCO"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-Additator"
"plugin": "LindenbergResearch",
"model": "Westcoast VCS"
}, },
{ {
"plugin": "Befaco",
"model": "SlewLimiter"
"plugin": "LindenbergResearch",
"model": "VCF"
}, },
{ {
"plugin": "Befaco",
"model": "Mixer"
"plugin": "Southpole",
"model": "Abr"
}, },
{ {
"plugin": "Bidoo",
"model": "ÎŁ"
"plugin": "PG-Instruments",
"model": "PGVCF"
}, },
{ {
"plugin": "Bidoo",
"model": "rabBIT"
"plugin": "PG-Instruments",
"model": "PGPanner"
}, },
{ {
"plugin": "Bogaudio",
"model": "Bogaudio-XCO"
"plugin": "bsp",
"model": "RMS"
}, },
{ {
"plugin": "bsp", "plugin": "bsp",
"model": "DownSampler"
"model": "Obxd_VCF"
}, },
{ {
"plugin": "bsp", "plugin": "bsp",
"model": "Sway"
"model": "Legato"
}, },
{ {
"plugin": "bsp", "plugin": "bsp",
"model": "TunedDelayLine"
"model": "Sway"
}, },
{ {
"plugin": "bsp", "plugin": "bsp",
"model": "Obxd_VCF"
"model": "TunedDelayLine"
}, },
{ {
"plugin": "Valley",
"model": "Dexter"
"plugin": "Template_shared",
"model": "MyModule"
}, },
{ {
"plugin": "bsp", "plugin": "bsp",
"model": "RMS"
"model": "Scanner"
}, },
{ {
"plugin": "bsp",
"model": "AttenuMixer"
"plugin": "Valley",
"model": "Plateau"
}, },
{ {
"plugin": "Template_shared",
"model": "MyModule"
"plugin": "bsp",
"model": "AttenuMixer"
}, },
{ {
"plugin": "Valley", "plugin": "Valley",
"model": "Plateau"
"model": "Dexter"
}, },
{ {
"plugin": "bsp", "plugin": "bsp",
"model": "Scanner"
"model": "DownSampler"
} }
] ]
}, },


Loading…
Cancel
Save