Browse Source

Bump version. Update changelog.

tags/v2.0.6
Andrew Belt 2 years ago
parent
commit
0d003b9647
3 changed files with 14 additions and 2 deletions
  1. +12
    -0
      CHANGELOG.md
  2. +1
    -1
      Core.json
  3. +1
    -1
      Makefile

+ 12
- 0
CHANGELOG.md View File

@@ -2,6 +2,18 @@


In this document, Ctrl means Cmd on Mac. In this document, Ctrl means Cmd on Mac.


### 2.0.6 (2022-01-15)
- Add "Save a copy" to File menu.
- Remember CPU meter state across launches.
- Use audio device's suggested sample rate as initial sample rate.
- Add more logging of initialization/destruction of subsystems and module instantiation.
- Make MIDI input queue thread-safe, fixing probabilistic crash when processing MIDI input.
- Rack Pro
- Generate MIDI Start message in DAWs like Cubase that pre-roll transport.
- Generate MIDI Song Position Pointer messages when DAW is playing.
- Fix VST2 input/output channel labels being truncated in Ableton Live.
- Improve VST2 audio performance by avoiding unnecessary copying of buffers.

### 2.0.5 (2022-01-01) ### 2.0.5 (2022-01-01)
- Swap order of parameter name and module name in MIDI-Map. - Swap order of parameter name and module name in MIDI-Map.
- Parse all note names from c0 to b9 and accidentals like c# and cb in parameter entry field. - Parse all note names from c0 to b9 and accidentals like c# and cb in parameter entry field.


+ 1
- 1
Core.json View File

@@ -1,7 +1,7 @@
{ {
"slug": "Core", "slug": "Core",
"name": "VCV Core", "name": "VCV Core",
"version": "2.0.5",
"version": "2.0.6",
"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.5
VERSION := 2.0.6


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




Loading…
Cancel
Save