Browse Source

Bump version. Update changelog.

tags/v2.0.1
Andrew Belt 2 years ago
parent
commit
888fd661ee
3 changed files with 8 additions and 3 deletions
  1. +6
    -1
      CHANGELOG.md
  2. +1
    -1
      Core.json
  3. +1
    -1
      Makefile

+ 6
- 1
CHANGELOG.md View File

@@ -2,7 +2,11 @@


In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac. In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac.


### 2.0.0 (in development)
### 2.0.1 (2021-12-02)
- Fix network connection timeout.
- Flush log file when logging to avoid truncated logs.

### 2.0.0 (2021-11-30)
- Redesign Module Browser with compact layout, adjustable zoom levels, sorting options, intelligent searching, and multiple tag selection. - Redesign Module Browser with compact layout, adjustable zoom levels, sorting options, intelligent searching, and multiple tag selection.
- Redesign component graphics and Core panels by [Pyer](https://www.pyer.be/). - Redesign component graphics and Core panels by [Pyer](https://www.pyer.be/).
- Add port tooltips with name, voltage, and list of connected ports. - Add port tooltips with name, voltage, and list of connected ports.
@@ -107,6 +111,7 @@ In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac.
- Add on/off threshold values to `dsp::SchmittTrigger`. - Add on/off threshold values to `dsp::SchmittTrigger`.
- Add `dsp::convert()` template functions for converting audio between normalized floats and integers. - Add `dsp::convert()` template functions for converting audio between normalized floats and integers.
- Add `bool app::SvgSwitch::latch` setting for latching button switches. - Add `bool app::SvgSwitch::latch` setting for latching button switches.
- Dispatch `Module::SampleRateChange` event when `Module` is added to engine.


### 1.1.6 (2019-11-04) ### 1.1.6 (2019-11-04)
- Add ability for plugins to use LuaJIT on Mac. - Add ability for plugins to use LuaJIT on Mac.


+ 1
- 1
Core.json View File

@@ -1,7 +1,7 @@
{ {
"slug": "Core", "slug": "Core",
"name": "VCV Core", "name": "VCV Core",
"version": "2.0.0",
"version": "2.0.1",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"author": "VCV", "author": "VCV",
"brand": "VCV", "brand": "VCV",


+ 1
- 1
Makefile View File

@@ -1,7 +1,7 @@
RACK_DIR ?= . RACK_DIR ?= .
VERSION_MAJOR := 2 VERSION_MAJOR := 2
# VERSION := 2.git.$(shell git rev-parse --short HEAD) # VERSION := 2.git.$(shell git rev-parse --short HEAD)
VERSION := 2.0.0
VERSION := 2.0.1


FLAGS += -Iinclude -Idep/include FLAGS += -Iinclude -Idep/include




Loading…
Cancel
Save