Stop using VCV name
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
8134b2b679
commit
994ff05567
6 changed files with 14 additions and 17 deletions
|
@ -618,11 +618,7 @@ struct HelpButton : MenuButton {
|
|||
menu->cornerFlags = BND_CORNER_TOP;
|
||||
menu->box.pos = getAbsoluteOffset(math::Vec(0, box.size.y));
|
||||
|
||||
menu->addChild(createMenuItem("Tips", "", [=]() {
|
||||
APP->scene->addChild(tipWindowCreate());
|
||||
}));
|
||||
|
||||
menu->addChild(createMenuItem("VCV User manual", "F1", [=]() {
|
||||
menu->addChild(createMenuItem("Rack User manual", "F1", [=]() {
|
||||
system::openBrowser("https://vcvrack.com/manual/");
|
||||
}));
|
||||
|
||||
|
@ -634,7 +630,7 @@ struct HelpButton : MenuButton {
|
|||
|
||||
menu->addChild(createMenuLabel(APP_EDITION + " " + APP_EDITION_NAME));
|
||||
|
||||
menu->addChild(createMenuLabel("VCVRack " + APP_VERSION + " Compatible"));
|
||||
menu->addChild(createMenuLabel("Rack " + APP_VERSION + " Compatible"));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ std::string pluginManifest(const std::string& dirname) {
|
|||
if (bundlePath.empty())
|
||||
{
|
||||
if (dirname == "Core")
|
||||
return system::join(systemDir, "Core.json");
|
||||
return system::join(systemDir, "..", "..", "plugins", "Core.json");
|
||||
return system::join(systemDir, "..", "..", "plugins", dirname, "plugin.json");
|
||||
}
|
||||
return system::join(bundlePath, dirname + ".json");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue