--- linuxsampler/trunk/ChangeLog 2020/05/15 20:16:39 3769 +++ linuxsampler/trunk/ChangeLog 2020/12/11 19:39:09 3840 @@ -66,6 +66,11 @@ features. - Ref<> class is now thread safe (as lock-free and wait-free implementation). + - Fixed compilation error with Bison >= 3.6.0. + - Fixed rare crash when switching between instruments that had instrument + scripts loaded. + - Allow EffectChain::InsertEffect() as alternative to + EffectChain::AppendEffect() (i.e. with index equal to current chain size). * Real-time instrument scripts: - Added method ScriptVM::setExitResultEnabled() which allows to @@ -278,6 +283,22 @@ - 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). + - NKSP language: Just throw a warning, not an error if an array variable of + size zero was declared. + - NKSP language: Allow omitting explicit array size on array variable + declaration if combined with immediate value assignment + (e.g. declare %foo[] := ( 1, 2, 3 ) ). + - NKSP language: emit warning if an array variable was declared with bigger + array size than amount of initial values been assigned, and initialize the + missing array elements with zero in this case. + - Fixed built-in NKSP exit() function to behave as return statement. + - NKSP parser: Fixed crash if unary '-' operator was used on a non-number + data type. + - NKSP VM: Fixed the "release" handler being executed too often under + certain situations if polyphonic data was passed from "note" handler to + "release" handler. + - Fixed memory leak in NKSP parser: string tokens were allocated as C + strings and never freed. * test cases: - Fixed compiler errors in test cases. @@ -333,6 +354,8 @@ * SFZ format engine: - Fixed support for regions with loccN/hiccN conditions on more than one MIDI controller. + - Fixed internal opcode 'xfin_hivel' falsely being set by user opcode + 'xfin_lovel' (patch by Christian Czezatke). * Benchmarks: - Fixed benchmarks/triang.cpp falsely having favoured "int math abs"