@@ -1,6 +1,6 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||
<installer-gui-script minSpecVersion="1"> | <installer-gui-script minSpecVersion="1"> | ||||
<title>VCV Rack Community 2</title> | |||||
<title>VCV Rack 2</title> | |||||
<allowed-os-versions> | <allowed-os-versions> | ||||
<os-version min="10.9"/> | <os-version min="10.9"/> | ||||
@@ -1,6 +1,6 @@ | |||||
# VCV Rack licenses | # VCV Rack licenses | ||||
VCV Rack Community Edition **source code and binaries** are copyright © 2016-2021 VCV. | |||||
VCV Rack Free **source code and binaries** are copyright © 2016-2021 VCV. | |||||
This program is free software: you can redistribute it and/or modify it under the terms of the [GNU General Public License](https://www.gnu.org/licenses/gpl-3.0.en.html) as published by the [Free Software Foundation](https://www.fsf.org/), either version 3 of the License, or (at your option) any later version. | This program is free software: you can redistribute it and/or modify it under the terms of the [GNU General Public License](https://www.gnu.org/licenses/gpl-3.0.en.html) as published by the [Free Software Foundation](https://www.fsf.org/), either version 3 of the License, or (at your option) any later version. | ||||
In addition, you are granted the "VCV Rack Non-Commercial Plugin License Exception", allowed under section 7 of GPLv3, and a commercial licensing option. | In addition, you are granted the "VCV Rack Non-Commercial Plugin License Exception", allowed under section 7 of GPLv3, and a commercial licensing option. | ||||
@@ -1,6 +1,6 @@ | |||||
!include "MUI2.nsh" | !include "MUI2.nsh" | ||||
!define NAME_FULL "VCV Rack Community Edition ${VERSION}" | |||||
!define NAME_FULL "VCV Rack Free ${VERSION}" | |||||
!define NAME "VCV Rack ${VERSION_MAJOR}" | !define NAME "VCV Rack ${VERSION_MAJOR}" | ||||
!define RACK_DIR "Rack${VERSION_MAJOR}" | !define RACK_DIR "Rack${VERSION_MAJOR}" | ||||
!define INSTALL_REG "Software\VCV\Rack${VERSION_MAJOR}" | !define INSTALL_REG "Software\VCV\Rack${VERSION_MAJOR}" | ||||
@@ -74,7 +74,7 @@ struct TipWindow : widget::OpaqueWidget { | |||||
// header->box.size.x = box.size.x - 2*margin; | // header->box.size.x = box.size.x - 2*margin; | ||||
header->box.size.y = 20; | header->box.size.y = 20; | ||||
header->fontSize = 20; | header->fontSize = 20; | ||||
header->text = "Welcome to " + APP_NAME + " " + APP_EDITION_NAME + " " + APP_VERSION; | |||||
header->text = "Welcome to " + APP_NAME + " " + APP_VERSION; | |||||
layout->addChild(header); | layout->addChild(header); | ||||
label = new ui::Label; | label = new ui::Label; | ||||
@@ -16,8 +16,8 @@ namespace rack { | |||||
const std::string APP_NAME = "VCV Rack"; | const std::string APP_NAME = "VCV Rack"; | ||||
const std::string APP_EDITION = "CE"; | |||||
const std::string APP_EDITION_NAME = "Community Edition"; | |||||
const std::string APP_EDITION = "Free"; | |||||
const std::string APP_EDITION_NAME = "Free"; | |||||
const std::string APP_VERSION_MAJOR = "2"; | const std::string APP_VERSION_MAJOR = "2"; | ||||
const std::string APP_VERSION = TOSTRING(_APP_VERSION); | const std::string APP_VERSION = TOSTRING(_APP_VERSION); | ||||
#if defined ARCH_WIN | #if defined ARCH_WIN | ||||
@@ -430,7 +430,7 @@ void Window::step() { | |||||
gamepad::step(); | gamepad::step(); | ||||
// Set window title | // Set window title | ||||
std::string windowTitle = APP_NAME + " " + APP_EDITION_NAME + " " + APP_VERSION; | |||||
std::string windowTitle = APP_NAME + " " + APP_VERSION; | |||||
if (APP->patch->path != "") { | if (APP->patch->path != "") { | ||||
windowTitle += " - "; | windowTitle += " - "; | ||||
if (!APP->history->isSaved()) | if (!APP->history->isSaved()) | ||||