Browse Source

Update changelog. Bump version.

tags/v2.3.0
Andrew Belt 1 year ago
parent
commit
f1576e2bb8
3 changed files with 19 additions and 2 deletions
  1. +17
    -0
      CHANGELOG.md
  2. +1
    -1
      Core.json
  3. +1
    -1
      Makefile

+ 17
- 0
CHANGELOG.md View File

@@ -2,6 +2,23 @@

In this document, Ctrl means Cmd on Mac.

### 2.3.0 (2023-03-08)
- Add "View > Themes" menu with new UI themes: light and high-contrast dark.
- Fix file permissions resulting in error when loading certain patches.
- Don't select modules on click when module positions are locked.
- Fix small memory leak when pasting modules or selections.
- Fix incorrect panel scale when moving window between screens with different scale.
- Rack Pro
- Don't force MIDI output message channel to 1 in VST3 adapter. Offer all 16 channels.
- Fix aftertouch and polyphonic pressure on all MIDI channels in VST3 and CLAP adapters.
- API
- Make `ParamQuantity::set/getValue()` set/get the Param's target value of the Engine's per-sample smoothing algorithm instead of the Param's immediate value. Add `ParamQuantity::set/getImmediateValue()`. Deprecate `ParamQuantity::set/getSmoothValue()`.
- Add `dsp::polyDirect()`, `dsp::polyHorner()`, and `dsp::polyEstrin()`.
- Rename `dsp::approxExp2_taylor5()` to `dsp::exp2_taylor5()` and improve polynomial coefficients.
- Add `color::lerp()`.
- Add `BooleanTrigger::processEvent()` and `SchmittTrigger::processEvent()`.
- Add `get()` helper function for `std::vector`.

### 2.2.3 (2023-01-25)
- Place module selection nearest to mouse position when pasted and nearest to the center of the rack viewport when imported.
- Allow custom menu items to be appended to port's context menu.


+ 1
- 1
Core.json View File

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


+ 1
- 1
Makefile View File

@@ -1,6 +1,6 @@
RACK_DIR ?= .
VERSION_MAJOR := 2
VERSION := 2.2.3
VERSION := 2.3.0

FLAGS += -Iinclude -Idep/include



Loading…
Cancel
Save