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

Diff of /linuxsampler/trunk/ChangeLog

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

revision 3285 by schoenebeck, Thu Jun 22 10:45:38 2017 UTC revision 3588 by schoenebeck, Sun Sep 1 16:06:48 2019 UTC
# Line 1  Line 1 
1  Version SVN trunk (?)  Version SVN trunk (?)
2    
3      * general changes:
4        - Fixed compiler error in Pool.h.
5        - Require C++14 compiler support.
6        - Autoconf: Added m4/ax_cxx_compile_stdcxx.m4 macro which is used
7          for checking in configure for C++14 support (as mandatory
8          requirement) and automatically adds compiler argument if required
9          (e.g. -std=C++14).
10        - RTMath: Implemented floating point comparison methods
11          fEqual32(float,float) and fEqual64(double,double) which take the
12          expected floating point tolerances into account.
13    
14      * Real-time instrument scripts:
15        - Added method ScriptVM::setExitResultEnabled() which allows to
16          explicitly enable the built-in exit() function to optionally accept
17          one function argument; the value of the passed exit() function
18          argument will then become available by calling
19          VMExecContext::exitResult() after script execution.
20        - 64 bit support for NKSP integer scripts variables (declare $foo).
21        - Variable names, function names and preprocessor condition names must start
22          with a regular character (a-z or A-Z); starting them with a digit or
23          underscore is not allowed.
24        - NKSP parser fix: equal comparison operator "=" and not equal comparison
25          operator "#" must only accept integer operands.
26        - NKSP language: Implemented support for standard units like Hertz, seconds,
27          Bel including support for metric unit prefixes; so one can now e.g.
28          conveniently use numbers in scripts like "5us" meaning "5 microseconds",
29          or e.g. "12kHz" meaning "12 kilo Hertz", or e.g. "-14mdB" meaning
30          "minus 14 Millidecibel", or e.g. "28c" meaning "28 cents" (for tuning).
31        - NKSP language: Introduced "final" operator "!" which is specifically
32          intended for synthesis parameter values to denote that the synthesis
33          parameter value is intended to be the "final" value for that synthesis
34          parameter that should explicitly be used by the engine and thus causing
35          the sampler engine to ignore all other modulation sources for the same
36          synthesis parameter (like e.g. LFO, EG); by simply prefixing a value,
37          variable or formula with this new "!" operator the expression is marked as
38          being "final".
39        - NKSP script editor API: Added support for detecting standard unit tokens
40          and their potential metric prefix token.
41        - NKSP language: Added support for NKSP real number literals and
42          arithmetic operations on them (e.g. "(3.9 + 2.9) / 12.3 - 42.0").
43        - NKSP language: Added support for NKSP real number (floating point) script
44          variables (declare ~foo).
45        - NKSP language: Added support for NKSP real number (floating point) array
46          script variables (declare ?foo[]).
47        - Built-in script function "message()" accepts now real number argument as
48          well.
49        - Added built-in script function "real_to_int()" and its short hand form
50          "int()" for casting from real number to integer in NKSP scripts.
51        - Added built-in script function "int_to_real()" and its short hand form
52          "real()" for casting from integer to real number in NKSP scripts.
53        - Allow built-in exit() function to potentially accept real number type
54          argument as well.
55        - Built-in script functions may have a different return type depending on
56          the arguments passed to the function.
57        - Built-in script function "abs()" optionally accepts and returns real
58          number.
59        - Built-in script functions "min()" and "max()" optionally accept real
60          number arguments and return real number as result in that case.
61        - NKSP VM API: Allow units and 'final'ness to be returned as result from
62          built-in functions (added methods VMFunction::returnUnitType() and
63          VMFunction::returnsFinal() for that purpose which must be implemented by
64          built-in function implementations).
65        - NKSP language: Allow metric unit prefixes of numeric scalar and array
66          variables to be changed freely at runtime (unlike unit types like Hz etc.
67          which are still sticky, parse-time features of variables which cannot be
68          changed at runtime for the intentional sake of determinism).
69        - NKSP language: 'final' values are prohibited for array variables for now
70          (attempt causes a parsers error).
71        - NKSP language: expressions with unit types (e.g. Hz) are prohibited for
72          conditions of runtime control structures like if(), while(), select()
73          (attempt causes a parser error).
74        - NKSP VM API: Allow built-in functions to perform their own, individual
75          parse time checks of arguments going to be passed to the function at
76          runtime (added method VMFunction::checkArgs() for that purpose).
77        - NKSP language: raise parser warning if only one operand of binary
78          operators (like logical 'or' comparison) contain a 'final' value (because
79          it would always yield in a 'final' result in such cases).
80        - NKSP language: Allow comparison (=, #, <, >, <=, >=) of values with
81          different metric unit prefixes, which will behave as expected (e.g.
82          result of expression '1000us < 2ms' is true).
83        - NKSP language: Allow adding values with different metric unit prefixes
84          (e.g. result of expression '100Hz + 5kHz' is '5100Hz').
85        - NKSP language: Allow subtracting values with different metric unit
86          prefixes (e.g. result of expression '1ms - 20us' is '980us').
87        - NKSP language: Allow multiplying with any metric unit prefixes
88          (e.g. result of expression '2k * 3ms' is '6s'), however multiplications
89          with unit types on both sides (e.g. '2s * 2s') is still prohibited since
90          we don't have any considerable practical use for a term like '4s^2'
91          (hence any attempt multiplying two unit types still causes parser error).
92        - NKSP language: Allow dividing by any metric unit prefixes and allow
93          division of same unit type on both sides (e.g. expression '8kHz / 1000Hz'
94          yields in unit free result '8'). So this is now a way to cast units away
95          e.g. for passing the result to other expressions, certain function calls
96          or variables which are not accepting any units (or that specific unit).
97        - NKSP language: integer arrays and real number arrays can now be converted
98          to strings (e.g. for dumping their content with message() calls for
99          script debugging purposes).
100        - NKSP language: expressions and variables with units are now correctly
101          casted to strings (e.g. with message() calls).
102        - NKSP language: comparing real numbers for equalness (e.g. '~foo = 3.1') or
103          unequalness (e.g. '~foo # 3.1') is now less strict and takes the expected
104          floating point tolerances into account.
105        - NKSP VM API: Added methods VMScalarNumberExpr::evalCastInt() and
106          VMScalarNumberExpr::evalCastReal().
107        - NKSP VM API: Added base class 'VMNumberArrayExpr' for classes
108          'VMIntArrayExpr' and 'VMRealArrayExpr'.
109        - NKSP VM API: replaced all unitPrefix() (parse time) methods by
110          unitFactor() (runtime) methods.
111        - Built-in function "exit()" supports now returning units and 'final'ness
112          for test cases.
113        - The following built-in functions support now units as well: "abs()",
114          "random()", "inc()", "dec()", "in_range()", "min()", "max()",
115          "real_to_int()", "int()", "int_to_real()" and "real()".
116        - Built-in functions "array_equal()", "search()" and "sort()" support now
117          real number arrays (correctly) as well.
118        - Added individual parse time checks of arguments to be passed to built-in
119          functions "random()", "inc()", "dec()", "in_range()", "min()", "max()",
120          "array_equal()" and "search()" specific for their individual purposes.
121        - NKSP VM refactoring: Renamed all methods, functions and classes matching
122          pattern *ScalarNumber* to simply *Number* (that is i.e. classes
123          VMScalarNumberExpr -> VMNumberExpr, ScalarNumberExpr -> NumberExpr,
124          ScalarNumberVariable -> NumberVariable, ScalarNumberBinaryOp ->
125          NumberBinaryOp, VMScalarNumberResultFunction -> VMNumberResultFunction,
126          method VMExpr::asScalarNumberExpr() -> VMExpr::asNumber(), function
127          isScalarNumber() -> isNumber()).
128        - NKSP VM API: Added 4 overridden methods to class VMNumberExpr:
129          evalCastInt(MetricPrefix_t), evalCastInt(MetricPrefix_t,MetricPrefix_t),
130          evalCastReal(MetricPrefix_t), evalCastReal(MetricPrefix_t,MetricPrefix_t)
131          as convenient methods for automatically converting values to expected
132          metric value basis.
133        - Built-in function "wait()" accepts now both integers and real numbers as
134          argument.
135        - NKSP VM API cleanup: Get rid of legacy method
136          VMFunction::argType(vmint iArg) which was already superseded by its new
137          replacement VMFunction::acceptsArgType(vmint iArg, ExprType_t type).
138        - NKSP parser: if wrong argument type was passed to a built-in function and
139          that built-in function accepts more than one data type for the argument,
140          then show all supported data types as parser error message.
141        - Built-in function "play_note()" accepts now real numbers and seconds as
142          unit type as well for its 3rd and 4th function arguments.
143        - The following built-in functions accept now real numbers as well for their
144          2nd function argument: "change_vol()", "change_tune()", "change_cutoff()",
145          "change_attack()", "change_decay()", "change_release()",
146          "change_sustain()", "change_cutoff_attack()", "change_cutoff_decay()",
147          "change_cutoff_sustain()", "change_cutoff_release()",
148          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
149          "change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()",
150          "change_pan_time()", "fade_in()", "fade_out()", "change_play_pos()".
151        - Fixed built-in function "change_play_pos()" not having accepted metric
152          prefixes at all.
153        - Fixed the following built-in functions having misinterpreted values given
154          with unit type (for their 2nd argument) as if they were relative values
155          (that is as if they were passed without a unit type): "change_attack()",
156          "change_decay()", "change_release()", "change_cutoff_attack()",
157          "change_cutoff_decay()", "change_cutoff_release()".
158        - Fixed the following built-in functions having applied completely wrong
159          'final' values: "change_sustain()", "change_cutoff_sustain()" (since the
160          respective EGs being their modulation sink assume uint data type with
161          value range 0..1000 instead of 0.0..1.0.
162        - Added individual parse-time checks of function arguments for the following
163          built-in functions: "play_note()", "note_off()", "set_event_mark()",
164          "delete_event_mark()", "by_marks()", "change_cutoff()", "change_attack()",
165          "change_decay()", "change_release()", "change_cutoff_attack()",
166          "change_cutoff_decay()", "change_cutoff_release()",
167          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
168          "change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()" and
169          "change_pan_time()".
170        - Don't abort function call if unit type was used and at the same time
171          'final' operator was omitted for the primary value argument of the
172          following built-in functions: "change_cutoff()", "change_attack()",
173          "change_decay()", "change_release()", "change_cutoff_attack()",
174          "change_cutoff_decay()", "change_cutoff_release()",
175          "change_amp_lfo_freq()", "change_cutoff_lfo_freq()",
176          "change_pitch_lfo_freq()", "change_vol_time()", "change_tune_time()",
177          "change_pan_time()", instead imply 'final'ness at runtime and raise an
178          appropriate parser warning at parse time.
179    
180      * test cases:
181        - Fixed compiler errors in test cases.
182        - Updated README for how to compile & run test cases.
183        - Updated test case
184          MutexTest::testDoubleLockStillBlocksConcurrentThread() to latest
185          expected behaviour of the Mutex class implementation (recursive
186          mutex type).
187        - Added test cases for NKSP core language aspects and core built-in
188          functions.
189        - Fixed thread tests segfaulting on Linux.
190        - NKSP: Added real number test cases for built-in functions exit(),
191          int_to_real(), real(), real_to_int() and int(), as well as for the
192          plus, minus and negate language operators.
193        - Added massive amount of NKSP test cases for standard measuring units and
194          'final' operator usage cases.
195        - Added NKSP test cases for (floating point tolerance aware) real number
196          equalness / unequalness comparison.
197        - Added NKSP int array and real array tests for value assignment and
198          initialization of arrays.
199    
200    Version 2.1.1 (27 Jul 2019)
201    
202      * Real-time instrument scripts:
203        - Fixed behavior of built-in NKSP functions change_sustain(),
204          change_cutoff_attack(), change_cutoff_decay(), change_cutoff_sustain()
205          and change_cutoff_release().
206    
207      * general changes:
208        - Only play release trigger samples on sustain pedal up if this behaviour
209          was explicitly requested by the instrument (otherwise only on note-off).
210        - Fixed compiler warnings.
211        - Fixed compilation error when cross-compiling to Mac.
212        - FX Sends: Provide more useful error messages on routing problems
213          (see bug #169).
214        - LSCP doc: Be more clear describing the two distinct approaches
215          of using external vs. internal effects (see bug #169).
216        - "optional" class: Fixed comparison operators.
217    
218      * Gigasampler/GigaStudio format engine:
219        - Format extension: If requested by instrument then don't play release
220          trigger sample on note-off events.
221    
222      * SFZ format engine:
223        - Fixed memory leak when releasing samples
224          (fixes bug #307, patch by Jacek Roszkowski)
225        - Fixed potential crash when a sample is shared by more than one region
226          (fixes bug #308, patch by Jacek Roszkowski).
227        - Opcode 'sample': Added support for built-in sample '*silence'
228          (fixes bug #310, patch by Jacek Roszkowski).
229    
230    Version 2.1.0 (25 Nov 2017)
231    
232    * SFZ format engine:    * SFZ format engine:
233      - added support for <global>, <master> and #define (patch by Alby M)      - added support for <global>, <master> and #define (patch by Alby M)
234      - Removed code duplication in SFZ file loading code.      - Removed code duplication in SFZ file loading code.
# Line 7  Version SVN trunk (?) Line 236  Version SVN trunk (?)
236        load real-time instrument script file (NKSP script language).        load real-time instrument script file (NKSP script language).
237      - Implemented opcode set_ccN (initial patch by Giovanni Senatore).      - Implemented opcode set_ccN (initial patch by Giovanni Senatore).
238      - Fixed unintended volume fade-in of voices under certain conditions.      - Fixed unintended volume fade-in of voices under certain conditions.
239        - sfz parser: allow missing space between header and opcode
240    
241    * Gigasampler/GigaStudio format engine:    * Gigasampler/GigaStudio format engine:
242      - Fixed clicks and pumping noise with Lowpass Turbo filter on very low      - Fixed clicks and pumping noise with Lowpass Turbo filter on very low
243        cutoff settings.        cutoff settings.
244        - Got rid of resembling an ancient GSt misbehavior which did not pitch at
245          all if an up-pitch of more than 40 semi tones was requested (I don't
246          think there is any stock gig sound that requires this behavior to
247          resemble its original sound).
248        - Added support for controlling whether the individual EGADSR stages may
249          be aborted (as LinuxSampler extension to the original GigaStudio 4
250          format).
251    
252    * general changes:    * general changes:
253      - fixed printf type errors (mostly in debug messages)      - fixed printf type errors (mostly in debug messages)
# Line 44  Version SVN trunk (?) Line 281  Version SVN trunk (?)
281        sub threads is 16-byte aligned        sub threads is 16-byte aligned
282      - fixed numerous compiler warnings      - fixed numerous compiler warnings
283      - Fixed invalid (note-on) event ID being assigned to new Note objects.      - Fixed invalid (note-on) event ID being assigned to new Note objects.
284        - Revised fundamental C++ classes "Thread", "Mutex" and "Condition" which
285          fixes potential undefined behavior.
286        - Fixed Note object leak when triggering notes on keys which did not
287          have a valid sample mapped (fixes bug #252).
288        - Fixed compilation errors when compiling with CONFIG_DEVMODE enabled.
289        - linuxsampler binary fix: option --create-instruments-db ignored
290          subsequent optional argument due to glibc's implementation oddity
291          which expects a "=" sign, but no space between them.
292    
293    * packaging changes:    * packaging changes:
294      - removed unnecessary dependency to libuuid      - removed unnecessary dependency to libuuid
295        (originated by libgig's usage of it)        (originated by libgig's usage of it)
296      - Automake: set environment variable GCC_COLORS=auto to allow GCC to      - Automake: set environment variable GCC_COLORS=auto to allow GCC to
297        auto detect whether it (sh/c)ould output its messages in color.        auto detect whether it (sh/c)ould output its messages in color.
298        - Debian: Fixed packaging error about invalid "Source-Version"
299          substitution variable.
300        - Debian: Raised Debian compatibility level to Debian 9 "Stretch".
301        - Debian: Added build dependency to libsqlite3-dev for building
302          linuxsampler with instruments DB support.
303    
304    * Real-time instrument scripts:    * Real-time instrument scripts:
305      - Implemented scheduler for delayed MIDI events and for suspended scripts.      - Implemented scheduler for delayed MIDI events and for suspended scripts.
# Line 210  Version SVN trunk (?) Line 460  Version SVN trunk (?)
460      - Print a time stamp along to each call of built-in function "message()".      - Print a time stamp along to each call of built-in function "message()".
461      - ScriptVM API: Added VMParserContext::preprocessorComments() which allows      - ScriptVM API: Added VMParserContext::preprocessorComments() which allows
462        to retrieve all code blocks filtered out by the preprocessor.        to retrieve all code blocks filtered out by the preprocessor.
463        - Added built-in script function "fork()".
464        - Added built-in array variable %NKSP_CALLBACK_CHILD_ID[].
465        - Added built-in variable $NKSP_CALLBACK_PARENT_ID.
466        - Fixed potential crash when accessing dynamic built-in array variables.
467        - Added built-in script function "callback_status()".
468        - Added built-in constant $CALLBACK_STATUS_TERMINATED.
469        - Added built-in constant $CALLBACK_STATUS_QUEUE.
470        - Added built-in constant $CALLBACK_STATUS_RUNNING.
471        - Removed max. value limitation of built-in functions "change_attack()",
472          "change_decay()" and "change_release()" to i.e. allow passing 2000000
473          for doubling the respective time.
474        - NKSP script editor syntax highlighting API: Fixed app termination due
475          to a lexer start condition stack underrun.
476        - NKSP preprocessor: Fixed wrong behavior on nested USE_CODE_IF() and
477          USE_CODE_IF_NOT() preprocessor statements.
478        - NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE, which
479          can be set to disable all subsequent built-in "message()" function calls
480          on preprocessor level.
481        - Implemented built-in script function "change_sustain()".
482        - NKSP script editor syntax highlighting API: catch all fatal lexer errors,
483          to avoid the editor app to crash on ill-formed text input.
484        - Added built-in script function "change_pan_time()".
485        - Added built-in script function "change_pan_curve()".
486        - Added built-in script function "change_cutoff_attack()".
487        - Added built-in script function "change_cutoff_decay()".
488        - Added built-in script function "change_cutoff_sustain()".
489        - Added built-in script function "change_cutoff_release()".
490        - Added built-in script function "change_cutoff_lfo_depth()".
491        - Added built-in script function "change_cutoff_lfo_freq()".
492    
493    * Instruments DB:    * Instruments DB:
494      - Fixed memory access bug of general DB access code which lead to      - Fixed memory access bug of general DB access code which lead to

Legend:
Removed from v.3285  
changed lines
  Added in v.3588

  ViewVC Help
Powered by ViewVC