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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 2568 by schoenebeck, Tue May 20 14:53:06 2014 UTC revision 3573 by schoenebeck, Tue Aug 27 21:36:53 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        - NKSP script editor API: Added support for detecting standard unit tokens
37          and their potential metric prefix token.
38        - NKSP language: Added support for NKSP real number literals and
39          arithmetic operations on them (e.g. "(3.9 + 2.9) / 12.3 - 42.0").
40        - NKSP language: Added support for NKSP real number (floating point) script
41          variables (declare ~foo).
42        - NKSP language: Added support for NKSP real number (floating point) array
43          script variables (declare ?foo[]).
44        - Built-in script function "message()" accepts now real number argument as
45          well.
46        - Added built-in script function "real_to_int()" and its short hand form
47          "int()" for casting from real number to integer in NKSP scripts.
48        - Added built-in script function "int_to_real()" and its short hand form
49          "real()" for casting from integer to real number in NKSP scripts.
50    
51      * test cases:
52        - Fixed compiler errors in test cases.
53        - Updated README for how to compile & run test cases.
54        - Updated test case
55          MutexTest::testDoubleLockStillBlocksConcurrentThread() to latest
56          expected behaviour of the Mutex class implementation (recursive
57          mutex type).
58        - Added test cases for NKSP core language aspects and core built-in
59          functions.
60        - Fixed thread tests segfaulting on Linux.
61    
62    Version 2.1.1 (27 Jul 2019)
63    
64      * Real-time instrument scripts:
65        - Fixed behavior of built-in NKSP functions change_sustain(),
66          change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
67          and change_cutoff_release().
68    
69      * general changes:
70        - Only play release trigger samples on sustain pedal up if this behaviour
71          was explicitly requested by the instrument (otherwise only on note-off).
72        - Fixed compiler warnings.
73        - Fixed compilation error when cross-compiling to Mac.
74        - FX Sends: Provide more useful error messages on routing problems
75          (see bug #169).
76        - LSCP doc: Be more clear describing the two distinct approaches
77          of using external vs. internal effects (see bug #169).
78        - "optional" class: Fixed comparison operators.
79    
80      * Gigasampler/GigaStudio format engine:
81        - Format extension: If requested by instrument then don't play release
82          trigger sample on note-off events.
83    
84      * SFZ format engine:
85        - Fixed memory leak when releasing samples
86          (fixes bug #307, patch by Jacek Roszkowski)
87        - Fixed potential crash when a sample is shared by more than one region
88          (fixes bug #308, patch by Jacek Roszkowski).
89        - Opcode 'sample': Added support for built-in sample '*silence'
90          (fixes bug #310, patch by Jacek Roszkowski).
91    
92    Version 2.1.0 (25 Nov 2017)
93    
94      * SFZ format engine:
95        - added support for <global>, <master> and #define (patch by Alby M)
96        - Removed code duplication in SFZ file loading code.
97        - Added support for sfz extension opcode 'script' which may be used to
98          load real-time instrument script file (NKSP script language).
99        - Implemented opcode set_ccN (initial patch by Giovanni Senatore).
100        - Fixed unintended volume fade-in of voices under certain conditions.
101        - sfz parser: allow missing space between header and opcode
102    
103      * Gigasampler/GigaStudio format engine:
104        - Fixed clicks and pumping noise with Lowpass Turbo filter on very low
105          cutoff settings.
106        - Got rid of resembling an ancient GSt misbehavior which did not pitch at
107          all if an up-pitch of more than 40 semi tones was requested (I don't
108          think there is any stock gig sound that requires this behavior to
109          resemble its original sound).
110        - Added support for controlling whether the individual EGADSR stages may
111          be aborted (as LinuxSampler extension to the original GigaStudio 4
112          format).
113    
114      * general changes:
115        - fixed printf type errors (mostly in debug messages)
116        - use unique_ptr instead of auto_ptr when building with C++11
117        - Added RTAVLTree class which is a real-time safe ordered multi-map, thus
118          allowing to sort data efficiently in real-time safe manner.
119        - RTList class: added methods for moving/inserting elements to arbitrary
120          position within a list.
121        - RTList class: added method fromPtr() for creating an Iterator object from
122          a raw element pointer.
123        - Attempt to partly fix resetting engine channels vs. resetting engine, an
124          overall cleanup of the Reset*(), ConnectAudioDevice(),
125          DisconnectAudioDevice() API methods would still be desirable though,
126          because the current situation is still inconsistent and error prone.
127        - Active voices are now internally grouped to "Note" objects, instead of
128          being directly assigned to a keyboard key. This allows more fine graded
129          processing of voices, which is i.e. required for certain instrument
130          script features.
131        - Fix: Release trigger voices were not spawned on sustain pedal up
132          (CC #64) events.
133        - Fix: Release trigger voices can now also distinguish correctly between
134          note-off and sustain pedal up events.
135        - All engines: Increased ramp speed of volume smoother and pan smoother
136          (while slow rate of crossfade smoother is preserved) to allow quick
137          volume and pan changes by instrument scripts for instance.
138        - gig/sf2/sfz: Fixed aftertouch channel pressure events being processed
139          properly and thus were ignored for certain uses.
140        - Added new C++ API method
141          VirtualMidiDevice::SendChannelPressureToSampler().
142        - windows, 32-bit: fixed potential crashes by making sure the stack in
143          sub threads is 16-byte aligned
144        - fixed numerous compiler warnings
145        - Fixed invalid (note-on) event ID being assigned to new Note objects.
146        - Revised fundamental C++ classes "Thread", "Mutex" and "Condition" which
147          fixes potential undefined behavior.
148        - Fixed Note object leak when triggering notes on keys which did not
149          have a valid sample mapped (fixes bug #252).
150        - Fixed compilation errors when compiling with CONFIG_DEVMODE enabled.
151        - linuxsampler binary fix: option --create-instruments-db ignored
152          subsequent optional argument due to glibc's implementation oddity
153          which expects a "=" sign, but no space between them.
154    
155      * packaging changes:
156        - removed unnecessary dependency to libuuid
157          (originated by libgig's usage of it)
158        - Automake: set environment variable GCC_COLORS=auto to allow GCC to
159          auto detect whether it (sh/c)ould output its messages in color.
160        - Debian: Fixed packaging error about invalid "Source-Version"
161          substitution variable.
162        - Debian: Raised Debian compatibility level to Debian 9 "Stretch".
163        - Debian: Added build dependency to libsqlite3-dev for building
164          linuxsampler with instruments DB support.
165    
166      * Real-time instrument scripts:
167        - Implemented scheduler for delayed MIDI events and for suspended scripts.
168        - Built-in script function "wait()": implemented support for function's
169          "duration-us" argument, thus scripts using this function are now
170          correctly resumed after the requested amount of microseconds.
171        - Built-in script function "play_note()": implemented support for
172          function's "duration-us" argument, thus notes triggered with this
173          argument are now correctly released after the requested amount of
174          microseconds.
175        - Fix: script events were not cleared when engine channel was reset,
176          potentially causing undefined behavior.
177        - Fixed crash which happened when trying to reference an undeclared
178          variable.
179        - Built-in script function "play_note()": Added support for passing
180          special value -1 for "duration-us" argument, which will cause the
181          triggered note to be released once the original note was released.
182        - Instrument script classes now exported with the liblinuxsampler C++ API.
183        - Added new API method ScriptVM::syntaxHighlighting() which provides
184          a convenient syntax highlighting backend for external instrument
185          script editor applications.
186        - Added new C++ API class "ScriptVMFactory".
187        - Extended parser issues to provide not only first line and first
188          column, but also last line and last column of issue (thus marking
189          the precise span of the issue within the source code).
190        - Reload script automatically after being modified by an instrument
191          editor.
192        - NKSP language grammar correction: allow empty event handler bodies
193          like "on note end on".
194        - Implemented built-in script function "change_vol()".
195        - Implemented built-in script function "change_tune()".
196        - Implemented built-in script function "change_pan()".
197        - Implemented built-in script function "change_cutoff()".
198        - Implemented built-in script function "change_reso()".
199        - Implemented built-in script function "event_status()".
200        - Added built-in script constants "$EVENT_STATUS_INACTIVE" and
201          "$EVENT_STATUS_NOTE_QUEUE" both for being used as flags for
202          "event_status()" function.
203        - NKSP language: Added support for bitwise operators ".or.", ".and."
204          and ".not.".
205        - NKSP language scanner: Fixed IDs matching to require at least one
206          character (i.e. when matching function names or variable names).
207        - NKSP language scanner: disabled unusued rules.
208        - Fixed behavior of play_note() and note_off() functions which must
209          be distinguished engine internally from "real" MIDI note on/off
210          events in order to avoid misbehaviors like hanging notes.
211        - Implemented built-in script variable "$KSP_TIMER".
212        - Implemented built-in script variable "$NKSP_REAL_TIMER".
213        - Implemented built-in script variable "$NKSP_PERF_TIMER".
214        - Implemented built-in script variable "$ENGINE_UPTIME".
215        - Implemented built-in script function "inc()".
216        - Implemented built-in script function "dec()".
217        - NKSP language fix: division expressions were evaluated too often.
218        - NKSP language fix: string concatenation operator was right
219          associative instead of left (to right).
220        - NKSP language correction: allow empty statements in entire language
221          (i.e. "if end if").
222        - Implemented built-in script function "stop_wait()".
223        - Implemented built-in script variable "$NI_CALLBACK_ID".
224        - Implemented built-in script variable "$NI_CALLBACK_TYPE".
225        - Implemented built-in script variable "$NKSP_IGNORE_WAIT".
226        - Added support for read-only built-in variables (respectively
227          handled by the script parser).
228        - Added built-in script constant "$NI_CB_TYPE_INIT".
229        - Added built-in script constant "$NI_CB_TYPE_NOTE".
230        - Added built-in script constant "$NI_CB_TYPE_RELEASE".
231        - Added built-in script constant "$NI_CB_TYPE_CONTROLLER".
232        - NKSP Language: Added support for user defined script functions.
233        - Implemented built-in script function "change_attack()".
234        - Implemented built-in script function "change_decay()".
235        - Implemented built-in script function "change_release()".
236        - Fixed all change_*() built-in script functions to apply their
237          synthesis parameter changes immediately in case the respective note
238          was triggered at the same time, instead of scheduling the parameter
239          change, especially because it would cause some parameter types's
240          changes either to be ramped (i.e. change_vol()) or other types even
241          to have not effect at all (i.e. change_attack()).
242        - Implemented built-in script function "sh_left()".
243        - Implemented built-in script function "sh_right()".
244        - Implemented built-in script function "min()".
245        - Implemented built-in script function "max()".
246        - NKSP Fix: "init" event handler was not always executed when a script
247          was loaded.
248        - NKSP built-in wait() script function: abort script execution if
249          a negative or zero wait time was passed as argument (since this is
250          a common indication of a bug either of the script or even of the
251          engine, which could lead to RT instability or even worse).
252        - ScriptVM: Implemented automatic suspension of RT safety
253          threatening scripts.
254        - Provide more user friendly error messages on syntax errors.
255        - Fixed NKSP parser warning "Not a statement" when assigning an
256          initializer list to an array variable.
257        - Implemented built-in script array variable "%ALL_EVENTS".
258        - Implemented built-in script function "in_range()".
259        - Implemented built-in script function "change_amp_lfo_depth()".
260        - Implemented built-in script function "change_amp_lfo_freq()".
261        - Implemented built-in script function "change_pitch_lfo_depth()".
262        - Implemented built-in script function "change_pitch_lfo_freq()".
263        - Implemented built-in script function "change_vol_time()".
264        - Implemented built-in script function "change_tune_time()".
265        - Implemented built-in script function "fade_in()".
266        - Implemented built-in script function "fade_out()".
267        - Fixed acceptance of wrong data type of parameters passed to built-in
268          script functions "change_vol()", "change_tune()", "change_pan()",
269          "change_cutoff()", "change_reso()", "change_attack()", "change_decay()",
270          "change_release()", "change_amp_lfo_depth()", "change_amp_lfo_freq()",
271          "change_pitch_lfo_depth()" and "change_pitch_lfo_freq()".
272        - Added built-in script function "get_event_par()" and implemented some
273          of its possible parameter selections.
274        - Added built-in script function "set_event_par()" and implemented some
275          of its possible parameter selections.
276        - Fixed a bunch of scheduler time related bugs.
277        - Fixed polyphonic variables not being reset to zero after usage.
278        - Built-in "ignore_event()" function: argument is now optional, like with
279          built-in function "ignore_controller()".
280        - Implemented built-in script function "change_velo()".
281        - Implemented built-in script function "change_note()".
282        - Adjusted behavior of "change_vol()" and "change_tune()" to a more
283          intuitive behavior if used in combination with "change_vol_time()" or
284          "change_tune_time()" respectively: now tuning/volume changes are only
285          assigned (without delay) immediately to a new note if the respective
286          timing function has not been called before, otherwise the volume/tuning
287          changes are automatically faded (before, only the event's time stamp was
288          relevant).
289         - Implemented built-in script function "array_equal()".
290         - Implemented built-in script function "search()".
291         - Implemented built-in script function "sort()".
292         - NKSP Fix: Never suspend "init" event handlers.
293         - Implemented built-in script function "same_region()" (currently only
294           available for gig format engine).
295         - Added built-in script constant "$NKSP_LINEAR".
296         - Added built-in script constant "$NKSP_EASE_IN_EASE_OUT".
297         - Implemented built-in script function "change_vol_curve()".
298         - Implemented built-in script function "change_tune_curve()".
299         - built-in "play_note()" function now supports a sample playback start
300           offset with argument 3, where special value -1 means to use the regular
301           sample offset as defined by the instrument file.
302         - Built-in array variable %KEY_DOWN[] is now a read-only variable.
303         - Built-in variable $EVENT_NOTE is now a read-only variable.
304         - Built-in variable $EVENT_VELOCITY is now a read-only variable.
305         - built-in "play_note()" function now accepts -2 for its fourth argument
306           (note duration) which means the life time of the note shall be sticked
307           to the requested note number of argument 1.
308         - Fix: built-in "play_note()" function now returns 0 as result value if
309           -1 was passed for its fourth argument (note duration) and the respective
310           parent note is already gone.
311        - Implemented built-in script function "change_play_pos()".
312        - NKSP language: Added support for user declared const array variables.
313        - NKSP language: Raise parser warning if array variable is accessed with
314          an index that exceeds the array's size.
315        - NKSP language fix: Unknown characters were not handled correctly.
316        - NKSP language: Added support for "synchronized .. end synchronized"
317          code blocks.
318        - Implemented built-in script function "abort()" which allows to abort
319          another script handler by passing its callback ID.
320        - Fixed potential memory access bug and potential undefined behavior of
321          "init" event handlers.
322        - Print a time stamp along to each call of built-in function "message()".
323        - ScriptVM API: Added VMParserContext::preprocessorComments() which allows
324          to retrieve all code blocks filtered out by the preprocessor.
325        - Added built-in script function "fork()".
326        - Added built-in array variable %NKSP_CALLBACK_CHILD_ID[].
327        - Added built-in variable $NKSP_CALLBACK_PARENT_ID.
328        - Fixed potential crash when accessing dynamic built-in array variables.
329        - Added built-in script function "callback_status()".
330        - Added built-in constant $CALLBACK_STATUS_TERMINATED.
331        - Added built-in constant $CALLBACK_STATUS_QUEUE.
332        - Added built-in constant $CALLBACK_STATUS_RUNNING.
333        - Removed max. value limitation of built-in functions "change_attack()",
334          "change_decay()" and "change_release()" to i.e. allow passing 2000000
335          for doubling the respective time.
336        - NKSP script editor syntax highlighting API: Fixed app termination due
337          to a lexer start condition stack underrun.
338        - NKSP preprocessor: Fixed wrong behavior on nested USE_CODE_IF() and
339          USE_CODE_IF_NOT() preprocessor statements.
340        - NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE, which
341          can be set to disable all subsequent built-in "message()" function calls
342          on preprocessor level.
343        - Implemented built-in script function "change_sustain()".
344        - NKSP script editor syntax highlighting API: catch all fatal lexer errors,
345          to avoid the editor app to crash on ill-formed text input.
346        - Added built-in script function "change_pan_time()".
347        - Added built-in script function "change_pan_curve()".
348        - Added built-in script function "change_cutoff_attack()".
349        - Added built-in script function "change_cutoff_decay()".
350        - Added built-in script function "change_cutoff_sustain()".
351        - Added built-in script function "change_cutoff_release()".
352        - Added built-in script function "change_cutoff_lfo_depth()".
353        - Added built-in script function "change_cutoff_lfo_freq()".
354    
355      * Instruments DB:
356        - Fixed memory access bug of general DB access code which lead to
357          undefined behavior.
358        - Cleanup of instruments DB file creation and opening code.
359        - The instrument DB path of linuxsampler's --create-instruments-db argument
360          is now optional, if it is missing, then a default location is used.
361        - Added support for scanning SFZ (.sfz) files.
362        - Added support for scanning Sound Font (.sf2) files.
363        - Fixed undefined DB transaction behavior.
364    
365    Version 2.0.0 (15 July 2015)
366    
367    * packaging changes:    * packaging changes:
368      - fixed building with newer MinGW-w64      - fixed building with newer MinGW-w64
# Line 103  Version CVS HEAD (?) Line 467  Version CVS HEAD (?)
467        polyphonic key pressure events (so far polyphonic pressure was not        polyphonic key pressure events (so far polyphonic pressure was not
468        supported at all, and channel pressure was rerouted as CC128 but not        supported at all, and channel pressure was rerouted as CC128 but not
469        used so far).        used so far).
470        - Added initial support for real-time instrument scripts. The script VM
471          code is shared by all sampler engine implemementations, however only the
472          gig file format currently provides support for storing instrument scripts
473          (as LinuxSampler extension to the original GigaStudio 4 format).
474    
475    * Gigasampler format engine:    * Gigasampler format engine:
476      - implemented the "round robin keyboard" dimension      - implemented the "round robin keyboard" dimension
# Line 122  Version CVS HEAD (?) Line 490  Version CVS HEAD (?)
490      - Fixed support for 'aftertouch' attenuation controller.      - Fixed support for 'aftertouch' attenuation controller.
491      - Fixed crash that happened with velocity split sounds under certain      - Fixed crash that happened with velocity split sounds under certain
492        conditions (see also previous commit on libgig).        conditions (see also previous commit on libgig).
493        - fixed behaviour of filter LFO
494    
495    * SFZ format engine:    * SFZ format engine:
496      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 286  Version CVS HEAD (?) Line 655  Version CVS HEAD (?)
655      - bugfix: generation of velocity curves etc should not be done      - bugfix: generation of velocity curves etc should not be done
656        after each "#include", only after the main file is parsed        after each "#include", only after the main file is parsed
657      - bugfix: line numbers in error messages were wrong after "#include"      - bugfix: line numbers in error messages were wrong after "#include"
658        - added support for float and 32 bit sample files
659    
660    * SoundFont format engine:    * SoundFont format engine:
661      - Initial implementation (not usable yet)      - Initial implementation (not usable yet)
# Line 333  Version CVS HEAD (?) Line 703  Version CVS HEAD (?)
703      - VST: implemented retrieval and switching of programs using the      - VST: implemented retrieval and switching of programs using the
704        sampler's internal MIDI instrument mapping system        sampler's internal MIDI instrument mapping system
705    
706      * Instrument editor interface:
707        - Changed instrument editor plugin interface, providing additional
708          informations like the EngineChannel for which the instrument editor was
709          spawned for. This allows the instrument editors to interact more actively
710          with the sampler.
711    
712    * MIDI driver:    * MIDI driver:
713      - ALSA MIDI driver supports now "NAME" device parameter, for overriding      - ALSA MIDI driver supports now "NAME" device parameter, for overriding
714        the ALSA sequencer client name        the ALSA sequencer client name
# Line 356  Version CVS HEAD (?) Line 732  Version CVS HEAD (?)
732      - MME bugfix: driver wasn't closed properly      - MME bugfix: driver wasn't closed properly
733      - CoreMIDI: automatically connect to all input sources by default (driver      - CoreMIDI: automatically connect to all input sources by default (driver
734        parameter "AUTO_BIND").        parameter "AUTO_BIND").
735        - CoreMIDI: fixed auto bind feature to CoreMIDI ports that go online
736        - CoreMIDI: fixed minor memory leak
737    
738    * audio driver:    * audio driver:
739      - ASIO driver fixes for newer gcc versions (fix from PortAudio)      - ASIO driver fixes for newer gcc versions (fix from PortAudio)
# Line 407  Version CVS HEAD (?) Line 785  Version CVS HEAD (?)
785        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"        "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"
786      - provide comprehensive error messages on LSCP syntax errors      - provide comprehensive error messages on LSCP syntax errors
787        (suggesting expected next non-terminal symbols)        (suggesting expected next non-terminal symbols)
788        - Fixed client connection not being closed after network errors.
789    
790    * LSCP shell:    * LSCP shell:
791      - Added support for auto correction of obvious and trivial syntax mistakes.      - Added support for auto correction of obvious and trivial syntax mistakes.
# Line 422  Version CVS HEAD (?) Line 801  Version CVS HEAD (?)
801        as one specific LSCP command was detected while typing on the command        as one specific LSCP command was detected while typing on the command
802        line.        line.
803    
804      * Real-time instrument scripts:
805        - Implemented built-in script array variable %CC.
806        - Implemented built-in script int variable $CC_NUM.
807        - Implemented built-in script int variable $EVENT_NOTE.
808        - Implemented built-in script int variable $EVENT_VELOCITY.
809        - Implemented built-in script constant variable $VCC_MONO_AT.
810        - Implemented built-in script constant variable $VCC_PITCH_BEND.
811        - Implemented execution of script event handler "init".
812        - Implemented execution of script event handler "controller".
813        - Implemented execution of script event handler "note".
814        - Implemented execution of script event handler "release".
815        - Implemented built-in script function "play_note()" (only two of the
816          max. four function arguments are currently implemented yet though).
817        - Implemented built-in script int variable $EVENT_ID.
818        - Implemented built-in script function "ignore_event()"
819        - Implemented built-in script function "ignore_controller()" (may have one
820          or no argument).
821        - Implemented built-in script function "set_controller()".
822        - Added extended script VM for the Gigasampler/GigaStudio format sampler
823          engine, which extends the general instrument script VM with Giga format
824          specific variables and functions.
825        - Giga format scripts: added built-in script int constant variables
826          $GIG_DIM_CHANNEL, $GIG_DIM_LAYER, $GIG_DIM_VELOCITY, $GIG_DIM_AFTERTOUCH,
827          $GIG_DIM_RELEASE, $GIG_DIM_KEYBOARD, $GIG_DIM_ROUNDROBIN, $GIG_DIM_RANDOM,
828          $GIG_DIM_SMARTMIDI, $GIG_DIM_ROUNDROBINKEY, $GIG_DIM_MODWHEEL,
829          $GIG_DIM_BREATH, $GIG_DIM_FOOT, $GIG_DIM_PORTAMENTOTIME, $GIG_DIM_EFFECT1,
830          $GIG_DIM_EFFECT2, $GIG_DIM_GENPURPOSE1, $GIG_DIM_GENPURPOSE2,
831          $GIG_DIM_GENPURPOSE3, $GIG_DIM_GENPURPOSE4, $GIG_DIM_SUSTAIN,
832          $GIG_DIM_PORTAMENTO, $GIG_DIM_SOSTENUTO, $GIG_DIM_SOFT,
833          $GIG_DIM_GENPURPOSE5, $GIG_DIM_GENPURPOSE6, $GIG_DIM_GENPURPOSE7,
834          $GIG_DIM_GENPURPOSE8, $GIG_DIM_EFFECT1DEPTH, $GIG_DIM_EFFECT2DEPTH,
835          $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH.
836        - Giga format scripts: Implemented built-in script function
837          "gig_set_dim_zone(event_id, dimension, zone)".
838        - Implemented built-in script int array variable %KEY_DOWN.
839        - Implemented built-in script function "abs()".
840        - Implemented built-in script function "random()".
841        - Implemented built-in script function "num_elements()".
842        - Implemented built-in script function "note_off()".
843        - Implemented built-in script function "set_event_mark()".
844        - Implemented built-in script function "delete_event_mark()".
845        - Implemented built-in script function "by_marks()".
846        - Added built-in script int const variables $MARK_1 to $MARK_28.
847        - Built-in script functions "ignore_event()", "note_off()" and
848          "gig_set_dim_zone()" now also accept an array of event IDs as argument
849          (i.e. return value of new script function "by_marks()").
850        - Pass/preserve polyphonic variable data from respective "note" event
851          handler to "release" event handler.
852        - Fixed crash when using built-in script function "by_marks()".
853    
854    * Bug fixes:    * Bug fixes:
855      - 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
856      - minor valgrind fixes      - minor valgrind fixes
# Line 472  Version CVS HEAD (?) Line 901  Version CVS HEAD (?)
901        "GET SERVER INFOasdf\n" to be accepted as valid statement (was so far        "GET SERVER INFOasdf\n" to be accepted as valid statement (was so far
902        practically irrelevant, however it caused problems with the new LSCP        practically irrelevant, however it caused problems with the new LSCP
903        shell's auto completion feature).        shell's auto completion feature).
904        - Fixed MIDI program change messages being ignored if quickly executed
905          after each other (fixes #231).
906    
907  Version 1.0.0 (31 July 2009)  Version 1.0.0 (31 July 2009)
908    

Legend:
Removed from v.2568  
changed lines
  Added in v.3573

  ViewVC Help
Powered by ViewVC