--- linuxsampler/trunk/ChangeLog 2012/06/24 16:11:31 2352 +++ linuxsampler/trunk/ChangeLog 2012/11/21 21:52:15 2380 @@ -1,8 +1,5 @@ Version CVS HEAD (?) - * plugin changes: - - LV2 "state" extension support (patch by David Robillard) - * packaging changes: - fixed building with newer MinGW-w64 - Mac OS X: support the new dir for Core Audio SDK @@ -22,7 +19,10 @@ - fixed configure script error with old autoconf versions - 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) + * general changes: - Refactoring: moved the independent code from the Gigasampler format engine to base classes @@ -54,6 +54,11 @@ instrument on an engine channel (a.k.a. part). Some GigaStudio instruments for example are splitted over several files like "Foo.gig", "Foo.gx01", "Foo.gx02", ... + - Added new C++ API method Sampler::GetGlobalMaxVoices(). + - Added new C++ API method Sampler::GetGlobalMaxStreams(). + - Added new C++ API method Sampler::SetGlobalMaxVoices(). + - Added new C++ API method Sampler::SetGlobalMaxStreams(). + - Various "const" and "restrict" optimizations. * Gigasampler format engine: - implemented the "round robin keyboard" dimension @@ -215,6 +220,7 @@ group and off_by opcodes (#168) - made end=0 play the whole sample - fixed support for lochan and hichan opcodes (#155) + - fixed crash when using lochan/hichan opcodes (#187) * SoundFont format engine: - Initial implementation (not usable yet) @@ -231,7 +237,7 @@ - filter performance fix (an unnecessary copy was made of the filter parameters in each sub fragment) - * Host plugins: + * 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) - VST bugfix: If the host called resume() before and after @@ -245,6 +251,7 @@ - VST: made it possible to build the VST plugin for Mac - AU: link AU plugin dynamically if --disable-shared isn't specified + - LV2 "state" extension support (patch by David Robillard) - VST bugfix: instrument loading hang and crashed the host when the plugin was loaded a second time (#174) - plugin bugfix: instrument loading hang when the plugin was @@ -255,6 +262,17 @@ - VST: try to open Fantasia automatically on Linux and Mac too (on Linux, the Fantasia jar should be placed in /share/java) - VST: fixed crashes on Linux Ardour and EnergyXT + - DSSI bugfix: it wasn't possible to change engine type. The MIDI + port and audio channel routing for DSSI plugins are now visible. + - LV2: use urid and atom extensions instead of deprecated uri-map + and event + - LV2: lv2 package 1.0 is now required to build the LV2 plugin + - LV2: changed number of output channels to 16 stereo, just like + the VST and AU plugins + - LV2: fixed save/restore of SFZ state (patch by David Robillard) + - LV2: made LV2 plugin buildable on Windows and Mac + - VST: implemented retrieval and switching of programs using the + sampler's internal MIDI instrument mapping system * MIDI driver: - ALSA MIDI driver supports now "NAME" device parameter, for overriding @@ -263,6 +281,13 @@ there is no reason for this limit - MME: fixed memory handling bug found with cppcheck - MME: removed compiler warning + - CoreMIDI: implemented driver specific port parameter "CORE_MIDI_BINDINGS", + which allows to retrieve the list of CoreMIDI clients / ports and to connect + to them a la JACK, via the usual sampler APIs + - 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 * audio driver: - ASIO driver fixes for newer gcc versions (fix from PortAudio) @@ -344,6 +369,8 @@ introduced in previous fix) - fixed crash when a channel received a program change while playing a note in a key group + - fixed erroneous error message piping in VoiceBase.h + (labelled "Disk stream not available in time") Version 1.0.0 (31 July 2009)