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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 2420 by persson, Sun Feb 24 08:59:25 2013 UTC revision 3561 by schoenebeck, Fri Aug 23 11:44:00 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        - Require C++11 compiler support.
6        - Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used
7          for checking in configure for C++11 support (as mandatory
8          requirement) and automatically adds compiler argument if required
9          (e.g. -std=C++11).
10    
11      * Real-time instrument scripts:
12        - Added method ScriptVM::setExitResultEnabled() which allows to
13          explicitly enable the built-in exit() function to optionally accept
14          one function argument; the value of the passed exit() function
15          argument will then become available by calling
16          VMExecContext::exitResult() after script execution.
17        - 64 bit support for NKSP integer scripts variables (declare $foo).
18        - Variable names, function names and preprocessor condition names must start
19          with a regular character (a-z or A-Z); starting them with a digit or
20          underscore is not allowed.
21        - NKSP parser fix: equal comparison operator "=" and not equal comparison
22          operator "#" must only accept integer operands.
23        - NKSP language: Implemented support for standard units like Hertz, seconds,
24          Bel including support for metric unit prefixes; so one can now e.g.
25          conveniently use numbers in scripts like "5us" meaning "5 microseconds",
26          or e.g. "12kHz" meaning "12 kilo Hertz", or e.g. "-14mdB" meaning
27          "minus 14 Millidecibel", or e.g. "28c" meaning "28 cents" (for tuning).
28        - NKSP language: Introduced "final" operator "!" which is specifically
29          intended for synthesis parameter values to denote that the synthesis
30          parameter value is intended to be the "final" value for that synthesis
31          parameter that should explicitly be used by the engine and thus causing
32          the sampler engine to ignore all other modulation sources for the same
33          synthesis parameter (like e.g. LFO, EG); by simply prefixing a value,
34          variable or formula with this new "!" operator the expression is marked as
35          being "final".
36    
37      * test cases:
38        - Fixed compiler errors in test cases.
39        - Updated README for how to compile & run test cases.
40        - Updated test case
41          MutexTest::testDoubleLockStillBlocksConcurrentThread() to latest
42          expected behaviour of the Mutex class implementation (recursive
43          mutex type).
44        - Added test cases for NKSP core language aspects and core built-in
45          functions.
46        - Fixed thread tests segfaulting on Linux.
47    
48    Version 2.1.1 (27 Jul 2019)
49    
50      * Real-time instrument scripts:
51        - Fixed behavior of built-in NKSP functions change_sustain(),
52          change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
53          and change_cutoff_release().
54    
55      * general changes:
56        - Only play release trigger samples on sustain pedal up if this behaviour
57          was explicitly requested by the instrument (otherwise only on note-off).
58        - Fixed compiler warnings.
59        - Fixed compilation error when cross-compiling to Mac.
60        - FX Sends: Provide more useful error messages on routing problems
61          (see bug #169).
62        - LSCP doc: Be more clear describing the two distinct approaches
63          of using external vs. internal effects (see bug #169).
64        - "optional" class: Fixed comparison operators.
65    
66      * Gigasampler/GigaStudio format engine:
67        - Format extension: If requested by instrument then don't play release
68          trigger sample on note-off events.
69    
70      * SFZ format engine:
71        - Fixed memory leak when releasing samples
72          (fixes bug #307, patch by Jacek Roszkowski)
73        - Fixed potential crash when a sample is shared by more than one region
74          (fixes bug #308, patch by Jacek Roszkowski).
75        - Opcode 'sample': Added support for built-in sample '*silence'
76          (fixes bug #310, patch by Jacek Roszkowski).
77    
78    Version 2.1.0 (25 Nov 2017)
79    
80      * SFZ format engine:
81        - added support for <global>, <master> and #define (patch by Alby M)
82        - Removed code duplication in SFZ file loading code.
83        - Added support for sfz extension opcode 'script' which may be used to
84          load real-time instrument script file (NKSP script language).
85        - Implemented opcode set_ccN (initial patch by Giovanni Senatore).
86        - Fixed unintended volume fade-in of voices under certain conditions.
87        - sfz parser: allow missing space between header and opcode
88    
89      * Gigasampler/GigaStudio format engine:
90        - Fixed clicks and pumping noise with Lowpass Turbo filter on very low
91          cutoff settings.
92        - Got rid of resembling an ancient GSt misbehavior which did not pitch at
93          all if an up-pitch of more than 40 semi tones was requested (I don't
94          think there is any stock gig sound that requires this behavior to
95          resemble its original sound).
96        - Added support for controlling whether the individual EGADSR stages may
97          be aborted (as LinuxSampler extension to the original GigaStudio 4
98          format).
99    
100      * general changes:
101        - fixed printf type errors (mostly in debug messages)
102        - use unique_ptr instead of auto_ptr when building with C++11
103        - Added RTAVLTree class which is a real-time safe ordered multi-map, thus
104          allowing to sort data efficiently in real-time safe manner.
105        - RTList class: added methods for moving/inserting elements to arbitrary
106          position within a list.
107        - RTList class: added method fromPtr() for creating an Iterator object from
108          a raw element pointer.
109        - Attempt to partly fix resetting engine channels vs. resetting engine, an
110          overall cleanup of the Reset*(), ConnectAudioDevice(),
111          DisconnectAudioDevice() API methods would still be desirable though,
112          because the current situation is still inconsistent and error prone.
113        - Active voices are now internally grouped to "Note" objects, instead of
114          being directly assigned to a keyboard key. This allows more fine graded
115          processing of voices, which is i.e. required for certain instrument
116          script features.
117        - Fix: Release trigger voices were not spawned on sustain pedal up
118          (CC #64) events.
119        - Fix: Release trigger voices can now also distinguish correctly between
120          note-off and sustain pedal up events.
121        - All engines: Increased ramp speed of volume smoother and pan smoother
122          (while slow rate of crossfade smoother is preserved) to allow quick
123          volume and pan changes by instrument scripts for instance.
124        - gig/sf2/sfz: Fixed aftertouch channel pressure events being processed
125          properly and thus were ignored for certain uses.
126        - Added new C++ API method
127          VirtualMidiDevice::SendChannelPressureToSampler().
128        - windows, 32-bit: fixed potential crashes by making sure the stack in
129          sub threads is 16-byte aligned
130        - fixed numerous compiler warnings
131        - Fixed invalid (note-on) event ID being assigned to new Note objects.
132        - Revised fundamental C++ classes "Thread", "Mutex" and "Condition" which
133          fixes potential undefined behavior.
134        - Fixed Note object leak when triggering notes on keys which did not
135          have a valid sample mapped (fixes bug #252).
136        - Fixed compilation errors when compiling with CONFIG_DEVMODE enabled.
137        - linuxsampler binary fix: option --create-instruments-db ignored
138          subsequent optional argument due to glibc's implementation oddity
139          which expects a "=" sign, but no space between them.
140    
141      * packaging changes:
142        - removed unnecessary dependency to libuuid
143          (originated by libgig's usage of it)
144        - Automake: set environment variable GCC_COLORS=auto to allow GCC to
145          auto detect whether it (sh/c)ould output its messages in color.
146        - Debian: Fixed packaging error about invalid "Source-Version"
147          substitution variable.
148        - Debian: Raised Debian compatibility level to Debian 9 "Stretch".
149        - Debian: Added build dependency to libsqlite3-dev for building
150          linuxsampler with instruments DB support.
151    
152      * Real-time instrument scripts:
153        - Implemented scheduler for delayed MIDI events and for suspended scripts.
154        - Built-in script function "wait()": implemented support for function's
155          "duration-us" argument, thus scripts using this function are now
156          correctly resumed after the requested amount of microseconds.
157        - Built-in script function "play_note()": implemented support for
158          function's "duration-us" argument, thus notes triggered with this
159          argument are now correctly released after the requested amount of
160          microseconds.
161        - Fix: script events were not cleared when engine channel was reset,
162          potentially causing undefined behavior.
163        - Fixed crash which happened when trying to reference an undeclared
164          variable.
165        - Built-in script function "play_note()": Added support for passing
166          special value -1 for "duration-us" argument, which will cause the
167          triggered note to be released once the original note was released.
168        - Instrument script classes now exported with the liblinuxsampler C++ API.
169        - Added new API method ScriptVM::syntaxHighlighting() which provides
170          a convenient syntax highlighting backend for external instrument
171          script editor applications.
172        - Added new C++ API class "ScriptVMFactory".
173        - Extended parser issues to provide not only first line and first
174          column, but also last line and last column of issue (thus marking
175          the precise span of the issue within the source code).
176        - Reload script automatically after being modified by an instrument
177          editor.
178        - NKSP language grammar correction: allow empty event handler bodies
179          like "on note end on".
180        - Implemented built-in script function "change_vol()".
181        - Implemented built-in script function "change_tune()".
182        - Implemented built-in script function "change_pan()".
183        - Implemented built-in script function "change_cutoff()".
184        - Implemented built-in script function "change_reso()".
185        - Implemented built-in script function "event_status()".
186        - Added built-in script constants "$EVENT_STATUS_INACTIVE" and
187          "$EVENT_STATUS_NOTE_QUEUE" both for being used as flags for
188          "event_status()" function.
189        - NKSP language: Added support for bitwise operators ".or.", ".and."
190          and ".not.".
191        - NKSP language scanner: Fixed IDs matching to require at least one
192          character (i.e. when matching function names or variable names).
193        - NKSP language scanner: disabled unusued rules.
194        - Fixed behavior of play_note() and note_off() functions which must
195          be distinguished engine internally from "real" MIDI note on/off
196          events in order to avoid misbehaviors like hanging notes.
197        - Implemented built-in script variable "$KSP_TIMER".
198        - Implemented built-in script variable "$NKSP_REAL_TIMER".
199        - Implemented built-in script variable "$NKSP_PERF_TIMER".
200        - Implemented built-in script variable "$ENGINE_UPTIME".
201        - Implemented built-in script function "inc()".
202        - Implemented built-in script function "dec()".
203        - NKSP language fix: division expressions were evaluated too often.
204        - NKSP language fix: string concatenation operator was right
205          associative instead of left (to right).
206        - NKSP language correction: allow empty statements in entire language
207          (i.e. "if end if").
208        - Implemented built-in script function "stop_wait()".
209        - Implemented built-in script variable "$NI_CALLBACK_ID".
210        - Implemented built-in script variable "$NI_CALLBACK_TYPE".
211        - Implemented built-in script variable "$NKSP_IGNORE_WAIT".
212        - Added support for read-only built-in variables (respectively
213          handled by the script parser).
214        - Added built-in script constant "$NI_CB_TYPE_INIT".
215        - Added built-in script constant "$NI_CB_TYPE_NOTE".
216        - Added built-in script constant "$NI_CB_TYPE_RELEASE".
217        - Added built-in script constant "$NI_CB_TYPE_CONTROLLER".
218        - NKSP Language: Added support for user defined script functions.
219        - Implemented built-in script function "change_attack()".
220        - Implemented built-in script function "change_decay()".
221        - Implemented built-in script function "change_release()".
222        - Fixed all change_*() built-in script functions to apply their
223          synthesis parameter changes immediately in case the respective note
224          was triggered at the same time, instead of scheduling the parameter
225          change, especially because it would cause some parameter types's
226          changes either to be ramped (i.e. change_vol()) or other types even
227          to have not effect at all (i.e. change_attack()).
228        - Implemented built-in script function "sh_left()".
229        - Implemented built-in script function "sh_right()".
230        - Implemented built-in script function "min()".
231        - Implemented built-in script function "max()".
232        - NKSP Fix: "init" event handler was not always executed when a script
233          was loaded.
234        - NKSP built-in wait() script function: abort script execution if
235          a negative or zero wait time was passed as argument (since this is
236          a common indication of a bug either of the script or even of the
237          engine, which could lead to RT instability or even worse).
238        - ScriptVM: Implemented automatic suspension of RT safety
239          threatening scripts.
240        - Provide more user friendly error messages on syntax errors.
241        - Fixed NKSP parser warning "Not a statement" when assigning an
242          initializer list to an array variable.
243        - Implemented built-in script array variable "%ALL_EVENTS".
244        - Implemented built-in script function "in_range()".
245        - Implemented built-in script function "change_amp_lfo_depth()".
246        - Implemented built-in script function "change_amp_lfo_freq()".
247        - Implemented built-in script function "change_pitch_lfo_depth()".
248        - Implemented built-in script function "change_pitch_lfo_freq()".
249        - Implemented built-in script function "change_vol_time()".
250        - Implemented built-in script function "change_tune_time()".
251        - Implemented built-in script function "fade_in()".
252        - Implemented built-in script function "fade_out()".
253        - Fixed acceptance of wrong data type of parameters passed to built-in
254          script functions "change_vol()", "change_tune()", "change_pan()",
255          "change_cutoff()", "change_reso()", "change_attack()", "change_decay()",
256          "change_release()", "change_amp_lfo_depth()", "change_amp_lfo_freq()",
257          "change_pitch_lfo_depth()" and "change_pitch_lfo_freq()".
258        - Added built-in script function "get_event_par()" and implemented some
259          of its possible parameter selections.
260        - Added built-in script function "set_event_par()" and implemented some
261          of its possible parameter selections.
262        - Fixed a bunch of scheduler time related bugs.
263        - Fixed polyphonic variables not being reset to zero after usage.
264        - Built-in "ignore_event()" function: argument is now optional, like with
265          built-in function "ignore_controller()".
266        - Implemented built-in script function "change_velo()".
267        - Implemented built-in script function "change_note()".
268        - Adjusted behavior of "change_vol()" and "change_tune()" to a more
269          intuitive behavior if used in combination with "change_vol_time()" or
270          "change_tune_time()" respectively: now tuning/volume changes are only
271          assigned (without delay) immediately to a new note if the respective
272          timing function has not been called before, otherwise the volume/tuning
273          changes are automatically faded (before, only the event's time stamp was
274          relevant).
275         - Implemented built-in script function "array_equal()".
276         - Implemented built-in script function "search()".
277         - Implemented built-in script function "sort()".
278         - NKSP Fix: Never suspend "init" event handlers.
279         - Implemented built-in script function "same_region()" (currently only
280           available for gig format engine).
281         - Added built-in script constant "$NKSP_LINEAR".
282         - Added built-in script constant "$NKSP_EASE_IN_EASE_OUT".
283         - Implemented built-in script function "change_vol_curve()".
284         - Implemented built-in script function "change_tune_curve()".
285         - built-in "play_note()" function now supports a sample playback start
286           offset with argument 3, where special value -1 means to use the regular
287           sample offset as defined by the instrument file.
288         - Built-in array variable %KEY_DOWN[] is now a read-only variable.
289         - Built-in variable $EVENT_NOTE is now a read-only variable.
290         - Built-in variable $EVENT_VELOCITY is now a read-only variable.
291         - built-in "play_note()" function now accepts -2 for its fourth argument
292           (note duration) which means the life time of the note shall be sticked
293           to the requested note number of argument 1.
294         - Fix: built-in "play_note()" function now returns 0 as result value if
295           -1 was passed for its fourth argument (note duration) and the respective
296           parent note is already gone.
297        - Implemented built-in script function "change_play_pos()".
298        - NKSP language: Added support for user declared const array variables.
299        - NKSP language: Raise parser warning if array variable is accessed with
300          an index that exceeds the array's size.
301        - NKSP language fix: Unknown characters were not handled correctly.
302        - NKSP language: Added support for "synchronized .. end synchronized"
303          code blocks.
304        - Implemented built-in script function "abort()" which allows to abort
305          another script handler by passing its callback ID.
306        - Fixed potential memory access bug and potential undefined behavior of
307          "init" event handlers.
308        - Print a time stamp along to each call of built-in function "message()".
309        - ScriptVM API: Added VMParserContext::preprocessorComments() which allows
310          to retrieve all code blocks filtered out by the preprocessor.
311        - Added built-in script function "fork()".
312        - Added built-in array variable %NKSP_CALLBACK_CHILD_ID[].
313        - Added built-in variable $NKSP_CALLBACK_PARENT_ID.
314        - Fixed potential crash when accessing dynamic built-in array variables.
315        - Added built-in script function "callback_status()".
316        - Added built-in constant $CALLBACK_STATUS_TERMINATED.
317        - Added built-in constant $CALLBACK_STATUS_QUEUE.
318        - Added built-in constant $CALLBACK_STATUS_RUNNING.
319        - Removed max. value limitation of built-in functions "change_attack()",
320          "change_decay()" and "change_release()" to i.e. allow passing 2000000
321          for doubling the respective time.
322        - NKSP script editor syntax highlighting API: Fixed app termination due
323          to a lexer start condition stack underrun.
324        - NKSP preprocessor: Fixed wrong behavior on nested USE_CODE_IF() and
325          USE_CODE_IF_NOT() preprocessor statements.
326        - NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE, which
327          can be set to disable all subsequent built-in "message()" function calls
328          on preprocessor level.
329        - Implemented built-in script function "change_sustain()".
330        - NKSP script editor syntax highlighting API: catch all fatal lexer errors,
331          to avoid the editor app to crash on ill-formed text input.
332        - Added built-in script function "change_pan_time()".
333        - Added built-in script function "change_pan_curve()".
334        - Added built-in script function "change_cutoff_attack()".
335        - Added built-in script function "change_cutoff_decay()".
336        - Added built-in script function "change_cutoff_sustain()".
337        - Added built-in script function "change_cutoff_release()".
338        - Added built-in script function "change_cutoff_lfo_depth()".
339        - Added built-in script function "change_cutoff_lfo_freq()".
340    
341      * Instruments DB:
342        - Fixed memory access bug of general DB access code which lead to
343          undefined behavior.
344        - Cleanup of instruments DB file creation and opening code.
345        - The instrument DB path of linuxsampler's --create-instruments-db argument
346          is now optional, if it is missing, then a default location is used.
347        - Added support for scanning SFZ (.sfz) files.
348        - Added support for scanning Sound Font (.sf2) files.
349        - Fixed undefined DB transaction behavior.
350    
351    Version 2.0.0 (15 July 2015)
352    
353    * packaging changes:    * packaging changes:
354      - fixed building with newer MinGW-w64      - fixed building with newer MinGW-w64
# Line 24  Version CVS HEAD (?) Line 374  Version CVS HEAD (?)
374        LDFLAGS="-Wl,--no-undefined" (#190)        LDFLAGS="-Wl,--no-undefined" (#190)
375      - fixed compilation with Clang 3.2      - fixed compilation with Clang 3.2
376      - removed usage of deprecated Automake variable INCLUDES      - removed usage of deprecated Automake variable INCLUDES
377        - fixed building with C++11
378        - build fix: ChangeFlagRelaxed.h was missing in makefile
379        - build fix: libsndfile compiler flags were missing in some
380          makefiles
381        - fix for building with bison 3.0 (#202)
382        - Mac OS X: added temporary hack allowing to spawn gigedit as callback
383          on the process's main thread
384        - fixed build error on newer MinGW
385        - support building with older jack versions
386        - support building with spaces in vst sdk path
387        - enabled automake 'subdir-objects' option and moved external
388          source references (vst, au, asio) from makefiles to cpp files,
389          in order to get rid of warnings from automake 1.14
390    
391    * general changes:    * general changes:
392      - Refactoring: moved the independent code from      - Refactoring: moved the independent code from
# Line 64  Version CVS HEAD (?) Line 427  Version CVS HEAD (?)
427      - all engines: add pan CC value to instrument pan parameter before      - all engines: add pan CC value to instrument pan parameter before
428        applying panning, instead of using two separate pan functions in        applying panning, instead of using two separate pan functions in
429        series (#182)        series (#182)
430        - added a lock guard class for exception safe mutex handling and
431          used it everywhere appropriate
432        - Immediately apply scale tuning changes to active voices.
433        - Exposed scale tuning to C++ API (along to the already existing standard
434          SysEx way).
435        - lsatomic.h fixes: seq_cst load and store were suboptimal for x86
436          and broken for ppc64. (Seq_cst loads and stores are actually not
437          used in LS, so the bug wasn't noticable.)
438        - lsatomic.h: added ARMv7 support
439        - Added support for multiple MIDI input ports per sampler channel (and
440          added various new C++ methods for this new feature / design change, old
441          C++ API methods for managing SamplerChannel's MIDI inputs are now marked
442          as deprecated but are still there and should provide full behavior
443          backward compatibility).
444        - AbstractEngine::GSChecksum(): don't allocate memory on the stack (was
445          unsafe and caused compilation error with clang 2.x).
446        - Bugfix: only process the latest MIDI program change event.
447        - Introducing the LSCP shell, which provides convenient control of the
448          sampler from the command line by providing LSCP aware features.
449        - VirtualMidiDevice: Added support for program change.
450        - VirtualMidiDevice: Added support for bank select (MSB & LSB).
451        - VirtualMidiDevice: Added support for pitch bend.
452        - Aftertouch: extended API to explicitly handle channel pressure and
453          polyphonic key pressure events (so far polyphonic pressure was not
454          supported at all, and channel pressure was rerouted as CC128 but not
455          used so far).
456        - Added initial support for real-time instrument scripts. The script VM
457          code is shared by all sampler engine implemementations, however only the
458          gig file format currently provides support for storing instrument scripts
459          (as LinuxSampler extension to the original GigaStudio 4 format).
460    
461    * Gigasampler format engine:    * Gigasampler format engine:
462      - implemented the "round robin keyboard" dimension      - implemented the "round robin keyboard" dimension
# Line 80  Version CVS HEAD (?) Line 473  Version CVS HEAD (?)
473      - Exclusive Groups: don't ever stop voices of the same note,      - Exclusive Groups: don't ever stop voices of the same note,
474        doesn't sound naturally with a drumkit        doesn't sound naturally with a drumkit
475      - fixed EG1 modulation when attack or release is zero      - fixed EG1 modulation when attack or release is zero
476        - Fixed support for 'aftertouch' attenuation controller.
477        - Fixed crash that happened with velocity split sounds under certain
478          conditions (see also previous commit on libgig).
479        - fixed behaviour of filter LFO
480    
481    * SFZ format engine:    * SFZ format engine:
482      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 239  Version CVS HEAD (?) Line 636  Version CVS HEAD (?)
636      - added FLAC support (#191)      - added FLAC support (#191)
637      - sfz parser bugfix: lines starting with whitespace were ignored      - sfz parser bugfix: lines starting with whitespace were ignored
638      - added amplitude opcode      - added amplitude opcode
639        - added support for "#include" instruction
640          (modified patch which was originally posted by Sergey on LS mailing list)
641        - bugfix: generation of velocity curves etc should not be done
642          after each "#include", only after the main file is parsed
643        - bugfix: line numbers in error messages were wrong after "#include"
644        - added support for float and 32 bit sample files
645    
646    * SoundFont format engine:    * SoundFont format engine:
647      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 286  Version CVS HEAD (?) Line 689  Version CVS HEAD (?)
689      - VST: implemented retrieval and switching of programs using the      - VST: implemented retrieval and switching of programs using the
690        sampler's internal MIDI instrument mapping system        sampler's internal MIDI instrument mapping system
691    
692      * Instrument editor interface:
693        - Changed instrument editor plugin interface, providing additional
694          informations like the EngineChannel for which the instrument editor was
695          spawned for. This allows the instrument editors to interact more actively
696          with the sampler.
697    
698    * MIDI driver:    * MIDI driver:
699      - ALSA MIDI driver supports now "NAME" device parameter, for overriding      - ALSA MIDI driver supports now "NAME" device parameter, for overriding
700        the ALSA sequencer client name        the ALSA sequencer client name
# Line 304  Version CVS HEAD (?) Line 713  Version CVS HEAD (?)
713      - Fixed variable underflow in VirtualMidiDevice, which caused graphical      - Fixed variable underflow in VirtualMidiDevice, which caused graphical
714        virtual keyboards in frontends / instrument editors being stuck.        virtual keyboards in frontends / instrument editors being stuck.
715      - Bugfix in VirtualMidiDevice: process note on with velocity 0 as note off.      - Bugfix in VirtualMidiDevice: process note on with velocity 0 as note off.
716        - Implemented missing handling of MIDI "running status".
717        - CoreMIDI fix: a MIDIPacket can contain more than one event per packet.
718        - MME bugfix: driver wasn't closed properly
719        - CoreMIDI: automatically connect to all input sources by default (driver
720          parameter "AUTO_BIND").
721        - CoreMIDI: fixed auto bind feature to CoreMIDI ports that go online
722        - CoreMIDI: fixed minor memory leak
723    
724    * audio driver:    * audio driver:
725      - ASIO driver fixes for newer gcc versions (fix from PortAudio)      - ASIO driver fixes for newer gcc versions (fix from PortAudio)
# Line 312  Version CVS HEAD (?) Line 728  Version CVS HEAD (?)
728      - JACK audio: jack_port_get_buffer() was cached and called outside      - JACK audio: jack_port_get_buffer() was cached and called outside
729        RT context.        RT context.
730      - ASIO driver: removed compiler warnings      - ASIO driver: removed compiler warnings
731        - CoreAudio: fixed minor error handling bug
732        - ASIO driver: be more verbose when no ASIO card could be found (fixes #203)
733        - JACK audio: return the JACK server's current sample rate as default value
734          for audio device parameter "SAMPLERATE" (fixes #166).
735    
736    * LSCP server:    * LSCP server:
737      - added support for sending MIDI CC messages via LSCP command      - added support for sending MIDI CC messages via LSCP command
# Line 349  Version CVS HEAD (?) Line 769  Version CVS HEAD (?)
769      - added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",      - added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",
770        "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",        "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",
771        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"
772        - provide comprehensive error messages on LSCP syntax errors
773          (suggesting expected next non-terminal symbols)
774        - Fixed client connection not being closed after network errors.
775    
776      * LSCP shell:
777        - Added support for auto correction of obvious and trivial syntax mistakes.
778        - Added support for auto completion by tab key.
779        - Show currently available auto completion while typing.
780        - Added support for browsing command history with up / down keys.
781        - Show all possible next symbols immediately right to the current command
782          line while typing (no double tab required for this feature, as it would
783          be the case in other shells).
784        - Added support for moving cursor left/right with arrow keys.
785        - Added support for built-in LSCP reference documentation, which will
786          automatically show the relevant LSCP reference section on screen as soon
787          as one specific LSCP command was detected while typing on the command
788          line.
789    
790      * Real-time instrument scripts:
791        - Implemented built-in script array variable %CC.
792        - Implemented built-in script int variable $CC_NUM.
793        - Implemented built-in script int variable $EVENT_NOTE.
794        - Implemented built-in script int variable $EVENT_VELOCITY.
795        - Implemented built-in script constant variable $VCC_MONO_AT.
796        - Implemented built-in script constant variable $VCC_PITCH_BEND.
797        - Implemented execution of script event handler "init".
798        - Implemented execution of script event handler "controller".
799        - Implemented execution of script event handler "note".
800        - Implemented execution of script event handler "release".
801        - Implemented built-in script function "play_note()" (only two of the
802          max. four function arguments are currently implemented yet though).
803        - Implemented built-in script int variable $EVENT_ID.
804        - Implemented built-in script function "ignore_event()"
805        - Implemented built-in script function "ignore_controller()" (may have one
806          or no argument).
807        - Implemented built-in script function "set_controller()".
808        - Added extended script VM for the Gigasampler/GigaStudio format sampler
809          engine, which extends the general instrument script VM with Giga format
810          specific variables and functions.
811        - Giga format scripts: added built-in script int constant variables
812          $GIG_DIM_CHANNEL, $GIG_DIM_LAYER, $GIG_DIM_VELOCITY, $GIG_DIM_AFTERTOUCH,
813          $GIG_DIM_RELEASE, $GIG_DIM_KEYBOARD, $GIG_DIM_ROUNDROBIN, $GIG_DIM_RANDOM,
814          $GIG_DIM_SMARTMIDI, $GIG_DIM_ROUNDROBINKEY, $GIG_DIM_MODWHEEL,
815          $GIG_DIM_BREATH, $GIG_DIM_FOOT, $GIG_DIM_PORTAMENTOTIME, $GIG_DIM_EFFECT1,
816          $GIG_DIM_EFFECT2, $GIG_DIM_GENPURPOSE1, $GIG_DIM_GENPURPOSE2,
817          $GIG_DIM_GENPURPOSE3, $GIG_DIM_GENPURPOSE4, $GIG_DIM_SUSTAIN,
818          $GIG_DIM_PORTAMENTO, $GIG_DIM_SOSTENUTO, $GIG_DIM_SOFT,
819          $GIG_DIM_GENPURPOSE5, $GIG_DIM_GENPURPOSE6, $GIG_DIM_GENPURPOSE7,
820          $GIG_DIM_GENPURPOSE8, $GIG_DIM_EFFECT1DEPTH, $GIG_DIM_EFFECT2DEPTH,
821          $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH.
822        - Giga format scripts: Implemented built-in script function
823          "gig_set_dim_zone(event_id, dimension, zone)".
824        - Implemented built-in script int array variable %KEY_DOWN.
825        - Implemented built-in script function "abs()".
826        - Implemented built-in script function "random()".
827        - Implemented built-in script function "num_elements()".
828        - Implemented built-in script function "note_off()".
829        - Implemented built-in script function "set_event_mark()".
830        - Implemented built-in script function "delete_event_mark()".
831        - Implemented built-in script function "by_marks()".
832        - Added built-in script int const variables $MARK_1 to $MARK_28.
833        - Built-in script functions "ignore_event()", "note_off()" and
834          "gig_set_dim_zone()" now also accept an array of event IDs as argument
835          (i.e. return value of new script function "by_marks()").
836        - Pass/preserve polyphonic variable data from respective "note" event
837          handler to "release" event handler.
838        - Fixed crash when using built-in script function "by_marks()".
839    
840    * Bug fixes:    * Bug fixes:
841      - 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 394  Version CVS HEAD (?) Line 881  Version CVS HEAD (?)
881        (labelled "Disk stream not available in time")        (labelled "Disk stream not available in time")
882      - Update effects on sample rate & period size changes (to avoid      - Update effects on sample rate & period size changes (to avoid
883        crashes and noise on such transitions).        crashes and noise on such transitions).
884        - ignore missing LADSPA paths without ignoring valid LADSPA paths
885          (fixes #208)
886        - Fixed bug in LSCP grammar definition which caused a statement like
887          "GET SERVER INFOasdf\n" to be accepted as valid statement (was so far
888          practically irrelevant, however it caused problems with the new LSCP
889          shell's auto completion feature).
890        - Fixed MIDI program change messages being ignored if quickly executed
891          after each other (fixes #231).
892    
893  Version 1.0.0 (31 July 2009)  Version 1.0.0 (31 July 2009)
894    
# Line 458  Version 1.0.0 (31 July 2009) Line 953  Version 1.0.0 (31 July 2009)
953      - Windows: add the installation directory to the DLL search path      - Windows: add the installation directory to the DLL search path
954        when loading an editor plugin (solves problems with VST and        when loading an editor plugin (solves problems with VST and
955        gigedit on systems with other GTK versions installed)        gigedit on systems with other GTK versions installed)
956        - updated linuxsampler man page
957    
958    * audio driver:    * audio driver:
959      - 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.2420  
changed lines
  Added in v.3561

  ViewVC Help
Powered by ViewVC