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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 2911 by schoenebeck, Mon May 16 20:27:33 2016 UTC revision 3050 by schoenebeck, Thu Dec 8 12:36:56 2016 UTC
# Line 20  Version SVN trunk (?) Line 20  Version SVN trunk (?)
20        being directly assigned to a keyboard key. This allows more fine graded        being directly assigned to a keyboard key. This allows more fine graded
21        processing of voices, which is i.e. required for certain instrument        processing of voices, which is i.e. required for certain instrument
22        script features.        script features.
23        - Fix: Release trigger voices were not spawned on sustain pedal up
24          (CC #64) events.
25        - Fix: Release trigger voices can now also distinguish correctly between
26          note-off and sustain pedal up events.
27        - All engines: Increased ramp speed of volume smoother and pan smoother
28          (while slow rate of crossfade smoother is preserved) to allow quick
29          volume and pan changes by instrument scripts for instance.
30        - gig/sf2/sfz: Fixed aftertouch channel pressure events being processed
31          properly and thus were ignored for certain uses.
32        - Added new C++ API method
33          VirtualMidiDevice::SendChannelPressureToSampler().
34        - windows, 32-bit: fixed potential crashes by making sure the stack in
35          sub threads is 16-byte aligned
36    
37    * packaging changes:    * packaging changes:
38      - removed unnecessary dependency to libuuid      - removed unnecessary dependency to libuuid
# Line 55  Version SVN trunk (?) Line 68  Version SVN trunk (?)
68        editor.        editor.
69      - NKSP language grammar correction: allow empty event handler bodies      - NKSP language grammar correction: allow empty event handler bodies
70        like "on note end on".        like "on note end on".
71        - Implemented built-in script function "change_vol()".
72        - Implemented built-in script function "change_tune()".
73        - Implemented built-in script function "change_pan()".
74        - Implemented built-in script function "change_cutoff()".
75        - Implemented built-in script function "change_reso()".
76        - Implemented built-in script function "event_status()".
77        - Added built-in script constants "$EVENT_STATUS_INACTIVE" and
78          "$EVENT_STATUS_NOTE_QUEUE" both for being used as flags for
79          "event_status()" function.
80        - NKSP language: Added support for bitwise operators ".or.", ".and."
81          and ".not.".
82        - NKSP language scanner: Fixed IDs matching to require at least one
83          character (i.e. when matching function names or variable names).
84        - NKSP language scanner: disabled unusued rules.
85        - Fixed behavior of play_note() and note_off() functions which must
86          be distinguished engine internally from "real" MIDI note on/off
87          events in order to avoid misbehaviors like hanging notes.
88        - Implemented built-in script variable "$KSP_TIMER".
89        - Implemented built-in script variable "$NKSP_REAL_TIMER".
90        - Implemented built-in script variable "$NKSP_PERF_TIMER".
91        - Implemented built-in script variable "$ENGINE_UPTIME".
92        - Implemented built-in script function "inc()".
93        - Implemented built-in script function "dec()".
94        - NKSP language fix: division expressions were evaluated too often.
95        - NKSP language fix: string concatenation operator was right
96          associative instead of left (to right).
97        - NKSP language correction: allow empty statements in entire language
98          (i.e. "if end if").
99        - Implemented built-in script function "stop_wait()".
100        - Implemented built-in script variable "$NI_CALLBACK_ID".
101        - Implemented built-in script variable "$NI_CALLBACK_TYPE".
102        - Implemented built-in script variable "$NKSP_IGNORE_WAIT".
103        - Added support for read-only built-in variables (respectively
104          handled by the script parser).
105        - Added built-in script constant "$NI_CB_TYPE_INIT".
106        - Added built-in script constant "$NI_CB_TYPE_NOTE".
107        - Added built-in script constant "$NI_CB_TYPE_RELEASE".
108        - Added built-in script constant "$NI_CB_TYPE_CONTROLLER".
109        - NKSP Language: Added support for user defined script functions.
110        - Implemented built-in script function "change_attack()".
111        - Implemented built-in script function "change_decay()".
112        - Implemented built-in script function "change_release()".
113        - Fixed all change_*() built-in script functions to apply their
114          synthesis parameter changes immediately in case the respective note
115          was triggered at the same time, instead of scheduling the parameter
116          change, especially because it would cause some parameter types's
117          changes either to be ramped (i.e. change_vol()) or other types even
118          to have not effect at all (i.e. change_attack()).
119        - Implemented built-in script function "sh_left()".
120        - Implemented built-in script function "sh_right()".
121        - Implemented built-in script function "min()".
122        - Implemented built-in script function "max()".
123        - NKSP Fix: "init" event handler was not always executed when a script
124          was loaded.
125        - NKSP built-in wait() script function: abort script execution if
126          a negative or zero wait time was passed as argument (since this is
127          a common indication of a bug either of the script or even of the
128          engine, which could lead to RT instability or even worse).
129        - ScriptVM: Implemented automatic suspension of RT safety
130          threatening scripts.
131        - Provide more user friendly error messages on syntax errors.
132        - Fixed NKSP parser warning "Not a statement" when assigning an
133          initializer list to an array variable.
134    
135      * Instruments DB:
136        - Fixed memory access bug of general DB access code which lead to
137          undefined behavior.
138    
139  Version 2.0.0 (15 July 2015)  Version 2.0.0 (15 July 2015)
140    

Legend:
Removed from v.2911  
changed lines
  Added in v.3050

  ViewVC Help
Powered by ViewVC