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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 3372 by schoenebeck, Sat Nov 25 17:29:29 2017 UTC revision 4009 by schoenebeck, Wed Dec 22 15:01:44 2021 UTC
# Line 1  Line 1 
1    Version SVN trunk (?)
2    
3      * general changes:
4        - AbstractEngineChannel: fixed CCs not being forwarded to all
5          VirtualMIDIDevices.
6        - Fix compiler error with release tarball if no Bison installed
7          (SVN version still requires Flex and Bison being installed).
8    
9      * Real-time instrument scripts:
10        - Fix: Do not share compiled instrument scripts among multiple engine
11          channels (sampler parts) as this can lead to crashes and would allow the
12          same global script variables to be accessible from multiple engine
13          channels which would not be the expected behaviour by instrument script
14          authors.
15    
16      * GigaStudio/Gigasampler format engine:
17        - Use libgig's new IO-per-thread feature to avoid file I/O concurrency
18          issues with .gig file.
19        - Use libgig's new method gig::File::GetSample() with method
20          gig::File::CountSamples() instead of now deprecated
21          gig::File::GetFirstSample() / gig::File::GetNextSample() pair.
22        - Use libgig's new method gig::Instrument::GetRegionAt() with method
23          gig::Instrument:CountRegions() instead of now deprecated
24          gig::Instrument::GetFirstRegion() / gig::Instrument::GetNextRegion() pair.
25        - Use libgig's gig::File::GetInstrument() method with method
26          gig::File::CountInstruments() instead of now deprecated
27          gig::File::GetFirstInstrument() / gig::File::GetNextInstrument() pair.
28        - Show a more detailed error message on terminal if an appropriate editor
29          could not be found for a .gig instrument.
30    
31      * MIDI driver:
32        - VirtualMidiDevice: added method Reset() which is e.g. intended to be used
33          in "panic" / MIDI "all sound off" / MIDI "all note off" situations.
34        - VirtualMidiDevice: release all notes on MIDI CC #120 and CC #123.
35    
36    Version 2.2.0 (9 May 2021)
37    
38      * general changes:
39        - Fixed compiler error in Pool.h.
40        - Require C++14 compiler support.
41        - Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used
42          for checking in configure for C++14 support (as mandatory
43          requirement) and automatically adds compiler argument if required
44          (e.g. -std=C++14).
45        - RTMath: Implemented floating point comparison methods
46          fEqual32(float,float) and fEqual64(double,double) which take the
47          expected floating point tolerances into account.
48        - Added public API C++ class "LFO", which is a cluster class encapsulating
49          all the sampler's LFO implementations to be used by 3rd party applications
50          (e.g. by Gigedit).
51        - Added int math square LFO implementation.
52        - Added int math saw LFO implementation.
53        - Added numeric complex nr sine LFO implementation.
54        - Marked class LFOTriangleDiHarmonic as deprecated
55          (will be removed in future).
56        - Added LFOAll.h which includes all LFO implementation's header files.
57        - Refactored LFO class names and their file names (PulseLFO -> LFOPulse,
58          LFOSawIntMath -> LFOSawIntMathNew, SawLFO -> LFOSawIntMathOld,
59          SineLFO -> LFOSineBuiltinFn, LFOSine -> LFOSineNumericComplexNr,
60          SquareLFO -> LFOSquarePulse and separated the latter to its own header
61          file).
62        - Renamed type LFOSigned -> LFOTriangleSigned.
63        - Renamed type LFOUnsigned -> LFOTriangleUnsigned.
64        - Using now cubic interpolation as resampling algorithm by default; and
65          linear interpolation is deprecated now.
66        - Event:Init(): memset() entire Event::Param union to zero instead of trying
67          to do that for its individual members; the latter became error prone due
68          to the union's growing complexity meanwhile.
69        - EngineChannel: Overhaul of RPN/NRPN related methods: Added new
70          *Rpn*Parameter*() methods as replacement for previous *Rpn*Controller*()
71          methods and marked the old ones as deprecated; and likewise added new
72          *Nrpn*Parameter*() methods as replacement for previous *Nrpn*Controller*()
73          methods and marked those old ones deprecated as well.
74        - Added support for MIDI CC #38 (data entry LSB): this allows higher value
75          resolution for certain (e.g. hard coded) RPN and NRPN parameters.
76        - Implemented support for compressed RPN/NRPN message sequences (that is to
77          allow processing MIDI data entry messages without always having to be
78          preceded strictly by RPN/NRPN parameter selection messages on each value
79          change).
80        - Added support for MIDI CC #96 (data increment) and MIDI CC #97 (data
81          decrement).
82        - Added support for 'null function RPN/NRPN' (which is RPN/NRPN parameter
83          MSB=127 and LSB=127) and which is disabling subsequent data
84          entry/increment/decrement CC messages.
85        - Fixed crash when editing key groups (a.k.a. exclusive groups) with an
86          instrument editor.
87        - Fixed playing noise at the end of a disk stream under certain conditions.
88        - Fixed potential crash with high pitch at end of RAM playback.
89        - Added configure checks whether C++ compiler supports so called
90          'designated initializers'.
91        - Added global backtraceAsString() function for debugging purposes
92          (POSIX systems only, no Windows implementation yet).
93        - Thread class: Added new methods pushCancelable(), popCancelable(), name(),
94          nameOfCaller() and setNameOfCaller().
95        - configure: Always check for availability of pthread_testcancel() and use
96          it if so (previously it was only used if explicitly enabled by configure
97          option).
98        - Thread class: raise compiler warning if pthread_testcancel() is not
99          available, because it can lead to deadlocks.
100        - Mutex class: Implemented optional bug detection and deadlock debugging
101          features.
102        - Ref<> class is now thread safe (as lock-free and wait-free
103          implementation).
104        - Fixed compilation error with Bison >= 3.6.0.
105        - Fixed rare crash when switching between instruments that had instrument
106          scripts loaded.
107        - Allow EffectChain::InsertEffect() as alternative to
108          EffectChain::AppendEffect() (i.e. with index equal to current chain size).
109        - ConstCapacityArray class: Fixed bug in remove() method.
110        - Fixed crash on certain MIDI RPN and NRPN messages that occurred if no
111          real-time instrument script was loaded.
112    
113      * Real-time instrument scripts:
114        - Added method ScriptVM::setExitResultEnabled() which allows to
115          explicitly enable the built-in exit() function to optionally accept
116          one function argument; the value of the passed exit() function
117          argument will then become available by calling
118          VMExecContext::exitResult() after script execution.
119        - 64 bit support for NKSP integer scripts variables (declare $foo).
120        - Variable names, function names and preprocessor condition names must start
121          with a regular character (a-z or A-Z); starting them with a digit or
122          underscore is not allowed.
123        - NKSP parser fix: equal comparison operator "=" and not equal comparison
124          operator "#" must only accept integer operands.
125        - NKSP language: Implemented support for standard units like Hertz, seconds,
126          Bel including support for metric unit prefixes; so one can now e.g.
127          conveniently use numbers in scripts like "5us" meaning "5 microseconds",
128          or e.g. "12kHz" meaning "12 kilo Hertz", or e.g. "-14mdB" meaning
129          "minus 14 Millidecibel", or e.g. "28c" meaning "28 cents" (for tuning).
130        - NKSP language: Introduced "final" operator "!" which is specifically
131          intended for synthesis parameter values to denote that the synthesis
132          parameter value is intended to be the "final" value for that synthesis
133          parameter that should explicitly be used by the engine and thus causing
134          the sampler engine to ignore all other modulation sources for the same
135          synthesis parameter (like e.g. LFO, EG); by simply prefixing a value,
136          variable or formula with this new "!" operator the expression is marked as
137          being "final".
138        - NKSP script editor API: Added support for detecting standard unit tokens
139          and their potential metric prefix token.
140        - NKSP language: Added support for NKSP real number literals and
141          arithmetic operations on them (e.g. "(3.9 + 2.9) / 12.3 - 42.0").
142        - NKSP language: Added support for NKSP real number (floating point) script
143          variables (declare ~foo).
144        - NKSP language: Added support for NKSP real number (floating point) array
145          script variables (declare ?foo[]).
146        - Built-in script function "message()" accepts now real number argument as
147          well.
148        - Added built-in script function "real_to_int()" and its short hand form
149          "int()" for casting from real number to integer in NKSP scripts.
150        - Added built-in script function "int_to_real()" and its short hand form
151          "real()" for casting from integer to real number in NKSP scripts.
152        - Allow built-in exit() function to potentially accept real number type
153          argument as well.
154        - Built-in script functions may have a different return type depending on
155          the arguments passed to the function.
156        - Built-in script function "abs()" optionally accepts and returns real
157          number.
158        - Built-in script functions "min()" and "max()" optionally accept real
159          number arguments and return real number as result in that case.
160        - NKSP VM API: Allow units and 'final'ness to be returned as result from
161          built-in functions (added methods VMFunction::returnUnitType() and
162          VMFunction::returnsFinal() for that purpose which must be implemented by
163          built-in function implementations).
164        - NKSP language: Allow metric unit prefixes of numeric scalar and array
165          variables to be changed freely at runtime (unlike unit types like Hz etc.
166          which are still sticky, parse-time features of variables which cannot be
167          changed at runtime for the intentional sake of determinism).
168        - NKSP language: 'final' values are prohibited for array variables for now
169          (attempt causes a parsers error).
170        - NKSP language: expressions with unit types (e.g. Hz) are prohibited for
171          conditions of runtime control structures like if(), while(), select()
172          (attempt causes a parser error).
173        - NKSP VM API: Allow built-in functions to perform their own, individual
174          parse time checks of arguments going to be passed to the function at
175          runtime (added method VMFunction::checkArgs() for that purpose).
176        - NKSP language: raise parser warning if only one operand of binary
177          operators (like logical 'or' comparison) contain a 'final' value (because
178          it would always yield in a 'final' result in such cases).
179        - NKSP language: Allow comparison (=, #, <, >, <=, >=) of values with
180          different metric unit prefixes, which will behave as expected (e.g.
181          result of expression '1000us < 2ms' is true).
182        - NKSP language: Allow adding values with different metric unit prefixes
183          (e.g. result of expression '100Hz + 5kHz' is '5100Hz').
184        - NKSP language: Allow subtracting values with different metric unit
185          prefixes (e.g. result of expression '1ms - 20us' is '980us').
186        - NKSP language: Allow multiplying with any metric unit prefixes
187          (e.g. result of expression '2k * 3ms' is '6s'), however multiplications
188          with unit types on both sides (e.g. '2s * 2s') is still prohibited since
189          we don't have any considerable practical use for a term like '4s^2'
190          (hence any attempt multiplying two unit types still causes parser error).
191        - NKSP language: Allow dividing by any metric unit prefixes and allow
192          division of same unit type on both sides (e.g. expression '8kHz / 1000Hz'
193          yields in unit free result '8'). So this is now a way to cast units away
194          e.g. for passing the result to other expressions, certain function calls
195          or variables which are not accepting any units (or that specific unit).
196        - NKSP language: integer arrays and real number arrays can now be converted
197          to strings (e.g. for dumping their content with message() calls for
198          script debugging purposes).
199        - NKSP language: expressions and variables with units are now correctly
200          casted to strings (e.g. with message() calls).
201        - NKSP language: comparing real numbers for equalness (e.g. '~foo = 3.1') or
202          unequalness (e.g. '~foo # 3.1') is now less strict and takes the expected
203          floating point tolerances into account.
204        - NKSP VM API: Added methods VMScalarNumberExpr::evalCastInt() and
205          VMScalarNumberExpr::evalCastReal().
206        - NKSP VM API: Added base class 'VMNumberArrayExpr' for classes
207          'VMIntArrayExpr' and 'VMRealArrayExpr'.
208        - NKSP VM API: replaced all unitPrefix() (parse time) methods by
209          unitFactor() (runtime) methods.
210        - Built-in function "exit()" supports now returning units and 'final'ness
211          for test cases.
212        - The following built-in functions support now units as well: "abs()",
213          "random()", "inc()", "dec()", "in_range()", "min()", "max()",
214          "real_to_int()", "int()", "int_to_real()" and "real()".
215        - Built-in functions "array_equal()", "search()" and "sort()" support now
216          real number arrays (correctly) as well.
217        - Added individual parse time checks of arguments to be passed to built-in
218          functions "random()", "inc()", "dec()", "in_range()", "min()", "max()",
219          "array_equal()" and "search()" specific for their individual purposes.
220        - NKSP VM refactoring: Renamed all methods, functions and classes matching
221          pattern *ScalarNumber* to simply *Number* (that is i.e. classes
222          VMScalarNumberExpr -> VMNumberExpr, ScalarNumberExpr -> NumberExpr,
223          ScalarNumberVariable -> NumberVariable, ScalarNumberBinaryOp ->
224          NumberBinaryOp, VMScalarNumberResultFunction -> VMNumberResultFunction,
225          method VMExpr::asScalarNumberExpr() -> VMExpr::asNumber(), function
226          isScalarNumber() -> isNumber()).
227        - NKSP VM API: Added 4 overridden methods to class VMNumberExpr:
228          evalCastInt(MetricPrefix_t), evalCastInt(MetricPrefix_t,MetricPrefix_t),
229          evalCastReal(MetricPrefix_t), evalCastReal(MetricPrefix_t,MetricPrefix_t)
230          as convenient methods for automatically converting values to expected
231          metric value basis.
232        - Built-in function "wait()" accepts now both integers and real numbers as
233          argument.
234        - NKSP VM API cleanup: Get rid of legacy method
235          VMFunction::argType(vmint iArg) which was already superseded by its new
236          replacement VMFunction::acceptsArgType(vmint iArg, ExprType_t type).
237        - NKSP parser: if wrong argument type was passed to a built-in function and
238          that built-in function accepts more than one data type for the argument,
239          then show all supported data types as parser error message.
240        - Built-in function "play_note()" accepts now real numbers and seconds as
241          unit type as well for its 3rd and 4th function arguments.
242        - The following built-in functions accept now real numbers as well for their
243          2nd function argument: "change_vol()", "change_tune()", "change_cutoff()",
244          "change_attack()", "change_decay()", "change_release()",
245          "change_sustain()", "change_cutoff_attack()", "change_cutoff_decay()",
246          "change_cutoff_sustain()", "change_cutoff_release()",
247          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
248          "change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()",
249          "change_pan_time()", "fade_in()", "fade_out()", "change_play_pos()".
250        - Fixed built-in function "change_play_pos()" not having accepted metric
251          prefixes at all.
252        - Fixed the following built-in functions having misinterpreted values given
253          with unit type (for their 2nd argument) as if they were relative values
254          (that is as if they were passed without a unit type): "change_attack()",
255          "change_decay()", "change_release()", "change_cutoff_attack()",
256          "change_cutoff_decay()", "change_cutoff_release()".
257        - Fixed the following built-in functions having applied completely wrong
258          'final' values: "change_sustain()", "change_cutoff_sustain()" (since the
259          respective EGs being their modulation sink assume uint data type with
260          value range 0..1000 instead of 0.0..1.0.
261        - Added individual parse-time checks of function arguments for the following
262          built-in functions: "play_note()", "note_off()", "set_event_mark()",
263          "delete_event_mark()", "by_marks()", "change_cutoff()", "change_attack()",
264          "change_decay()", "change_release()", "change_cutoff_attack()",
265          "change_cutoff_decay()", "change_cutoff_release()",
266          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
267          "change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()" and
268          "change_pan_time()".
269        - Don't abort function call if unit type was used and at the same time
270          'final' operator was omitted for the primary value argument of the
271          following built-in functions: "change_cutoff()", "change_attack()",
272          "change_decay()", "change_release()", "change_cutoff_attack()",
273          "change_cutoff_decay()", "change_cutoff_release()",
274          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
275          "change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()",
276          "change_pan_time()", instead imply 'final'ness at runtime and raise an
277          appropriate parser warning at parse time.
278        - Added built-in real number functions "round()", "ceil()", "floor()",
279          "sqrt()", "log()", "log2()", "log10()", "exp()", "pow()", "sin()",
280          "cos()", "tan()", "asin()", "acos()", "atan()".
281        - Added built-in script real number constant "~NI_MATH_PI".
282        - Added built-in script real number constant "~NI_MATH_E".
283        - NKSP language: Allow unary '+' operator.
284        - Added built-in script functions "msb()" and "lsb()".
285        - NKSP language: Added support for RPN event handler
286          ("on rpn ... end on" in instrument scripts).
287        - NKSP language: Added support for NRPN event handler
288          ("on nrpn ... end on" in instrument scripts).
289        - Added built-in read-only variables "$RPN_ADDRESS" and "$RPN_VALUE" which
290          may be read from the new RPN/NRPN script handlers to get the (N)RPN
291          parameter that had been changed and its new value.
292        - Added built-in const variables "$NI_CB_TYPE_RPN" and "$NI_CB_TYPE_NRPN"
293          which are identifying the new (N)RPN handlers as such at script runtime.
294        - Implemented built-in script function "set_rpn()".
295        - Implemented built-in script function "set_nrpn()".
296        - Fix: built-in functions returning an array type were broken and caused a
297          crash when the built-in function's (supposed to be array) result value was
298          used by the script VM.
299        - Removed upper value constraint for 2nd argument of built-in functions
300          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
301          "change_pitch_lfo_freq()","change_reso()", "change_cutoff()",
302          "change_amp_lfo_depth()", "change_cutoff_lfo_depth()" and
303          "change_pitch_lfo_depth()", to allow e.g. passing value 2000000 to double
304          the LFO frequency / resonance / cutoff frequency.
305        - Reduced code involved for parsing NKSP variable declarations by using 2
306          generalized grammar rules with optional components (i.e. optional value
307          assignment and optional variable qualifiers) instead of previous linear
308          combinations of grammar rules, which also fixes some edge case.
309        - NKSP language parser: track code block locations also by a) raw byte
310          position in NKSP source code string and b) length of that code block in
311          bytes (along to the already existing code block tracking by line/column);
312          and added appropriate new members to public C++ API classes like
313          'firstByte' and 'lengthBytes' to class VMSourceToken and struct CodeBlock.
314        - NKSP language: Added support for 'patch' variable qualifier (capture their
315          locations and allow replacement of their assignment expression via VM C++
316          API).
317        - Fixed incorrect EG times if standard measuring unit was passed to built-in
318          functions "change_attack()", "change_decay()" or "change_release()".
319        - Fixed intermediate function result values never having reflected any
320          standard measuring unit type.
321        - Fixed re-entrant issue with function calls which caused wrong result
322          values if the same function was called multiple times in a term
323          (specifically if metric prefixes were used).
324        - NKSP language: Just throw a warning, not an error if an array variable of
325          size zero was declared.
326        - NKSP language: Allow omitting explicit array size on array variable
327          declaration if combined with immediate value assignment
328          (e.g. declare %foo[] := ( 1, 2, 3 ) ).
329        - NKSP language: emit warning if an array variable was declared with bigger
330          array size than amount of initial values been assigned, and initialize the
331          missing array elements with zero in this case.
332        - Fixed built-in NKSP exit() function to behave as return statement.
333        - NKSP parser: Fixed crash if unary '-' operator was used on a non-number
334          data type.
335        - NKSP VM: Fixed the "release" handler being executed too often under
336          certain situations if polyphonic data was passed from "note" handler to
337          "release" handler.
338        - Fixed memory leak in NKSP parser: string tokens were allocated as C
339          strings and never freed.
340        - Fixed incorrect polyphonic data transfer from wrong note handler to
341          release handler; which also fixes no release handler being executed
342          sometimes, and due to the latter it also fixes potential crashes as some
343          polyphonic script events were never released and the engine hence was
344          running out of free script events.
345        - Fixed crash when handling array results of built-in functions
346          (e.g. "num_elements(by_marks($MARK_1)").
347        - NKSP VM: Fixed dead note events not been removed from user's event groups
348          (i.e. causing incorrect behaviour of built-in NKSP functions by_marks()
349          and set_event_mark() after max. size of event group list was exhausted).
350    
351      * test cases:
352        - Fixed compiler errors in test cases.
353        - Updated README for how to compile & run test cases.
354        - Updated test case
355          MutexTest::testDoubleLockStillBlocksConcurrentThread() to latest
356          expected behaviour of the Mutex class implementation (recursive
357          mutex type).
358        - Added test cases for NKSP core language aspects and core built-in
359          functions.
360        - Fixed thread tests segfaulting on Linux.
361        - NKSP: Added real number test cases for built-in functions exit(),
362          int_to_real(), real(), real_to_int() and int(), as well as for the
363          plus, minus and negate language operators.
364        - Added massive amount of NKSP test cases for standard measuring units and
365          'final' operator usage cases.
366        - Added NKSP test cases for (floating point tolerance aware) real number
367          equalness / unequalness comparison.
368        - Added NKSP int array and real array tests for value assignment and
369          initialization of arrays.
370        - Added NKSP test cases for built-in functions "round()", "ceil()",
371          "floor()", "sqrt()", "log()", "log2()", "log10()", "exp()", "pow()",
372          "sin()", "cos()", "tan()", "asin()", "acos()", "atan()".
373        - Added NKSP test cases for unary '+' operator.
374        - Added NKSP test cases for core built-in variables.
375        - Added thorough NKSP test cases for variable declarations.
376    
377      * GigaStudio/Gigasampler format engine:
378        - LFOTriangleIntMath and LFOTriangleIntAbsMath: Fixed FlipPhase=true
379          behaviour for start_level_mid.
380        - Changed LFO start levels: LFO1 and LFO2 both to mid, LFO3 to max. start
381          level (see discussion "GigaStudio LFO compatibility" on mailing list
382          from 2019-09-26 for details).
383        - Changed default wave form for all 3 LFOs to sine (instead of triangle;
384          see discussion "GigaStudio LFO compatibility" on mailing list from
385          2019-09-26 for details).
386        - Format extension: Added support for different LFO wave forms (currently
387          either sine [default], triangle, saw or square).
388        - Format extension: Added support for LFO phase displacement (0°..360°).
389        - Format extension: Added support for flipping LFO polarity on LFO 3
390          (in the original gig format this was only available for LFO 1 and LFO 2).
391        - Format extension: Support for additional filter types:
392          lowpass 1/2/4/6-pole, highpass 1/2/4/6-pole, bandpass 2-pole,
393          bandreject 2-pole.
394        - Fixd potential crash with polynomial interpolator and max. pitch.
395        - If minimum cutoff is defined, remap cutoff controller CC values to really
396          span the entire possible cutoff range (and avoiding a dead controller
397          zone).
398        - Implemented support for loading instrument scripts with 'patch' variables
399          (by patching these script variables with potentially overridden ones by
400          gig Instrument).
401    
402      * SFZ format engine:
403        - Fixed support for regions with loccN/hiccN conditions on more than one
404          MIDI controller.
405        - Fixed internal opcode 'xfin_hivel' falsely being set by user opcode
406          'xfin_lovel' (patch by Christian Czezatke).
407    
408      * Benchmarks:
409        - Fixed benchmarks/triang.cpp falsely having favoured "int math abs"
410          algorithm (since result of 2nd run was not accumulated).
411        - Added benchmark for saw wave (benchmarks/saw.cpp).
412        - Added benchmark for sine wave (benchmarks/sine.cpp).
413        - Added benchmark for square wave (benchmarks/square.cpp).
414        - Increased amount of benchmarks runs by factor 6 to achieve benchmark times
415          which are large enough on modern systems.
416    
417    Version 2.1.1 (27 Jul 2019)
418    
419      * Real-time instrument scripts:
420        - Fixed behavior of built-in NKSP functions change_sustain(),
421          change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
422          and change_cutoff_release().
423    
424      * general changes:
425        - Only play release trigger samples on sustain pedal up if this behaviour
426          was explicitly requested by the instrument (otherwise only on note-off).
427        - Fixed compiler warnings.
428        - Fixed compilation error when cross-compiling to Mac.
429        - FX Sends: Provide more useful error messages on routing problems
430          (see bug #169).
431        - LSCP doc: Be more clear describing the two distinct approaches
432          of using external vs. internal effects (see bug #169).
433        - "optional" class: Fixed comparison operators.
434    
435      * Gigasampler/GigaStudio format engine:
436        - Format extension: If requested by instrument then don't play release
437          trigger sample on note-off events.
438    
439      * SFZ format engine:
440        - Fixed memory leak when releasing samples
441          (fixes bug #307, patch by Jacek Roszkowski)
442        - Fixed potential crash when a sample is shared by more than one region
443          (fixes bug #308, patch by Jacek Roszkowski).
444        - Opcode 'sample': Added support for built-in sample '*silence'
445          (fixes bug #310, patch by Jacek Roszkowski).
446    
447  Version 2.1.0 (25 Nov 2017)  Version 2.1.0 (25 Nov 2017)
448    
449    * SFZ format engine:    * SFZ format engine:

Legend:
Removed from v.3372  
changed lines
  Added in v.4009

  ViewVC Help
Powered by ViewVC