--- linuxsampler/trunk/ChangeLog 2012/10/04 18:16:26 2377 +++ linuxsampler/trunk/ChangeLog 2013/01/13 17:22:23 2399 @@ -20,7 +20,10 @@ - lsatomic.h: use gcc provided atomic functions if building with gcc 4.7 and C++11 - modernized configure script - + - fixed linkage error when building with + LDFLAGS="-Wl,--no-undefined" (#190) + - fixed compilation with Clang 3.2 + * general changes: - Refactoring: moved the independent code from the Gigasampler format engine to base classes @@ -57,6 +60,9 @@ - Added new C++ API method Sampler::SetGlobalMaxVoices(). - Added new C++ API method Sampler::SetGlobalMaxStreams(). - Various "const" and "restrict" optimizations. + - all engines: add pan CC value to instrument pan parameter before + applying panning, instead of using two separate pan functions in + series (#182) * Gigasampler format engine: - implemented the "round robin keyboard" dimension @@ -64,6 +70,14 @@ dimension zones is not a power of two - made round robin use a counter for each region instead of each key + - bugfix: pitch LFO controller "internal+aftertouch" was broken + - bugfix: filter keyboard tracking was broken + - filter performance fix (an unnecessary copy was made of the + filter parameters in each sub fragment) + - handle special case when pan parameter in gig file has max or + min value + - Exclusive Groups: don't ever stop voices of the same note, + doesn't sound naturally with a drumkit * SFZ format engine: - Initial implementation (not usable yet) @@ -219,6 +233,8 @@ - made end=0 play the whole sample - fixed support for lochan and hichan opcodes (#155) - fixed crash when using lochan/hichan opcodes (#187) + - sfz parser: allow -200 to 200 for pan_oncc opcode (#182) + - added FLAC support (#192) * SoundFont format engine: - Initial implementation (not usable yet) @@ -229,12 +245,6 @@ - initial implementation of cutoff filter - use linear decay and release for filter and pitch EG - * Gigasampler format engine: - - bugfix: pitch LFO controller "internal+aftertouch" was broken - - bugfix: filter keyboard tracking was broken - - filter performance fix (an unnecessary copy was made of the - filter parameters in each sub fragment) - * Host plugins (VST, AU, LV2, DSSI): - AU bugfix: failed to destroy its audio/MIDI devices - Listen to all interfaces on Mac OS X (INADDR_ANY) @@ -285,6 +295,11 @@ - CoreMIDI: added driver specific port parameter "AUTO_BIND", if enabled the driver will automatically connect to other CoreMIDI clients' ports (e.g. external MIDI devices being attached to the Mac) + - added support for MIDI note on velocity filter + - CoreMIDI: fixed memory deallocation error + - Fixed variable underflow in VirtualMidiDevice, which caused graphical + virtual keyboards in frontends / instrument editors being stuck. + - Bugfix in VirtualMidiDevice: process note on with velocity 0 as note off. * audio driver: - ASIO driver fixes for newer gcc versions (fix from PortAudio)