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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 2431 by schoenebeck, Mon Mar 4 15:12:48 2013 UTC revision 3381 by schoenebeck, Tue Nov 28 15:54:49 2017 UTC
# Line 1  Line 1 
1  Version CVS HEAD (?)  Version SVN trunk (?)
2    
3      * Real-time instrument scripts:
4        - Fixed behavior of built-in NKSP functions change_sustain(),
5          change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
6          and change_cutoff_release().
7    
8    Version 2.1.0 (25 Nov 2017)
9    
10      * SFZ format engine:
11        - added support for <global>, <master> and #define (patch by Alby M)
12        - Removed code duplication in SFZ file loading code.
13        - Added support for sfz extension opcode 'script' which may be used to
14          load real-time instrument script file (NKSP script language).
15        - Implemented opcode set_ccN (initial patch by Giovanni Senatore).
16        - Fixed unintended volume fade-in of voices under certain conditions.
17        - sfz parser: allow missing space between header and opcode
18    
19      * Gigasampler/GigaStudio format engine:
20        - Fixed clicks and pumping noise with Lowpass Turbo filter on very low
21          cutoff settings.
22        - Got rid of resembling an ancient GSt misbehavior which did not pitch at
23          all if an up-pitch of more than 40 semi tones was requested (I don't
24          think there is any stock gig sound that requires this behavior to
25          resemble its original sound).
26        - Added support for controlling whether the individual EGADSR stages may
27          be aborted (as LinuxSampler extension to the original GigaStudio 4
28          format).
29    
30      * general changes:
31        - fixed printf type errors (mostly in debug messages)
32        - use unique_ptr instead of auto_ptr when building with C++11
33        - Added RTAVLTree class which is a real-time safe ordered multi-map, thus
34          allowing to sort data efficiently in real-time safe manner.
35        - RTList class: added methods for moving/inserting elements to arbitrary
36          position within a list.
37        - RTList class: added method fromPtr() for creating an Iterator object from
38          a raw element pointer.
39        - Attempt to partly fix resetting engine channels vs. resetting engine, an
40          overall cleanup of the Reset*(), ConnectAudioDevice(),
41          DisconnectAudioDevice() API methods would still be desirable though,
42          because the current situation is still inconsistent and error prone.
43        - Active voices are now internally grouped to "Note" objects, instead of
44          being directly assigned to a keyboard key. This allows more fine graded
45          processing of voices, which is i.e. required for certain instrument
46          script features.
47        - Fix: Release trigger voices were not spawned on sustain pedal up
48          (CC #64) events.
49        - Fix: Release trigger voices can now also distinguish correctly between
50          note-off and sustain pedal up events.
51        - All engines: Increased ramp speed of volume smoother and pan smoother
52          (while slow rate of crossfade smoother is preserved) to allow quick
53          volume and pan changes by instrument scripts for instance.
54        - gig/sf2/sfz: Fixed aftertouch channel pressure events being processed
55          properly and thus were ignored for certain uses.
56        - Added new C++ API method
57          VirtualMidiDevice::SendChannelPressureToSampler().
58        - windows, 32-bit: fixed potential crashes by making sure the stack in
59          sub threads is 16-byte aligned
60        - fixed numerous compiler warnings
61        - Fixed invalid (note-on) event ID being assigned to new Note objects.
62        - Revised fundamental C++ classes "Thread", "Mutex" and "Condition" which
63          fixes potential undefined behavior.
64        - Fixed Note object leak when triggering notes on keys which did not
65          have a valid sample mapped (fixes bug #252).
66        - Fixed compilation errors when compiling with CONFIG_DEVMODE enabled.
67        - linuxsampler binary fix: option --create-instruments-db ignored
68          subsequent optional argument due to glibc's implementation oddity
69          which expects a "=" sign, but no space between them.
70    
71      * packaging changes:
72        - removed unnecessary dependency to libuuid
73          (originated by libgig's usage of it)
74        - Automake: set environment variable GCC_COLORS=auto to allow GCC to
75          auto detect whether it (sh/c)ould output its messages in color.
76        - Debian: Fixed packaging error about invalid "Source-Version"
77          substitution variable.
78        - Debian: Raised Debian compatibility level to Debian 9 "Stretch".
79        - Debian: Added build dependency to libsqlite3-dev for building
80          linuxsampler with instruments DB support.
81    
82      * Real-time instrument scripts:
83        - Implemented scheduler for delayed MIDI events and for suspended scripts.
84        - Built-in script function "wait()": implemented support for function's
85          "duration-us" argument, thus scripts using this function are now
86          correctly resumed after the requested amount of microseconds.
87        - Built-in script function "play_note()": implemented support for
88          function's "duration-us" argument, thus notes triggered with this
89          argument are now correctly released after the requested amount of
90          microseconds.
91        - Fix: script events were not cleared when engine channel was reset,
92          potentially causing undefined behavior.
93        - Fixed crash which happened when trying to reference an undeclared
94          variable.
95        - Built-in script function "play_note()": Added support for passing
96          special value -1 for "duration-us" argument, which will cause the
97          triggered note to be released once the original note was released.
98        - Instrument script classes now exported with the liblinuxsampler C++ API.
99        - Added new API method ScriptVM::syntaxHighlighting() which provides
100          a convenient syntax highlighting backend for external instrument
101          script editor applications.
102        - Added new C++ API class "ScriptVMFactory".
103        - Extended parser issues to provide not only first line and first
104          column, but also last line and last column of issue (thus marking
105          the precise span of the issue within the source code).
106        - Reload script automatically after being modified by an instrument
107          editor.
108        - NKSP language grammar correction: allow empty event handler bodies
109          like "on note end on".
110        - Implemented built-in script function "change_vol()".
111        - Implemented built-in script function "change_tune()".
112        - Implemented built-in script function "change_pan()".
113        - Implemented built-in script function "change_cutoff()".
114        - Implemented built-in script function "change_reso()".
115        - Implemented built-in script function "event_status()".
116        - Added built-in script constants "$EVENT_STATUS_INACTIVE" and
117          "$EVENT_STATUS_NOTE_QUEUE" both for being used as flags for
118          "event_status()" function.
119        - NKSP language: Added support for bitwise operators ".or.", ".and."
120          and ".not.".
121        - NKSP language scanner: Fixed IDs matching to require at least one
122          character (i.e. when matching function names or variable names).
123        - NKSP language scanner: disabled unusued rules.
124        - Fixed behavior of play_note() and note_off() functions which must
125          be distinguished engine internally from "real" MIDI note on/off
126          events in order to avoid misbehaviors like hanging notes.
127        - Implemented built-in script variable "$KSP_TIMER".
128        - Implemented built-in script variable "$NKSP_REAL_TIMER".
129        - Implemented built-in script variable "$NKSP_PERF_TIMER".
130        - Implemented built-in script variable "$ENGINE_UPTIME".
131        - Implemented built-in script function "inc()".
132        - Implemented built-in script function "dec()".
133        - NKSP language fix: division expressions were evaluated too often.
134        - NKSP language fix: string concatenation operator was right
135          associative instead of left (to right).
136        - NKSP language correction: allow empty statements in entire language
137          (i.e. "if end if").
138        - Implemented built-in script function "stop_wait()".
139        - Implemented built-in script variable "$NI_CALLBACK_ID".
140        - Implemented built-in script variable "$NI_CALLBACK_TYPE".
141        - Implemented built-in script variable "$NKSP_IGNORE_WAIT".
142        - Added support for read-only built-in variables (respectively
143          handled by the script parser).
144        - Added built-in script constant "$NI_CB_TYPE_INIT".
145        - Added built-in script constant "$NI_CB_TYPE_NOTE".
146        - Added built-in script constant "$NI_CB_TYPE_RELEASE".
147        - Added built-in script constant "$NI_CB_TYPE_CONTROLLER".
148        - NKSP Language: Added support for user defined script functions.
149        - Implemented built-in script function "change_attack()".
150        - Implemented built-in script function "change_decay()".
151        - Implemented built-in script function "change_release()".
152        - Fixed all change_*() built-in script functions to apply their
153          synthesis parameter changes immediately in case the respective note
154          was triggered at the same time, instead of scheduling the parameter
155          change, especially because it would cause some parameter types's
156          changes either to be ramped (i.e. change_vol()) or other types even
157          to have not effect at all (i.e. change_attack()).
158        - Implemented built-in script function "sh_left()".
159        - Implemented built-in script function "sh_right()".
160        - Implemented built-in script function "min()".
161        - Implemented built-in script function "max()".
162        - NKSP Fix: "init" event handler was not always executed when a script
163          was loaded.
164        - NKSP built-in wait() script function: abort script execution if
165          a negative or zero wait time was passed as argument (since this is
166          a common indication of a bug either of the script or even of the
167          engine, which could lead to RT instability or even worse).
168        - ScriptVM: Implemented automatic suspension of RT safety
169          threatening scripts.
170        - Provide more user friendly error messages on syntax errors.
171        - Fixed NKSP parser warning "Not a statement" when assigning an
172          initializer list to an array variable.
173        - Implemented built-in script array variable "%ALL_EVENTS".
174        - Implemented built-in script function "in_range()".
175        - Implemented built-in script function "change_amp_lfo_depth()".
176        - Implemented built-in script function "change_amp_lfo_freq()".
177        - Implemented built-in script function "change_pitch_lfo_depth()".
178        - Implemented built-in script function "change_pitch_lfo_freq()".
179        - Implemented built-in script function "change_vol_time()".
180        - Implemented built-in script function "change_tune_time()".
181        - Implemented built-in script function "fade_in()".
182        - Implemented built-in script function "fade_out()".
183        - Fixed acceptance of wrong data type of parameters passed to built-in
184          script functions "change_vol()", "change_tune()", "change_pan()",
185          "change_cutoff()", "change_reso()", "change_attack()", "change_decay()",
186          "change_release()", "change_amp_lfo_depth()", "change_amp_lfo_freq()",
187          "change_pitch_lfo_depth()" and "change_pitch_lfo_freq()".
188        - Added built-in script function "get_event_par()" and implemented some
189          of its possible parameter selections.
190        - Added built-in script function "set_event_par()" and implemented some
191          of its possible parameter selections.
192        - Fixed a bunch of scheduler time related bugs.
193        - Fixed polyphonic variables not being reset to zero after usage.
194        - Built-in "ignore_event()" function: argument is now optional, like with
195          built-in function "ignore_controller()".
196        - Implemented built-in script function "change_velo()".
197        - Implemented built-in script function "change_note()".
198        - Adjusted behavior of "change_vol()" and "change_tune()" to a more
199          intuitive behavior if used in combination with "change_vol_time()" or
200          "change_tune_time()" respectively: now tuning/volume changes are only
201          assigned (without delay) immediately to a new note if the respective
202          timing function has not been called before, otherwise the volume/tuning
203          changes are automatically faded (before, only the event's time stamp was
204          relevant).
205         - Implemented built-in script function "array_equal()".
206         - Implemented built-in script function "search()".
207         - Implemented built-in script function "sort()".
208         - NKSP Fix: Never suspend "init" event handlers.
209         - Implemented built-in script function "same_region()" (currently only
210           available for gig format engine).
211         - Added built-in script constant "$NKSP_LINEAR".
212         - Added built-in script constant "$NKSP_EASE_IN_EASE_OUT".
213         - Implemented built-in script function "change_vol_curve()".
214         - Implemented built-in script function "change_tune_curve()".
215         - built-in "play_note()" function now supports a sample playback start
216           offset with argument 3, where special value -1 means to use the regular
217           sample offset as defined by the instrument file.
218         - Built-in array variable %KEY_DOWN[] is now a read-only variable.
219         - Built-in variable $EVENT_NOTE is now a read-only variable.
220         - Built-in variable $EVENT_VELOCITY is now a read-only variable.
221         - built-in "play_note()" function now accepts -2 for its fourth argument
222           (note duration) which means the life time of the note shall be sticked
223           to the requested note number of argument 1.
224         - Fix: built-in "play_note()" function now returns 0 as result value if
225           -1 was passed for its fourth argument (note duration) and the respective
226           parent note is already gone.
227        - Implemented built-in script function "change_play_pos()".
228        - NKSP language: Added support for user declared const array variables.
229        - NKSP language: Raise parser warning if array variable is accessed with
230          an index that exceeds the array's size.
231        - NKSP language fix: Unknown characters were not handled correctly.
232        - NKSP language: Added support for "synchronized .. end synchronized"
233          code blocks.
234        - Implemented built-in script function "abort()" which allows to abort
235          another script handler by passing its callback ID.
236        - Fixed potential memory access bug and potential undefined behavior of
237          "init" event handlers.
238        - Print a time stamp along to each call of built-in function "message()".
239        - ScriptVM API: Added VMParserContext::preprocessorComments() which allows
240          to retrieve all code blocks filtered out by the preprocessor.
241        - Added built-in script function "fork()".
242        - Added built-in array variable %NKSP_CALLBACK_CHILD_ID[].
243        - Added built-in variable $NKSP_CALLBACK_PARENT_ID.
244        - Fixed potential crash when accessing dynamic built-in array variables.
245        - Added built-in script function "callback_status()".
246        - Added built-in constant $CALLBACK_STATUS_TERMINATED.
247        - Added built-in constant $CALLBACK_STATUS_QUEUE.
248        - Added built-in constant $CALLBACK_STATUS_RUNNING.
249        - Removed max. value limitation of built-in functions "change_attack()",
250          "change_decay()" and "change_release()" to i.e. allow passing 2000000
251          for doubling the respective time.
252        - NKSP script editor syntax highlighting API: Fixed app termination due
253          to a lexer start condition stack underrun.
254        - NKSP preprocessor: Fixed wrong behavior on nested USE_CODE_IF() and
255          USE_CODE_IF_NOT() preprocessor statements.
256        - NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE, which
257          can be set to disable all subsequent built-in "message()" function calls
258          on preprocessor level.
259        - Implemented built-in script function "change_sustain()".
260        - NKSP script editor syntax highlighting API: catch all fatal lexer errors,
261          to avoid the editor app to crash on ill-formed text input.
262        - Added built-in script function "change_pan_time()".
263        - Added built-in script function "change_pan_curve()".
264        - Added built-in script function "change_cutoff_attack()".
265        - Added built-in script function "change_cutoff_decay()".
266        - Added built-in script function "change_cutoff_sustain()".
267        - Added built-in script function "change_cutoff_release()".
268        - Added built-in script function "change_cutoff_lfo_depth()".
269        - Added built-in script function "change_cutoff_lfo_freq()".
270    
271      * Instruments DB:
272        - Fixed memory access bug of general DB access code which lead to
273          undefined behavior.
274        - Cleanup of instruments DB file creation and opening code.
275        - The instrument DB path of linuxsampler's --create-instruments-db argument
276          is now optional, if it is missing, then a default location is used.
277        - Added support for scanning SFZ (.sfz) files.
278        - Added support for scanning Sound Font (.sf2) files.
279        - Fixed undefined DB transaction behavior.
280    
281    Version 2.0.0 (15 July 2015)
282    
283    * packaging changes:    * packaging changes:
284      - fixed building with newer MinGW-w64      - fixed building with newer MinGW-w64
# Line 24  Version CVS HEAD (?) Line 304  Version CVS HEAD (?)
304        LDFLAGS="-Wl,--no-undefined" (#190)        LDFLAGS="-Wl,--no-undefined" (#190)
305      - fixed compilation with Clang 3.2      - fixed compilation with Clang 3.2
306      - removed usage of deprecated Automake variable INCLUDES      - removed usage of deprecated Automake variable INCLUDES
307        - fixed building with C++11
308        - build fix: ChangeFlagRelaxed.h was missing in makefile
309        - build fix: libsndfile compiler flags were missing in some
310          makefiles
311        - fix for building with bison 3.0 (#202)
312        - Mac OS X: added temporary hack allowing to spawn gigedit as callback
313          on the process's main thread
314        - fixed build error on newer MinGW
315        - support building with older jack versions
316        - support building with spaces in vst sdk path
317        - enabled automake 'subdir-objects' option and moved external
318          source references (vst, au, asio) from makefiles to cpp files,
319          in order to get rid of warnings from automake 1.14
320    
321    * general changes:    * general changes:
322      - Refactoring: moved the independent code from      - Refactoring: moved the independent code from
# Line 66  Version CVS HEAD (?) Line 359  Version CVS HEAD (?)
359        series (#182)        series (#182)
360      - added a lock guard class for exception safe mutex handling and      - added a lock guard class for exception safe mutex handling and
361        used it everywhere appropriate        used it everywhere appropriate
362        - Immediately apply scale tuning changes to active voices.
363        - Exposed scale tuning to C++ API (along to the already existing standard
364          SysEx way).
365        - lsatomic.h fixes: seq_cst load and store were suboptimal for x86
366          and broken for ppc64. (Seq_cst loads and stores are actually not
367          used in LS, so the bug wasn't noticable.)
368        - lsatomic.h: added ARMv7 support
369        - Added support for multiple MIDI input ports per sampler channel (and
370          added various new C++ methods for this new feature / design change, old
371          C++ API methods for managing SamplerChannel's MIDI inputs are now marked
372          as deprecated but are still there and should provide full behavior
373          backward compatibility).
374        - AbstractEngine::GSChecksum(): don't allocate memory on the stack (was
375          unsafe and caused compilation error with clang 2.x).
376        - Bugfix: only process the latest MIDI program change event.
377        - Introducing the LSCP shell, which provides convenient control of the
378          sampler from the command line by providing LSCP aware features.
379        - VirtualMidiDevice: Added support for program change.
380        - VirtualMidiDevice: Added support for bank select (MSB & LSB).
381        - VirtualMidiDevice: Added support for pitch bend.
382        - Aftertouch: extended API to explicitly handle channel pressure and
383          polyphonic key pressure events (so far polyphonic pressure was not
384          supported at all, and channel pressure was rerouted as CC128 but not
385          used so far).
386        - Added initial support for real-time instrument scripts. The script VM
387          code is shared by all sampler engine implemementations, however only the
388          gig file format currently provides support for storing instrument scripts
389          (as LinuxSampler extension to the original GigaStudio 4 format).
390    
391    * Gigasampler format engine:    * Gigasampler format engine:
392      - implemented the "round robin keyboard" dimension      - implemented the "round robin keyboard" dimension
# Line 82  Version CVS HEAD (?) Line 403  Version CVS HEAD (?)
403      - Exclusive Groups: don't ever stop voices of the same note,      - Exclusive Groups: don't ever stop voices of the same note,
404        doesn't sound naturally with a drumkit        doesn't sound naturally with a drumkit
405      - fixed EG1 modulation when attack or release is zero      - fixed EG1 modulation when attack or release is zero
406        - Fixed support for 'aftertouch' attenuation controller.
407        - Fixed crash that happened with velocity split sounds under certain
408          conditions (see also previous commit on libgig).
409        - fixed behaviour of filter LFO
410    
411    * SFZ format engine:    * SFZ format engine:
412      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 241  Version CVS HEAD (?) Line 566  Version CVS HEAD (?)
566      - added FLAC support (#191)      - added FLAC support (#191)
567      - sfz parser bugfix: lines starting with whitespace were ignored      - sfz parser bugfix: lines starting with whitespace were ignored
568      - added amplitude opcode      - added amplitude opcode
569        - added support for "#include" instruction
570          (modified patch which was originally posted by Sergey on LS mailing list)
571        - bugfix: generation of velocity curves etc should not be done
572          after each "#include", only after the main file is parsed
573        - bugfix: line numbers in error messages were wrong after "#include"
574        - added support for float and 32 bit sample files
575    
576    * SoundFont format engine:    * SoundFont format engine:
577      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 288  Version CVS HEAD (?) Line 619  Version CVS HEAD (?)
619      - VST: implemented retrieval and switching of programs using the      - VST: implemented retrieval and switching of programs using the
620        sampler's internal MIDI instrument mapping system        sampler's internal MIDI instrument mapping system
621    
622      * Instrument editor interface:
623        - Changed instrument editor plugin interface, providing additional
624          informations like the EngineChannel for which the instrument editor was
625          spawned for. This allows the instrument editors to interact more actively
626          with the sampler.
627    
628    * MIDI driver:    * MIDI driver:
629      - ALSA MIDI driver supports now "NAME" device parameter, for overriding      - ALSA MIDI driver supports now "NAME" device parameter, for overriding
630        the ALSA sequencer client name        the ALSA sequencer client name
# Line 308  Version CVS HEAD (?) Line 645  Version CVS HEAD (?)
645      - Bugfix in VirtualMidiDevice: process note on with velocity 0 as note off.      - Bugfix in VirtualMidiDevice: process note on with velocity 0 as note off.
646      - Implemented missing handling of MIDI "running status".      - Implemented missing handling of MIDI "running status".
647      - CoreMIDI fix: a MIDIPacket can contain more than one event per packet.      - CoreMIDI fix: a MIDIPacket can contain more than one event per packet.
648        - MME bugfix: driver wasn't closed properly
649        - CoreMIDI: automatically connect to all input sources by default (driver
650          parameter "AUTO_BIND").
651        - CoreMIDI: fixed auto bind feature to CoreMIDI ports that go online
652        - CoreMIDI: fixed minor memory leak
653    
654    * audio driver:    * audio driver:
655      - ASIO driver fixes for newer gcc versions (fix from PortAudio)      - ASIO driver fixes for newer gcc versions (fix from PortAudio)
# Line 316  Version CVS HEAD (?) Line 658  Version CVS HEAD (?)
658      - JACK audio: jack_port_get_buffer() was cached and called outside      - JACK audio: jack_port_get_buffer() was cached and called outside
659        RT context.        RT context.
660      - ASIO driver: removed compiler warnings      - ASIO driver: removed compiler warnings
661        - CoreAudio: fixed minor error handling bug
662        - ASIO driver: be more verbose when no ASIO card could be found (fixes #203)
663        - JACK audio: return the JACK server's current sample rate as default value
664          for audio device parameter "SAMPLERATE" (fixes #166).
665    
666    * LSCP server:    * LSCP server:
667      - added support for sending MIDI CC messages via LSCP command      - added support for sending MIDI CC messages via LSCP command
# Line 353  Version CVS HEAD (?) Line 699  Version CVS HEAD (?)
699      - added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",      - added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",
700        "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",        "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",
701        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"
702        - provide comprehensive error messages on LSCP syntax errors
703          (suggesting expected next non-terminal symbols)
704        - Fixed client connection not being closed after network errors.
705    
706      * LSCP shell:
707        - Added support for auto correction of obvious and trivial syntax mistakes.
708        - Added support for auto completion by tab key.
709        - Show currently available auto completion while typing.
710        - Added support for browsing command history with up / down keys.
711        - Show all possible next symbols immediately right to the current command
712          line while typing (no double tab required for this feature, as it would
713          be the case in other shells).
714        - Added support for moving cursor left/right with arrow keys.
715        - Added support for built-in LSCP reference documentation, which will
716          automatically show the relevant LSCP reference section on screen as soon
717          as one specific LSCP command was detected while typing on the command
718          line.
719    
720      * Real-time instrument scripts:
721        - Implemented built-in script array variable %CC.
722        - Implemented built-in script int variable $CC_NUM.
723        - Implemented built-in script int variable $EVENT_NOTE.
724        - Implemented built-in script int variable $EVENT_VELOCITY.
725        - Implemented built-in script constant variable $VCC_MONO_AT.
726        - Implemented built-in script constant variable $VCC_PITCH_BEND.
727        - Implemented execution of script event handler "init".
728        - Implemented execution of script event handler "controller".
729        - Implemented execution of script event handler "note".
730        - Implemented execution of script event handler "release".
731        - Implemented built-in script function "play_note()" (only two of the
732          max. four function arguments are currently implemented yet though).
733        - Implemented built-in script int variable $EVENT_ID.
734        - Implemented built-in script function "ignore_event()"
735        - Implemented built-in script function "ignore_controller()" (may have one
736          or no argument).
737        - Implemented built-in script function "set_controller()".
738        - Added extended script VM for the Gigasampler/GigaStudio format sampler
739          engine, which extends the general instrument script VM with Giga format
740          specific variables and functions.
741        - Giga format scripts: added built-in script int constant variables
742          $GIG_DIM_CHANNEL, $GIG_DIM_LAYER, $GIG_DIM_VELOCITY, $GIG_DIM_AFTERTOUCH,
743          $GIG_DIM_RELEASE, $GIG_DIM_KEYBOARD, $GIG_DIM_ROUNDROBIN, $GIG_DIM_RANDOM,
744          $GIG_DIM_SMARTMIDI, $GIG_DIM_ROUNDROBINKEY, $GIG_DIM_MODWHEEL,
745          $GIG_DIM_BREATH, $GIG_DIM_FOOT, $GIG_DIM_PORTAMENTOTIME, $GIG_DIM_EFFECT1,
746          $GIG_DIM_EFFECT2, $GIG_DIM_GENPURPOSE1, $GIG_DIM_GENPURPOSE2,
747          $GIG_DIM_GENPURPOSE3, $GIG_DIM_GENPURPOSE4, $GIG_DIM_SUSTAIN,
748          $GIG_DIM_PORTAMENTO, $GIG_DIM_SOSTENUTO, $GIG_DIM_SOFT,
749          $GIG_DIM_GENPURPOSE5, $GIG_DIM_GENPURPOSE6, $GIG_DIM_GENPURPOSE7,
750          $GIG_DIM_GENPURPOSE8, $GIG_DIM_EFFECT1DEPTH, $GIG_DIM_EFFECT2DEPTH,
751          $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH.
752        - Giga format scripts: Implemented built-in script function
753          "gig_set_dim_zone(event_id, dimension, zone)".
754        - Implemented built-in script int array variable %KEY_DOWN.
755        - Implemented built-in script function "abs()".
756        - Implemented built-in script function "random()".
757        - Implemented built-in script function "num_elements()".
758        - Implemented built-in script function "note_off()".
759        - Implemented built-in script function "set_event_mark()".
760        - Implemented built-in script function "delete_event_mark()".
761        - Implemented built-in script function "by_marks()".
762        - Added built-in script int const variables $MARK_1 to $MARK_28.
763        - Built-in script functions "ignore_event()", "note_off()" and
764          "gig_set_dim_zone()" now also accept an array of event IDs as argument
765          (i.e. return value of new script function "by_marks()").
766        - Pass/preserve polyphonic variable data from respective "note" event
767          handler to "release" event handler.
768        - Fixed crash when using built-in script function "by_marks()".
769    
770    * Bug fixes:    * Bug fixes:
771      - 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 398  Version CVS HEAD (?) Line 811  Version CVS HEAD (?)
811        (labelled "Disk stream not available in time")        (labelled "Disk stream not available in time")
812      - Update effects on sample rate & period size changes (to avoid      - Update effects on sample rate & period size changes (to avoid
813        crashes and noise on such transitions).        crashes and noise on such transitions).
814        - ignore missing LADSPA paths without ignoring valid LADSPA paths
815          (fixes #208)
816        - Fixed bug in LSCP grammar definition which caused a statement like
817          "GET SERVER INFOasdf\n" to be accepted as valid statement (was so far
818          practically irrelevant, however it caused problems with the new LSCP
819          shell's auto completion feature).
820        - Fixed MIDI program change messages being ignored if quickly executed
821          after each other (fixes #231).
822    
823  Version 1.0.0 (31 July 2009)  Version 1.0.0 (31 July 2009)
824    
# Line 462  Version 1.0.0 (31 July 2009) Line 883  Version 1.0.0 (31 July 2009)
883      - Windows: add the installation directory to the DLL search path      - Windows: add the installation directory to the DLL search path
884        when loading an editor plugin (solves problems with VST and        when loading an editor plugin (solves problems with VST and
885        gigedit on systems with other GTK versions installed)        gigedit on systems with other GTK versions installed)
886        - updated linuxsampler man page
887    
888    * audio driver:    * audio driver:
889      - 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.2431  
changed lines
  Added in v.3381

  ViewVC Help
Powered by ViewVC