Browse Source

Update changelog and bump version.

tags/v2.0.5
Andrew Belt 2 years ago
parent
commit
2dc80509d2
3 changed files with 9 additions and 2 deletions
  1. +7
    -0
      CHANGELOG.md
  2. +1
    -1
      Core.json
  3. +1
    -1
      Makefile

+ 7
- 0
CHANGELOG.md View File

@@ -2,6 +2,13 @@


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


### 2.0.5 (2022-01-01)
- 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.
- Tweak framebuffer render-skipping algorithm to always render at least 1 framebuffer after the frame deadline, to prevent framebuffers from never being rendered.
- Set audio device default sample rate to 44100, and block size to 256 except DirectSound to 1024.
- Fix file dialog truncating Unicode filenames on Mac.

### 2.0.4 (2021-12-18) ### 2.0.4 (2021-12-18)
- Fix hang when initializing Audio module. - Fix hang when initializing Audio module.
- Fix hidden window after closing while minimized and reopening. - Fix hidden window after closing while minimized and reopening.


+ 1
- 1
Core.json View File

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


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




Loading…
Cancel
Save