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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 3073 by schoenebeck, Thu Jan 5 16:04:00 2017 UTC revision 3290 by schoenebeck, Fri Jun 23 12:24:58 2017 UTC
# Line 2  Version SVN trunk (?) Line 2  Version SVN trunk (?)
2    
3    * SFZ format engine:    * SFZ format engine:
4      - added support for <global>, <master> and #define (patch by Alby M)      - added support for <global>, <master> and #define (patch by Alby M)
5        - Removed code duplication in SFZ file loading code.
6        - Added support for sfz extension opcode 'script' which may be used to
7          load real-time instrument script file (NKSP script language).
8        - Implemented opcode set_ccN (initial patch by Giovanni Senatore).
9        - Fixed unintended volume fade-in of voices under certain conditions.
10    
11    * Gigasampler format engine:    * Gigasampler/GigaStudio format engine:
12      - Fixed clicks and pumping noise with Lowpass Turbo filter on very low      - Fixed clicks and pumping noise with Lowpass Turbo filter on very low
13        cutoff settings.        cutoff settings.
14    
# Line 38  Version SVN trunk (?) Line 43  Version SVN trunk (?)
43      - windows, 32-bit: fixed potential crashes by making sure the stack in      - windows, 32-bit: fixed potential crashes by making sure the stack in
44        sub threads is 16-byte aligned        sub threads is 16-byte aligned
45      - fixed numerous compiler warnings      - fixed numerous compiler warnings
46        - Fixed invalid (note-on) event ID being assigned to new Note objects.
47        - Revised fundamental C++ classes "Thread", "Mutex" and "Condition" which
48          fixes potential undefined behavior.
49    
50    * packaging changes:    * packaging changes:
51      - removed unnecessary dependency to libuuid      - removed unnecessary dependency to libuuid
# Line 137  Version SVN trunk (?) Line 145  Version SVN trunk (?)
145      - Fixed NKSP parser warning "Not a statement" when assigning an      - Fixed NKSP parser warning "Not a statement" when assigning an
146        initializer list to an array variable.        initializer list to an array variable.
147      - Implemented built-in script array variable "%ALL_EVENTS".      - Implemented built-in script array variable "%ALL_EVENTS".
148        - Implemented built-in script function "in_range()".
149        - Implemented built-in script function "change_amp_lfo_depth()".
150        - Implemented built-in script function "change_amp_lfo_freq()".
151        - Implemented built-in script function "change_pitch_lfo_depth()".
152        - Implemented built-in script function "change_pitch_lfo_freq()".
153        - Implemented built-in script function "change_vol_time()".
154        - Implemented built-in script function "change_tune_time()".
155        - Implemented built-in script function "fade_in()".
156        - Implemented built-in script function "fade_out()".
157        - Fixed acceptance of wrong data type of parameters passed to built-in
158          script functions "change_vol()", "change_tune()", "change_pan()",
159          "change_cutoff()", "change_reso()", "change_attack()", "change_decay()",
160          "change_release()", "change_amp_lfo_depth()", "change_amp_lfo_freq()",
161          "change_pitch_lfo_depth()" and "change_pitch_lfo_freq()".
162        - Added built-in script function "get_event_par()" and implemented some
163          of its possible parameter selections.
164        - Added built-in script function "set_event_par()" and implemented some
165          of its possible parameter selections.
166        - Fixed a bunch of scheduler time related bugs.
167        - Fixed polyphonic variables not being reset to zero after usage.
168        - Built-in "ignore_event()" function: argument is now optional, like with
169          built-in function "ignore_controller()".
170        - Implemented built-in script function "change_velo()".
171        - Implemented built-in script function "change_note()".
172        - Adjusted behavior of "change_vol()" and "change_tune()" to a more
173          intuitive behavior if used in combination with "change_vol_time()" or
174          "change_tune_time()" respectively: now tuning/volume changes are only
175          assigned (without delay) immediately to a new note if the respective
176          timing function has not been called before, otherwise the volume/tuning
177          changes are automatically faded (before, only the event's time stamp was
178          relevant).
179         - Implemented built-in script function "array_equal()".
180         - Implemented built-in script function "search()".
181         - Implemented built-in script function "sort()".
182         - NKSP Fix: Never suspend "init" event handlers.
183         - Implemented built-in script function "same_region()" (currently only
184           available for gig format engine).
185         - Added built-in script constant "$NKSP_LINEAR".
186         - Added built-in script constant "$NKSP_EASE_IN_EASE_OUT".
187         - Implemented built-in script function "change_vol_curve()".
188         - Implemented built-in script function "change_tune_curve()".
189         - built-in "play_note()" function now supports a sample playback start
190           offset with argument 3, where special value -1 means to use the regular
191           sample offset as defined by the instrument file.
192         - Built-in array variable %KEY_DOWN[] is now a read-only variable.
193         - Built-in variable $EVENT_NOTE is now a read-only variable.
194         - Built-in variable $EVENT_VELOCITY is now a read-only variable.
195         - built-in "play_note()" function now accepts -2 for its fourth argument
196           (note duration) which means the life time of the note shall be sticked
197           to the requested note number of argument 1.
198         - Fix: built-in "play_note()" function now returns 0 as result value if
199           -1 was passed for its fourth argument (note duration) and the respective
200           parent note is already gone.
201        - Implemented built-in script function "change_play_pos()".
202        - NKSP language: Added support for user declared const array variables.
203        - NKSP language: Raise parser warning if array variable is accessed with
204          an index that exceeds the array's size.
205        - NKSP language fix: Unknown characters were not handled correctly.
206        - NKSP language: Added support for "synchronized .. end synchronized"
207          code blocks.
208        - Implemented built-in script function "abort()" which allows to abort
209          another script handler by passing its callback ID.
210        - Fixed potential memory access bug and potential undefined behavior of
211          "init" event handlers.
212        - Print a time stamp along to each call of built-in function "message()".
213        - ScriptVM API: Added VMParserContext::preprocessorComments() which allows
214          to retrieve all code blocks filtered out by the preprocessor.
215    
216    * Instruments DB:    * Instruments DB:
217      - Fixed memory access bug of general DB access code which lead to      - Fixed memory access bug of general DB access code which lead to
218        undefined behavior.        undefined behavior.
219        - Cleanup of instruments DB file creation and opening code.
220        - The instrument DB path of linuxsampler's --create-instruments-db argument
221          is now optional, if it is missing, then a default location is used.
222        - Added support for scanning SFZ (.sfz) files.
223        - Added support for scanning Sound Font (.sf2) files.
224        - Fixed undefined DB transaction behavior.
225    
226  Version 2.0.0 (15 July 2015)  Version 2.0.0 (15 July 2015)
227    
# Line 615  Version 2.0.0 (15 July 2015) Line 696  Version 2.0.0 (15 July 2015)
696        $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH.        $GIG_DIM_EFFECT3DEPTH, $GIG_DIM_EFFECT4DEPTH, $GIG_DIM_EFFECT5DEPTH.
697      - Giga format scripts: Implemented built-in script function      - Giga format scripts: Implemented built-in script function
698        "gig_set_dim_zone(event_id, dimension, zone)".        "gig_set_dim_zone(event_id, dimension, zone)".
699      - Implemented built-in script int array variable $KEY_DOWN.      - Implemented built-in script int array variable %KEY_DOWN.
700      - Implemented built-in script function "abs()".      - Implemented built-in script function "abs()".
701      - Implemented built-in script function "random()".      - Implemented built-in script function "random()".
702      - Implemented built-in script function "num_elements()".      - Implemented built-in script function "num_elements()".

Legend:
Removed from v.3073  
changed lines
  Added in v.3290

  ViewVC Help
Powered by ViewVC