Tweak wasm build, add persistent storage

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2023-05-21 04:39:27 +02:00
parent 9aba0e034a
commit e6a799cd4c
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
10 changed files with 150 additions and 40 deletions

View file

@ -892,8 +892,8 @@ struct AidaWidget : ModuleWidgetWithSideScrews<23> {
heightPedal,
cornerRadius,
cornerRadius,
nvgRGBA(0,0,0,1.f),
nvgRGBA(0,0,0,0.f)));
nvgRGBAf(0,0,0,1.f),
nvgRGBAf(0,0,0,0.f)));
nvgFill(args.vg);
// .rt-neural .grid
@ -916,7 +916,7 @@ struct AidaWidget : ModuleWidgetWithSideScrews<23> {
nvgFill(args.vg);
// extra
nvgStrokeColor(args.vg, nvgRGBA(150, 150, 150, 0.25f));
nvgStrokeColor(args.vg, nvgRGBA(150, 150, 150, 60));
nvgStroke(args.vg);
drawOutputJacksArea(args.vg);

View file

@ -471,10 +471,10 @@ struct AudioFileListWidget : ImGuiWidget {
selectedFile = (size_t)-1;
static constexpr const char* const supportedExtensions[] = {
#ifdef HAVE_SNDFILE
#ifdef HAVE_SNDFILE
".aif",".aifc",".aiff",".au",".bwf",".flac",".htk",".iff",".mat4",".mat5",".oga",".ogg",".opus",
".paf",".pvf",".pvf5",".sd2",".sf",".snd",".svx",".vcc",".w64",".wav",".xi",
#endif
#endif
".mp3"
};