updated changelog

This commit is contained in:
Stefano D'Angelo 2024-02-23 15:04:45 +01:00
parent 4b10a04b3c
commit 7a8ef7ae25
4 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,31 @@
1.1.0
-----
* Added new bw_cab module.
* Added new fx_cab and fxpp_cab examples.
* Added skip_sustain and always_reach_sustain parameters to bw_env_gen.
* Added silence_dc parameter to bw_bd_reduce.
* Added BW_NULL definition in bw_common and used it throughout the entire
codebase.
* Added BW_CXX_NO_ARRAY to control the inclusion of features depending on
C++ <array>.
* Relaxed sidechain APIs in bw_comp and bw_noise_gate to accept BW_NULL to
represent null sidechain inputs.
* Added setThreshLin() and setThreshDb() methods to the C++ APIs of bw_comp
and bw_noise_gate to fix naming typos without breaking the API.
* Reworked all example code and added LV2, command line application, and
C++/WebAssembly targets.
* Fixed gain compensation in bw_satur_process_multi().
* Fixed rounding bug in bw_phase_gen when frequency is tiny and negative.
* Fixed smoothing of decay parameter in bw_reverb.
* Fixed computation of initial states in bw_mm1 and bw_mm2.
* Fixed sign-related issues in bw_hash_sdbm(), bw_truncf(), bw_roundf(), and
bw_sqrtf() (thanks Kevin Molcard).
* Replace GCC pragmas to suppress uninitalized variable warnings with
useless harmless statements in bw_env_gen, bw_hs2, bw_ls2, bw_one_pole, and
bw_peak.
* Fixed documentation typos in bw_ls2.
* Updated examples' documentation.
1.0.0
-----
* Removed C++ headers and moved C++ code to now-unique C/C++ headers.

View File

@ -29,6 +29,8 @@
* <ul>
* <li>Version <strong>1.1.0</strong>:
* <ul>
* <li>Fixed computation of initial state in
* <code>bw_mm1_reset_state()</code>.</li>
* <li>Now using <code>BW_NULL</code> and
* <code>BW_CXX_NO_ARRAY</code>.</li>
* </ul>

View File

@ -29,6 +29,8 @@
* <ul>
* <li>Version <strong>1.1.0</strong>:
* <ul>
* <li>Fixed computation of initial state in
* <code>bw_mm2_reset_state()</code>.</li>
* <li>Now using <code>BW_NULL</code> and
* <code>BW_CXX_NO_ARRAY</code>.</li>
* </ul>

View File

@ -37,6 +37,8 @@
* <ul>
* <li>Version <strong>1.1.0</strong>:
* <ul>
* <li>Fixed smoothing of decay parameter in
* <code>bw_reverb_update_coeffs_audio()</code>.</li>
* <li>Now using <code>BW_NULL</code> and
* <code>BW_CXX_NO_ARRAY</code>.</li>
* </ul>