Browse Source

Rename "Community Edition" to "Free". Remove edition name from TipWindow and Window title.

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
7ff515f8fe
6 changed files with 7 additions and 7 deletions
  1. +1
    -1
      Distribution.xml
  2. +1
    -1
      LICENSE.md
  3. +1
    -1
      installer.nsi
  4. +1
    -1
      src/app/TipWindow.cpp
  5. +2
    -2
      src/common.cpp
  6. +1
    -1
      src/window/Window.cpp

+ 1
- 1
Distribution.xml View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<installer-gui-script minSpecVersion="1">
<title>VCV Rack Community 2</title>
<title>VCV Rack 2</title>

<allowed-os-versions>
<os-version min="10.9"/>


+ 1
- 1
LICENSE.md View File

@@ -1,6 +1,6 @@
# 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.
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
- 1
installer.nsi View File

@@ -1,6 +1,6 @@
!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 RACK_DIR "Rack${VERSION_MAJOR}"
!define INSTALL_REG "Software\VCV\Rack${VERSION_MAJOR}"


+ 1
- 1
src/app/TipWindow.cpp View File

@@ -74,7 +74,7 @@ struct TipWindow : widget::OpaqueWidget {
// header->box.size.x = box.size.x - 2*margin;
header->box.size.y = 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);

label = new ui::Label;


+ 2
- 2
src/common.cpp View File

@@ -16,8 +16,8 @@ namespace 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 = TOSTRING(_APP_VERSION);
#if defined ARCH_WIN


+ 1
- 1
src/window/Window.cpp View File

@@ -430,7 +430,7 @@ void Window::step() {
gamepad::step();

// Set window title
std::string windowTitle = APP_NAME + " " + APP_EDITION_NAME + " " + APP_VERSION;
std::string windowTitle = APP_NAME + " " + APP_VERSION;
if (APP->patch->path != "") {
windowTitle += " - ";
if (!APP->history->isSaved())


Loading…
Cancel
Save