/[svn]/linuxsampler/trunk/ChangeLog
ViewVC logotype

Diff of /linuxsampler/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2378 by persson, Sun Nov 4 10:36:30 2012 UTC revision 3548 by schoenebeck, Wed Jul 31 09:35:10 2019 UTC
# Line 1  Line 1 
1  Version CVS HEAD (?)  Version SVN trunk (?)
2    
3      * general changes:
4        - Fixed compiler error in Pool.h.
5        - Fixed compiler errors in test cases.
6        - Updated README for how to compile & run test cases.
7        - Updated test case
8          MutexTest::testDoubleLockStillBlocksConcurrentThread() to latest
9          expected behaviour of the Mutex class implementation (recursive
10          mutex type).
11    
12    Version 2.1.1 (27 Jul 2019)
13    
14      * Real-time instrument scripts:
15        - Fixed behavior of built-in NKSP functions change_sustain(),
16          change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
17          and change_cutoff_release().
18    
19      * general changes:
20        - Only play release trigger samples on sustain pedal up if this behaviour
21          was explicitly requested by the instrument (otherwise only on note-off).
22        - Fixed compiler warnings.
23        - Fixed compilation error when cross-compiling to Mac.
24        - FX Sends: Provide more useful error messages on routing problems
25          (see bug #169).
26        - LSCP doc: Be more clear describing the two distinct approaches
27          of using external vs. internal effects (see bug #169).
28        - "optional" class: Fixed comparison operators.
29    
30      * Gigasampler/GigaStudio format engine:
31        - Format extension: If requested by instrument then don't play release
32          trigger sample on note-off events.
33    
34      * SFZ format engine:
35        - Fixed memory leak when releasing samples
36          (fixes bug #307, patch by Jacek Roszkowski)
37        - Fixed potential crash when a sample is shared by more than one region
38          (fixes bug #308, patch by Jacek Roszkowski).
39        - Opcode 'sample': Added support for built-in sample '*silence'
40          (fixes bug #310, patch by Jacek Roszkowski).
41    
42    Version 2.1.0 (25 Nov 2017)
43    
44      * SFZ format engine:
45        - added support for <global>, <master> and #define (patch by Alby M)
46        - Removed code duplication in SFZ file loading code.
47        - Added support for sfz extension opcode 'script' which may be used to
48          load real-time instrument script file (NKSP script language).
49        - Implemented opcode set_ccN (initial patch by Giovanni Senatore).
50        - Fixed unintended volume fade-in of voices under certain conditions.
51        - sfz parser: allow missing space between header and opcode
52    
53      * Gigasampler/GigaStudio format engine:
54        - Fixed clicks and pumping noise with Lowpass Turbo filter on very low
55          cutoff settings.
56        - Got rid of resembling an ancient GSt misbehavior which did not pitch at
57          all if an up-pitch of more than 40 semi tones was requested (I don't
58          think there is any stock gig sound that requires this behavior to
59          resemble its original sound).
60        - Added support for controlling whether the individual EGADSR stages may
61          be aborted (as LinuxSampler extension to the original GigaStudio 4
62          format).
63    
64      * general changes:
65        - fixed printf type errors (mostly in debug messages)
66        - use unique_ptr instead of auto_ptr when building with C++11
67        - Added RTAVLTree class which is a real-time safe ordered multi-map, thus
68          allowing to sort data efficiently in real-time safe manner.
69        - RTList class: added methods for moving/inserting elements to arbitrary
70          position within a list.
71        - RTList class: added method fromPtr() for creating an Iterator object from
72          a raw element pointer.
73        - Attempt to partly fix resetting engine channels vs. resetting engine, an
74          overall cleanup of the Reset*(), ConnectAudioDevice(),
75          DisconnectAudioDevice() API methods would still be desirable though,
76          because the current situation is still inconsistent and error prone.
77        - Active voices are now internally grouped to "Note" objects, instead of
78          being directly assigned to a keyboard key. This allows more fine graded
79          processing of voices, which is i.e. required for certain instrument
80          script features.
81        - Fix: Release trigger voices were not spawned on sustain pedal up
82          (CC #64) events.
83        - Fix: Release trigger voices can now also distinguish correctly between
84          note-off and sustain pedal up events.
85        - All engines: Increased ramp speed of volume smoother and pan smoother
86          (while slow rate of crossfade smoother is preserved) to allow quick
87          volume and pan changes by instrument scripts for instance.
88        - gig/sf2/sfz: Fixed aftertouch channel pressure events being processed
89          properly and thus were ignored for certain uses.
90        - Added new C++ API method
91          VirtualMidiDevice::SendChannelPressureToSampler().
92        - windows, 32-bit: fixed potential crashes by making sure the stack in
93          sub threads is 16-byte aligned
94        - fixed numerous compiler warnings
95        - Fixed invalid (note-on) event ID being assigned to new Note objects.
96        - Revised fundamental C++ classes "Thread", "Mutex" and "Condition" which
97          fixes potential undefined behavior.
98        - Fixed Note object leak when triggering notes on keys which did not
99          have a valid sample mapped (fixes bug #252).
100        - Fixed compilation errors when compiling with CONFIG_DEVMODE enabled.
101        - linuxsampler binary fix: option --create-instruments-db ignored
102          subsequent optional argument due to glibc's implementation oddity
103          which expects a "=" sign, but no space between them.
104    
105      * packaging changes:
106        - removed unnecessary dependency to libuuid
107          (originated by libgig's usage of it)
108        - Automake: set environment variable GCC_COLORS=auto to allow GCC to
109          auto detect whether it (sh/c)ould output its messages in color.
110        - Debian: Fixed packaging error about invalid "Source-Version"
111          substitution variable.
112        - Debian: Raised Debian compatibility level to Debian 9 "Stretch".
113        - Debian: Added build dependency to libsqlite3-dev for building
114          linuxsampler with instruments DB support.
115    
116      * Real-time instrument scripts:
117        - Implemented scheduler for delayed MIDI events and for suspended scripts.
118        - Built-in script function "wait()": implemented support for function's
119          "duration-us" argument, thus scripts using this function are now
120          correctly resumed after the requested amount of microseconds.
121        - Built-in script function "play_note()": implemented support for
122          function's "duration-us" argument, thus notes triggered with this
123          argument are now correctly released after the requested amount of
124          microseconds.
125        - Fix: script events were not cleared when engine channel was reset,
126          potentially causing undefined behavior.
127        - Fixed crash which happened when trying to reference an undeclared
128          variable.
129        - Built-in script function "play_note()": Added support for passing
130          special value -1 for "duration-us" argument, which will cause the
131          triggered note to be released once the original note was released.
132        - Instrument script classes now exported with the liblinuxsampler C++ API.
133        - Added new API method ScriptVM::syntaxHighlighting() which provides
134          a convenient syntax highlighting backend for external instrument
135          script editor applications.
136        - Added new C++ API class "ScriptVMFactory".
137        - Extended parser issues to provide not only first line and first
138          column, but also last line and last column of issue (thus marking
139          the precise span of the issue within the source code).
140        - Reload script automatically after being modified by an instrument
141          editor.
142        - NKSP language grammar correction: allow empty event handler bodies
143          like "on note end on".
144        - Implemented built-in script function "change_vol()".
145        - Implemented built-in script function "change_tune()".
146        - Implemented built-in script function "change_pan()".
147        - Implemented built-in script function "change_cutoff()".
148        - Implemented built-in script function "change_reso()".
149        - Implemented built-in script function "event_status()".
150        - Added built-in script constants "$EVENT_STATUS_INACTIVE" and
151          "$EVENT_STATUS_NOTE_QUEUE" both for being used as flags for
152          "event_status()" function.
153        - NKSP language: Added support for bitwise operators ".or.", ".and."
154          and ".not.".
155        - NKSP language scanner: Fixed IDs matching to require at least one
156          character (i.e. when matching function names or variable names).
157        - NKSP language scanner: disabled unusued rules.
158        - Fixed behavior of play_note() and note_off() functions which must
159          be distinguished engine internally from "real" MIDI note on/off
160          events in order to avoid misbehaviors like hanging notes.
161        - Implemented built-in script variable "$KSP_TIMER".
162        - Implemented built-in script variable "$NKSP_REAL_TIMER".
163        - Implemented built-in script variable "$NKSP_PERF_TIMER".
164        - Implemented built-in script variable "$ENGINE_UPTIME".
165        - Implemented built-in script function "inc()".
166        - Implemented built-in script function "dec()".
167        - NKSP language fix: division expressions were evaluated too often.
168        - NKSP language fix: string concatenation operator was right
169          associative instead of left (to right).
170        - NKSP language correction: allow empty statements in entire language
171          (i.e. "if end if").
172        - Implemented built-in script function "stop_wait()".
173        - Implemented built-in script variable "$NI_CALLBACK_ID".
174        - Implemented built-in script variable "$NI_CALLBACK_TYPE".
175        - Implemented built-in script variable "$NKSP_IGNORE_WAIT".
176        - Added support for read-only built-in variables (respectively
177          handled by the script parser).
178        - Added built-in script constant "$NI_CB_TYPE_INIT".
179        - Added built-in script constant "$NI_CB_TYPE_NOTE".
180        - Added built-in script constant "$NI_CB_TYPE_RELEASE".
181        - Added built-in script constant "$NI_CB_TYPE_CONTROLLER".
182        - NKSP Language: Added support for user defined script functions.
183        - Implemented built-in script function "change_attack()".
184        - Implemented built-in script function "change_decay()".
185        - Implemented built-in script function "change_release()".
186        - Fixed all change_*() built-in script functions to apply their
187          synthesis parameter changes immediately in case the respective note
188          was triggered at the same time, instead of scheduling the parameter
189          change, especially because it would cause some parameter types's
190          changes either to be ramped (i.e. change_vol()) or other types even
191          to have not effect at all (i.e. change_attack()).
192        - Implemented built-in script function "sh_left()".
193        - Implemented built-in script function "sh_right()".
194        - Implemented built-in script function "min()".
195        - Implemented built-in script function "max()".
196        - NKSP Fix: "init" event handler was not always executed when a script
197          was loaded.
198        - NKSP built-in wait() script function: abort script execution if
199          a negative or zero wait time was passed as argument (since this is
200          a common indication of a bug either of the script or even of the
201          engine, which could lead to RT instability or even worse).
202        - ScriptVM: Implemented automatic suspension of RT safety
203          threatening scripts.
204        - Provide more user friendly error messages on syntax errors.
205        - Fixed NKSP parser warning "Not a statement" when assigning an
206          initializer list to an array variable.
207        - Implemented built-in script array variable "%ALL_EVENTS".
208        - Implemented built-in script function "in_range()".
209        - Implemented built-in script function "change_amp_lfo_depth()".
210        - Implemented built-in script function "change_amp_lfo_freq()".
211        - Implemented built-in script function "change_pitch_lfo_depth()".
212        - Implemented built-in script function "change_pitch_lfo_freq()".
213        - Implemented built-in script function "change_vol_time()".
214        - Implemented built-in script function "change_tune_time()".
215        - Implemented built-in script function "fade_in()".
216        - Implemented built-in script function "fade_out()".
217        - Fixed acceptance of wrong data type of parameters passed to built-in
218          script functions "change_vol()", "change_tune()", "change_pan()",
219          "change_cutoff()", "change_reso()", "change_attack()", "change_decay()",
220          "change_release()", "change_amp_lfo_depth()", "change_amp_lfo_freq()",
221          "change_pitch_lfo_depth()" and "change_pitch_lfo_freq()".
222        - Added built-in script function "get_event_par()" and implemented some
223          of its possible parameter selections.
224        - Added built-in script function "set_event_par()" and implemented some
225          of its possible parameter selections.
226        - Fixed a bunch of scheduler time related bugs.
227        - Fixed polyphonic variables not being reset to zero after usage.
228        - Built-in "ignore_event()" function: argument is now optional, like with
229          built-in function "ignore_controller()".
230        - Implemented built-in script function "change_velo()".
231        - Implemented built-in script function "change_note()".
232        - Adjusted behavior of "change_vol()" and "change_tune()" to a more
233          intuitive behavior if used in combination with "change_vol_time()" or
234          "change_tune_time()" respectively: now tuning/volume changes are only
235          assigned (without delay) immediately to a new note if the respective
236          timing function has not been called before, otherwise the volume/tuning
237          changes are automatically faded (before, only the event's time stamp was
238          relevant).
239         - Implemented built-in script function "array_equal()".
240         - Implemented built-in script function "search()".
241         - Implemented built-in script function "sort()".
242         - NKSP Fix: Never suspend "init" event handlers.
243         - Implemented built-in script function "same_region()" (currently only
244           available for gig format engine).
245         - Added built-in script constant "$NKSP_LINEAR".
246         - Added built-in script constant "$NKSP_EASE_IN_EASE_OUT".
247         - Implemented built-in script function "change_vol_curve()".
248         - Implemented built-in script function "change_tune_curve()".
249         - built-in "play_note()" function now supports a sample playback start
250           offset with argument 3, where special value -1 means to use the regular
251           sample offset as defined by the instrument file.
252         - Built-in array variable %KEY_DOWN[] is now a read-only variable.
253         - Built-in variable $EVENT_NOTE is now a read-only variable.
254         - Built-in variable $EVENT_VELOCITY is now a read-only variable.
255         - built-in "play_note()" function now accepts -2 for its fourth argument
256           (note duration) which means the life time of the note shall be sticked
257           to the requested note number of argument 1.
258         - Fix: built-in "play_note()" function now returns 0 as result value if
259           -1 was passed for its fourth argument (note duration) and the respective
260           parent note is already gone.
261        - Implemented built-in script function "change_play_pos()".
262        - NKSP language: Added support for user declared const array variables.
263        - NKSP language: Raise parser warning if array variable is accessed with
264          an index that exceeds the array's size.
265        - NKSP language fix: Unknown characters were not handled correctly.
266        - NKSP language: Added support for "synchronized .. end synchronized"
267          code blocks.
268        - Implemented built-in script function "abort()" which allows to abort
269          another script handler by passing its callback ID.
270        - Fixed potential memory access bug and potential undefined behavior of
271          "init" event handlers.
272        - Print a time stamp along to each call of built-in function "message()".
273        - ScriptVM API: Added VMParserContext::preprocessorComments() which allows
274          to retrieve all code blocks filtered out by the preprocessor.
275        - Added built-in script function "fork()".
276        - Added built-in array variable %NKSP_CALLBACK_CHILD_ID[].
277        - Added built-in variable $NKSP_CALLBACK_PARENT_ID.
278        - Fixed potential crash when accessing dynamic built-in array variables.
279        - Added built-in script function "callback_status()".
280        - Added built-in constant $CALLBACK_STATUS_TERMINATED.
281        - Added built-in constant $CALLBACK_STATUS_QUEUE.
282        - Added built-in constant $CALLBACK_STATUS_RUNNING.
283        - Removed max. value limitation of built-in functions "change_attack()",
284          "change_decay()" and "change_release()" to i.e. allow passing 2000000
285          for doubling the respective time.
286        - NKSP script editor syntax highlighting API: Fixed app termination due
287          to a lexer start condition stack underrun.
288        - NKSP preprocessor: Fixed wrong behavior on nested USE_CODE_IF() and
289          USE_CODE_IF_NOT() preprocessor statements.
290        - NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE, which
291          can be set to disable all subsequent built-in "message()" function calls
292          on preprocessor level.
293        - Implemented built-in script function "change_sustain()".
294        - NKSP script editor syntax highlighting API: catch all fatal lexer errors,
295          to avoid the editor app to crash on ill-formed text input.
296        - Added built-in script function "change_pan_time()".
297        - Added built-in script function "change_pan_curve()".
298        - Added built-in script function "change_cutoff_attack()".
299        - Added built-in script function "change_cutoff_decay()".
300        - Added built-in script function "change_cutoff_sustain()".
301        - Added built-in script function "change_cutoff_release()".
302        - Added built-in script function "change_cutoff_lfo_depth()".
303        - Added built-in script function "change_cutoff_lfo_freq()".
304    
305      * Instruments DB:
306        - Fixed memory access bug of general DB access code which lead to
307          undefined behavior.
308        - Cleanup of instruments DB file creation and opening code.
309        - The instrument DB path of linuxsampler's --create-instruments-db argument
310          is now optional, if it is missing, then a default location is used.
311        - Added support for scanning SFZ (.sfz) files.
312        - Added support for scanning Sound Font (.sf2) files.
313        - Fixed undefined DB transaction behavior.
314    
315    Version 2.0.0 (15 July 2015)
316    
317    * packaging changes:    * packaging changes:
318      - fixed building with newer MinGW-w64      - fixed building with newer MinGW-w64
# Line 22  Version CVS HEAD (?) Line 336  Version CVS HEAD (?)
336      - modernized configure script      - modernized configure script
337      - fixed linkage error when building with      - fixed linkage error when building with
338        LDFLAGS="-Wl,--no-undefined" (#190)        LDFLAGS="-Wl,--no-undefined" (#190)
339                - fixed compilation with Clang 3.2
340        - removed usage of deprecated Automake variable INCLUDES
341        - fixed building with C++11
342        - build fix: ChangeFlagRelaxed.h was missing in makefile
343        - build fix: libsndfile compiler flags were missing in some
344          makefiles
345        - fix for building with bison 3.0 (#202)
346        - Mac OS X: added temporary hack allowing to spawn gigedit as callback
347          on the process's main thread
348        - fixed build error on newer MinGW
349        - support building with older jack versions
350        - support building with spaces in vst sdk path
351        - enabled automake 'subdir-objects' option and moved external
352          source references (vst, au, asio) from makefiles to cpp files,
353          in order to get rid of warnings from automake 1.14
354    
355    * general changes:    * general changes:
356      - Refactoring: moved the independent code from      - Refactoring: moved the independent code from
357        the Gigasampler format engine to base classes        the Gigasampler format engine to base classes
# Line 59  Version CVS HEAD (?) Line 388  Version CVS HEAD (?)
388      - Added new C++ API method Sampler::SetGlobalMaxVoices().      - Added new C++ API method Sampler::SetGlobalMaxVoices().
389      - Added new C++ API method Sampler::SetGlobalMaxStreams().      - Added new C++ API method Sampler::SetGlobalMaxStreams().
390      - Various "const" and "restrict" optimizations.      - Various "const" and "restrict" optimizations.
391        - all engines: add pan CC value to instrument pan parameter before
392          applying panning, instead of using two separate pan functions in
393          series (#182)
394        - added a lock guard class for exception safe mutex handling and
395          used it everywhere appropriate
396        - Immediately apply scale tuning changes to active voices.
397        - Exposed scale tuning to C++ API (along to the already existing standard
398          SysEx way).
399        - lsatomic.h fixes: seq_cst load and store were suboptimal for x86
400          and broken for ppc64. (Seq_cst loads and stores are actually not
401          used in LS, so the bug wasn't noticable.)
402        - lsatomic.h: added ARMv7 support
403        - Added support for multiple MIDI input ports per sampler channel (and
404          added various new C++ methods for this new feature / design change, old
405          C++ API methods for managing SamplerChannel's MIDI inputs are now marked
406          as deprecated but are still there and should provide full behavior
407          backward compatibility).
408        - AbstractEngine::GSChecksum(): don't allocate memory on the stack (was
409          unsafe and caused compilation error with clang 2.x).
410        - Bugfix: only process the latest MIDI program change event.
411        - Introducing the LSCP shell, which provides convenient control of the
412          sampler from the command line by providing LSCP aware features.
413        - VirtualMidiDevice: Added support for program change.
414        - VirtualMidiDevice: Added support for bank select (MSB & LSB).
415        - VirtualMidiDevice: Added support for pitch bend.
416        - Aftertouch: extended API to explicitly handle channel pressure and
417          polyphonic key pressure events (so far polyphonic pressure was not
418          supported at all, and channel pressure was rerouted as CC128 but not
419          used so far).
420        - Added initial support for real-time instrument scripts. The script VM
421          code is shared by all sampler engine implemementations, however only the
422          gig file format currently provides support for storing instrument scripts
423          (as LinuxSampler extension to the original GigaStudio 4 format).
424    
425    * Gigasampler format engine:    * Gigasampler format engine:
426      - implemented the "round robin keyboard" dimension      - implemented the "round robin keyboard" dimension
# Line 66  Version CVS HEAD (?) Line 428  Version CVS HEAD (?)
428        dimension zones is not a power of two        dimension zones is not a power of two
429      - made round robin use a counter for each region instead of each      - made round robin use a counter for each region instead of each
430        key        key
431        - bugfix: pitch LFO controller "internal+aftertouch" was broken
432        - bugfix: filter keyboard tracking was broken
433        - filter performance fix (an unnecessary copy was made of the
434          filter parameters in each sub fragment)
435        - handle special case when pan parameter in gig file has max or
436          min value
437        - Exclusive Groups: don't ever stop voices of the same note,
438          doesn't sound naturally with a drumkit
439        - fixed EG1 modulation when attack or release is zero
440        - Fixed support for 'aftertouch' attenuation controller.
441        - Fixed crash that happened with velocity split sounds under certain
442          conditions (see also previous commit on libgig).
443        - fixed behaviour of filter LFO
444    
445    * SFZ format engine:    * SFZ format engine:
446      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 221  Version CVS HEAD (?) Line 596  Version CVS HEAD (?)
596      - made end=0 play the whole sample      - made end=0 play the whole sample
597      - fixed support for lochan and hichan opcodes (#155)      - fixed support for lochan and hichan opcodes (#155)
598      - fixed crash when using lochan/hichan opcodes (#187)      - fixed crash when using lochan/hichan opcodes (#187)
599        - sfz parser: allow -200 to 200 for pan_oncc opcode (#182)
600        - added FLAC support (#191)
601        - sfz parser bugfix: lines starting with whitespace were ignored
602        - added amplitude opcode
603        - added support for "#include" instruction
604          (modified patch which was originally posted by Sergey on LS mailing list)
605        - bugfix: generation of velocity curves etc should not be done
606          after each "#include", only after the main file is parsed
607        - bugfix: line numbers in error messages were wrong after "#include"
608        - added support for float and 32 bit sample files
609    
610    * SoundFont format engine:    * SoundFont format engine:
611      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 231  Version CVS HEAD (?) Line 616  Version CVS HEAD (?)
616      - initial implementation of cutoff filter      - initial implementation of cutoff filter
617      - use linear decay and release for filter and pitch EG      - use linear decay and release for filter and pitch EG
618    
   * 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)  
   
619    * Host plugins (VST, AU, LV2, DSSI):    * Host plugins (VST, AU, LV2, DSSI):
620      - AU bugfix: failed to destroy its audio/MIDI devices      - AU bugfix: failed to destroy its audio/MIDI devices
621      - Listen to all interfaces on Mac OS X (INADDR_ANY)      - Listen to all interfaces on Mac OS X (INADDR_ANY)
# Line 274  Version CVS HEAD (?) Line 653  Version CVS HEAD (?)
653      - VST: implemented retrieval and switching of programs using the      - VST: implemented retrieval and switching of programs using the
654        sampler's internal MIDI instrument mapping system        sampler's internal MIDI instrument mapping system
655    
656      * Instrument editor interface:
657        - Changed instrument editor plugin interface, providing additional
658          informations like the EngineChannel for which the instrument editor was
659          spawned for. This allows the instrument editors to interact more actively
660          with the sampler.
661    
662    * MIDI driver:    * MIDI driver:
663      - ALSA MIDI driver supports now "NAME" device parameter, for overriding      - ALSA MIDI driver supports now "NAME" device parameter, for overriding
664        the ALSA sequencer client name        the ALSA sequencer client name
# Line 287  Version CVS HEAD (?) Line 672  Version CVS HEAD (?)
672      - CoreMIDI: added driver specific port parameter "AUTO_BIND", if enabled      - CoreMIDI: added driver specific port parameter "AUTO_BIND", if enabled
673        the driver will automatically connect to other CoreMIDI clients' ports        the driver will automatically connect to other CoreMIDI clients' ports
674        (e.g. external MIDI devices being attached to the Mac)        (e.g. external MIDI devices being attached to the Mac)
675        - added support for MIDI note on velocity filter
676        - CoreMIDI: fixed memory deallocation error
677        - Fixed variable underflow in VirtualMidiDevice, which caused graphical
678          virtual keyboards in frontends / instrument editors being stuck.
679        - Bugfix in VirtualMidiDevice: process note on with velocity 0 as note off.
680        - Implemented missing handling of MIDI "running status".
681        - CoreMIDI fix: a MIDIPacket can contain more than one event per packet.
682        - MME bugfix: driver wasn't closed properly
683        - CoreMIDI: automatically connect to all input sources by default (driver
684          parameter "AUTO_BIND").
685        - CoreMIDI: fixed auto bind feature to CoreMIDI ports that go online
686        - CoreMIDI: fixed minor memory leak
687    
688    * audio driver:    * audio driver:
689      - ASIO driver fixes for newer gcc versions (fix from PortAudio)      - ASIO driver fixes for newer gcc versions (fix from PortAudio)
690        - JACK audio: react on sample rate changes.
691        - JACK audio: react on buffer size changes.
692        - JACK audio: jack_port_get_buffer() was cached and called outside
693          RT context.
694        - ASIO driver: removed compiler warnings
695        - CoreAudio: fixed minor error handling bug
696        - ASIO driver: be more verbose when no ASIO card could be found (fixes #203)
697        - JACK audio: return the JACK server's current sample rate as default value
698          for audio device parameter "SAMPLERATE" (fixes #166).
699    
700    * LSCP server:    * LSCP server:
701      - added support for sending MIDI CC messages via LSCP command      - added support for sending MIDI CC messages via LSCP command
# Line 327  Version CVS HEAD (?) Line 733  Version CVS HEAD (?)
733      - added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",      - added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",
734        "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",        "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",
735        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"
736        - provide comprehensive error messages on LSCP syntax errors
737          (suggesting expected next non-terminal symbols)
738        - Fixed client connection not being closed after network errors.
739    
740      * LSCP shell:
741        - Added support for auto correction of obvious and trivial syntax mistakes.
742        - Added support for auto completion by tab key.
743        - Show currently available auto completion while typing.
744        - Added support for browsing command history with up / down keys.
745        - Show all possible next symbols immediately right to the current command
746          line while typing (no double tab required for this feature, as it would
747          be the case in other shells).
748        - Added support for moving cursor left/right with arrow keys.
749        - Added support for built-in LSCP reference documentation, which will
750          automatically show the relevant LSCP reference section on screen as soon
751          as one specific LSCP command was detected while typing on the command
752          line.
753    
754      * Real-time instrument scripts:
755        - Implemented built-in script array variable %CC.
756        - Implemented built-in script int variable $CC_NUM.
757        - Implemented built-in script int variable $EVENT_NOTE.
758        - Implemented built-in script int variable $EVENT_VELOCITY.
759        - Implemented built-in script constant variable $VCC_MONO_AT.
760        - Implemented built-in script constant variable $VCC_PITCH_BEND.
761        - Implemented execution of script event handler "init".
762        - Implemented execution of script event handler "controller".
763        - Implemented execution of script event handler "note".
764        - Implemented execution of script event handler "release".
765        - Implemented built-in script function "play_note()" (only two of the
766          max. four function arguments are currently implemented yet though).
767        - Implemented built-in script int variable $EVENT_ID.
768        - Implemented built-in script function "ignore_event()"
769        - Implemented built-in script function "ignore_controller()" (may have one
770          or no argument).
771        - Implemented built-in script function "set_controller()".
772        - Added extended script VM for the Gigasampler/GigaStudio format sampler
773          engine, which extends the general instrument script VM with Giga format
774          specific variables and functions.
775        - Giga format scripts: added built-in script int constant variables
776          $GIG_DIM_CHANNEL, $GIG_DIM_LAYER, $GIG_DIM_VELOCITY, $GIG_DIM_AFTERTOUCH,
777          $GIG_DIM_RELEASE, $GIG_DIM_KEYBOARD, $GIG_DIM_ROUNDROBIN, $GIG_DIM_RANDOM,
778          $GIG_DIM_SMARTMIDI, $GIG_DIM_ROUNDROBINKEY, $GIG_DIM_MODWHEEL,
779          $GIG_DIM_BREATH, $GIG_DIM_FOOT, $GIG_DIM_PORTAMENTOTIME, $GIG_DIM_EFFECT1,
780          $GIG_DIM_EFFECT2, $GIG_DIM_GENPURPOSE1, $GIG_DIM_GENPURPOSE2,
781          $GIG_DIM_GENPURPOSE3, $GIG_DIM_GENPURPOSE4, $GIG_DIM_SUSTAIN,
782          $GIG_DIM_PORTAMENTO, $GIG_DIM_SOSTENUTO, $GIG_DIM_SOFT,
783          $GIG_DIM_GENPURPOSE5, $GIG_DIM_GENPURPOSE6, $GIG_DIM_GENPURPOSE7,
784          $GIG_DIM_GENPURPOSE8, $GIG_DIM_EFFECT1DEPTH, $GIG_DIM_EFFECT2DEPTH,
785          $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH.
786        - Giga format scripts: Implemented built-in script function
787          "gig_set_dim_zone(event_id, dimension, zone)".
788        - Implemented built-in script int array variable %KEY_DOWN.
789        - Implemented built-in script function "abs()".
790        - Implemented built-in script function "random()".
791        - Implemented built-in script function "num_elements()".
792        - Implemented built-in script function "note_off()".
793        - Implemented built-in script function "set_event_mark()".
794        - Implemented built-in script function "delete_event_mark()".
795        - Implemented built-in script function "by_marks()".
796        - Added built-in script int const variables $MARK_1 to $MARK_28.
797        - Built-in script functions "ignore_event()", "note_off()" and
798          "gig_set_dim_zone()" now also accept an array of event IDs as argument
799          (i.e. return value of new script function "by_marks()").
800        - Pass/preserve polyphonic variable data from respective "note" event
801          handler to "release" event handler.
802        - Fixed crash when using built-in script function "by_marks()".
803    
804    * Bug fixes:    * Bug fixes:
805      - Fixed crash which may occur when MIDI key + transpose is out of range      - Fixed crash which may occur when MIDI key + transpose is out of range
# Line 370  Version CVS HEAD (?) Line 843  Version CVS HEAD (?)
843        playing a note in a key group        playing a note in a key group
844      - fixed erroneous error message piping in VoiceBase.h      - fixed erroneous error message piping in VoiceBase.h
845        (labelled "Disk stream not available in time")        (labelled "Disk stream not available in time")
846        - Update effects on sample rate & period size changes (to avoid
847          crashes and noise on such transitions).
848        - ignore missing LADSPA paths without ignoring valid LADSPA paths
849          (fixes #208)
850        - Fixed bug in LSCP grammar definition which caused a statement like
851          "GET SERVER INFOasdf\n" to be accepted as valid statement (was so far
852          practically irrelevant, however it caused problems with the new LSCP
853          shell's auto completion feature).
854        - Fixed MIDI program change messages being ignored if quickly executed
855          after each other (fixes #231).
856    
857  Version 1.0.0 (31 July 2009)  Version 1.0.0 (31 July 2009)
858    
# Line 434  Version 1.0.0 (31 July 2009) Line 917  Version 1.0.0 (31 July 2009)
917      - Windows: add the installation directory to the DLL search path      - Windows: add the installation directory to the DLL search path
918        when loading an editor plugin (solves problems with VST and        when loading an editor plugin (solves problems with VST and
919        gigedit on systems with other GTK versions installed)        gigedit on systems with other GTK versions installed)
920        - updated linuxsampler man page
921    
922    * audio driver:    * audio driver:
923      - removed the nonsense audio channel constraint (which was hard coded to      - removed the nonsense audio channel constraint (which was hard coded to

Legend:
Removed from v.2378  
changed lines
  Added in v.3548

  ViewVC Help
Powered by ViewVC