HexoDSP/CHANGELOG.md

23 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2022-07-19 04:07:14 +00:00
0.2.0 (unreleased)
==================
* Documentation: Added a guide in the hexodsp::dsp module documentation
about implementing new DSP nodes.
* Bugfix: TriSawLFO (TsLFO) node did output too high values if the `rev`
parameter was changed or modulated at runtime.
2022-07-20 03:23:20 +00:00
* Bugfix: Found a bug in cubic interpolation in the sample player and
similar bugs in the delay line (and all-pass & comb filters). Refactored
the cubic interpolation and tested it seperately now.
2022-08-13 09:33:50 +00:00
* Change: Moved DSP code over to `synfx-dsp` crate.
2022-07-23 07:54:16 +00:00
* Feature: Matrix::get\_connections() returns information about the connections
to the adjacent cells.
2022-07-24 05:34:45 +00:00
* Feature: Added the MatrixCellChain abstraction for easy creation of DSP
chains on the hexagonal Matrix.
* Feature: Added Scope DSP node and NodeConfigurator/Matrix API for retrieving
the scope handles for access to it's capture buffers.
2022-08-05 20:58:55 +00:00
* Feature: Added WBlockDSP visual programming language utilizing the `synfx-dsp-jit` crate.
2022-08-08 04:44:40 +00:00
* Feature: Added the `FormFM` node that was contributed by Dimas Leenman (aka Skythedragon).
2022-08-16 04:30:46 +00:00
* Feature: Added `MidiP` node for MIDI pitch/note input.
2022-08-18 04:29:40 +00:00
* Feature: Added `MidiCC` node for MIDI CC input.
2022-08-20 15:27:08 +00:00
* Feature: Added `ExtA` to `ExtF` nodes for plugin parameter access.