Add VT_-_Jupiter_Ascent.vcv demo patch, show in file menu

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-06-29 15:35:16 +01:00
parent dd5344d2b8
commit 0397948a41
4 changed files with 694 additions and 9 deletions

View file

@ -78,6 +78,15 @@ std::string plugin(plugin::Plugin* plugin, std::string filename) {
return system::join(plugin->path, filename);
}
// path to demo patch files
std::string patchesPath() {
// no bundlePath set, assume local source build
if (bundlePath.empty())
return system::join(systemDir, "..", "..", "patches");
// bundlePath is present, use resources from bundle
return system::join(systemDir, "patches");
}
// path to plugin manifest
std::string pluginManifest(const std::string& dirname) {
// no bundlePath set, assume local source build