--- linuxsampler/trunk/ChangeLog 2020/01/23 18:15:37 3724 +++ linuxsampler/trunk/ChangeLog 2020/05/15 19:52:31 3768 @@ -3,6 +3,7 @@ * general changes: - Fixed compiler error in Pool.h. - Require C++14 compiler support. + - Require C11 compliant compiler. - Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used for checking in configure for C++14 support (as mandatory requirement) and automatically adds compiler argument if required @@ -49,6 +50,23 @@ entry/increment/decrement CC messages. - Fixed crash when editing key groups (a.k.a. exclusive groups) with an instrument editor. + - Fixed playing noise at the end of a disk stream under certain conditions. + - Fixed potential crash with high pitch at end of RAM playback. + - Added configure checks whether C++ compiler supports so called + 'designated initializers'. + - Added global backtraceAsString() function for debugging purposes + (POSIX systems only, no Windows implementation yet). + - Thread class: Added new methods pushCancelable(), popCancelable(), name(), + nameOfCaller() and setNameOfCaller(). + - configure: Always check for availability of pthread_testcancel() and use + it if so (previously it was only used if explicitly enabled by configure + option). + - Thread class: raise compiler warning if pthread_testcancel() is not + available, because it can lead to deadlocks. + - Mutex class: Implemented optional bug detection and deadlock debugging + features. + - Ref<> class is now thread safe (as lock-free and wait-free + implementation). * Real-time instrument scripts: - Added method ScriptVM::setExitResultEnabled() which allows to @@ -242,6 +260,25 @@ "change_amp_lfo_depth()", "change_cutoff_lfo_depth()" and "change_pitch_lfo_depth()", to allow e.g. passing value 2000000 to double the LFO frequency / resonance / cutoff frequency. + - Reduced code involved for parsing NKSP variable declarations by using 2 + generalized grammar rules with optional components (i.e. optional value + assignment and optional variable qualifiers) instead of previous linear + combinations of grammar rules, which also fixes some edge case. + - NKSP language parser: track code block locations also by a) raw byte + position in NKSP source code string and b) length of that code block in + bytes (along to the already existing code block tracking by line/column); + and added appropriate new members to public C++ API classes like + 'firstByte' and 'lengthBytes' to class VMSourceToken and struct CodeBlock. + - NKSP language: Added support for 'patch' variable qualifier (capture their + locations and allow replacement of their assignment expression via VM C++ + API). + - Fixed incorrect EG times if standard measuring unit was passed to built-in + functions "change_attack()", "change_decay()" or "change_release()". + - Fixed intermediate function result values never having reflected any + standard measuring unit type. + - Fixed re-entrant issue with function calls which caused wrong result + values if the same function was called multiple times in a term + (specifically if metric prefixes were used). * test cases: - Fixed compiler errors in test cases. @@ -267,6 +304,7 @@ "sin()", "cos()", "tan()", "asin()", "acos()", "atan()". - Added NKSP test cases for unary '+' operator. - Added NKSP test cases for core built-in variables. + - Added thorough NKSP test cases for variable declarations. * GigaStudio/Gigasampler format engine: - LFOTriangleIntMath and LFOTriangleIntAbsMath: Fixed FlipPhase=true @@ -289,6 +327,9 @@ - If minimum cutoff is defined, remap cutoff controller CC values to really span the entire possible cutoff range (and avoiding a dead controller zone). + - Implemented support for loading instrument scripts with 'patch' variables + (by patching these script variables with potentially overridden ones by + gig Instrument). * SFZ format engine: - Fixed support for regions with loccN/hiccN conditions on more than one