--- linuxsampler/trunk/ChangeLog 2021/01/07 12:25:59 3847 +++ linuxsampler/trunk/ChangeLog 2021/08/04 18:23:05 3988 @@ -1,6 +1,37 @@ Version SVN trunk (?) * general changes: + - AbstractEngineChannel: fixed CCs not being forwarded to all + VirtualMIDIDevices. + + * Real-time instrument scripts: + - Fix: Do not share compiled instrument scripts among multiple engine + channels (sampler parts) as this can lead to crashes and would allow the + same global script variables to be accessible from multiple engine + channels which would not be the expected behaviour by instrument script + authors. + + * GigaStudio/Gigasampler format engine: + - Use libgig's new IO-per-thread feature to avoid file I/O concurrency + issues with .gig file. + - Use libgig's new method gig::File::GetSample() with method + gig::File::CountSamples() instead of now deprecated + gig::File::GetFirstSample() / gig::File::GetNextSample() pair. + - Use libgig's new method gig::Instrument::GetRegionAt() with method + gig::Instrument:CountRegions() instead of now deprecated + gig::Instrument::GetFirstRegion() / gig::Instrument::GetNextRegion() pair. + - Use libgig's gig::File::GetInstrument() method with method + gig::File::CountInstruments() instead of now deprecated + gig::File::GetFirstInstrument() / gig::File::GetNextInstrument() pair. + + * MIDI driver: + - VirtualMidiDevice: added method Reset() which is e.g. intended to be used + in "panic" / MIDI "all sound off" / MIDI "all note off" situations. + - VirtualMidiDevice: release all notes on MIDI CC #120 and CC #123. + +Version 2.2.0 (9 May 2021) + + * general changes: - Fixed compiler error in Pool.h. - Require C++14 compiler support. - Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used @@ -72,6 +103,8 @@ - Allow EffectChain::InsertEffect() as alternative to EffectChain::AppendEffect() (i.e. with index equal to current chain size). - ConstCapacityArray class: Fixed bug in remove() method. + - Fixed crash on certain MIDI RPN and NRPN messages that occurred if no + real-time instrument script was loaded. * Real-time instrument scripts: - Added method ScriptVM::setExitResultEnabled() which allows to @@ -307,6 +340,9 @@ running out of free script events. - Fixed crash when handling array results of built-in functions (e.g. "num_elements(by_marks($MARK_1)"). + - NKSP VM: Fixed dead note events not been removed from user's event groups + (i.e. causing incorrect behaviour of built-in NKSP functions by_marks() + and set_event_mark() after max. size of event group list was exhausted). * test cases: - Fixed compiler errors in test cases.