@@ -1,7 +1,7 @@ | |||||
{ | { | ||||
"slug": "Core", | "slug": "Core", | ||||
"name": "Core", | "name": "Core", | ||||
"version": "1.1.6", | |||||
"version": "2.0.0", | |||||
"license": "GPL-3.0-only", | "license": "GPL-3.0-only", | ||||
"author": "VCV", | "author": "VCV", | ||||
"brand": "VCV", | "brand": "VCV", | ||||
@@ -1,6 +1,6 @@ | |||||
RACK_DIR ?= . | RACK_DIR ?= . | ||||
VERSION := 1.dev.$(shell git rev-parse --short HEAD) | |||||
# VERSION := 1.1.6 | |||||
VERSION := 2.dev.$(shell git rev-parse --short HEAD) | |||||
# VERSION := 2.0.0 | |||||
FLAGS += -DVERSION=$(VERSION) | FLAGS += -DVERSION=$(VERSION) | ||||
FLAGS += -Iinclude -Idep/include | FLAGS += -Iinclude -Idep/include | ||||
@@ -38,7 +38,7 @@ PROJECT_NAME = "VCV Rack API" | |||||
# could be handy for archiving the generated documentation or if some version | # could be handy for archiving the generated documentation or if some version | ||||
# control system is used. | # control system is used. | ||||
PROJECT_NUMBER = v1 | |||||
PROJECT_NUMBER = v2 | |||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description | # Using the PROJECT_BRIEF tag one can provide an optional one line description | ||||
# for a project that appears at the top of each page and should give viewer a | # for a project that appears at the top of each page and should give viewer a | ||||
@@ -15,10 +15,10 @@ const std::string APP_VERSION = TOSTRING(VERSION); | |||||
const std::string APP_ARCH = "lin"; | const std::string APP_ARCH = "lin"; | ||||
#endif | #endif | ||||
const std::string ABI_VERSION = "1"; | |||||
const std::string ABI_VERSION = "2"; | |||||
const std::string API_URL = "https://api.vcvrack.com"; | const std::string API_URL = "https://api.vcvrack.com"; | ||||
const std::string API_VERSION = "1"; | |||||
const std::string API_VERSION = "2"; | |||||
} // namespace app | } // namespace app | ||||