forked from csound/manual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
whatsnew.xml
7140 lines (7115 loc) · 268 KB
/
whatsnew.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<section id="PrefaceWhatsNew"><title>What's new in Csound &csoundversion;</title>
<!-- <bridgehead>Release Notes for Csound 6.XX ()</bridgehead>
<para>
<itemizedlist>
<listitem>
<para>New opcodes:
<itemizedlist>
<listitem>
<simpara><link linkend=""><citetitle></citetitle></link></simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
New functionality
<itemizedlist>
<listitem>
<simpara>
</simpara>
</listitem>
<listitem>
<simpara>
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Bug fixes and improvements:
<itemizedlist>
<listitem>
<simpara>
</simpara>
</listitem>
<listitem>
<simpara>
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
Internal Changes:
<itemizedlist>
<listitem>
<simpara>
</simpara>
</listitem>
<listitem>
<simpara>
</simpara>
</listitem>
<listitem>
<simpara>
</simpara>
</listitem>
<listitem>
<simpara>
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
</itemizedlist>
</para>-->
<bridgehead>Release Notes for Csound 6.12 ()</bridgehead>
<para>
Many changes including the removal of vst2cs functionality due to a
copyright issue.
</para>
<para>
The changes made in 6.11 to raw format reading have been modified so
gen1 and diskin ignore positive file formats and use the file header,
unless the format is negative when it uses the absolute value in a raw
audio file. This should preserve most compatibility issues.
</para>
<para>
There are a number of new and improved opcodes, new facilities in
scores and many bug fixes.
</para>
<para>
<itemizedlist>
<listitem>
<para>New opcodes:
<itemizedlist>
<listitem>
<simpara><link
linkend="fluidInfo"><citetitle>fluidInfo</citetitle></link>
</simpara> retrieves program information from a currently loaded
soundfont.
</listitem>
<listitem>
New opcode <simpara><link
linkend="ftaudio"><citetitle>ftaudio</citetitle></link></simpara>
writes a ftable to an audio file; irate and triggered k-rate
version exist and k-rate version supports sync or async writing.
</listitem>
<listitem>
Version of <simpara><link
linkend="OSClisten"><citetitle>OSClisten</citetitle></link>
</simpara> that writes the data to a k-rate array now exists.
</listitem>
<listitem>
<simpara><link linkend="OSCcount"><citetitle>OSCcount</citetitle>
</link></simpara> returns the number of OSC incoming messages
pending.
</listitem>
<listitem>
<simpara><link
linkend="faustplay"><citetitle>faustplay</citetitle></link>
</simpara> and <simpara><link linkend="faustdsp">
<citetitle>faustdsp</citetitle></link></simpara> are new opcodes
splitting the faust DSP instantiation and performance.
</listitem>
<listitem>
<simpara><link
linkend="OSCbundle"><citetitle>OSCbundle</citetitle></link>
</simpara> sends a collection of similar OSC messages as a single
packet for efficiency.
</listitem>
<listitem>
<simpara><link linkend="beosc"><citetitle>beosc</citetitle></link>
</simpara> and <simpara><link linkend="beadsynt">
<citetitle>beadsynt</citetitle></link></simpara> are band enhanced
oscillator and oscillator bank. <simpara><link
linkend="bpfcos"><citetitle>bpfcos</citetitle></link></simpara>
is for breakpoint files with interpolation. Similarly <simpara>
<link linkend="lincos"><citetitle>lincos</citetitle></link>
</simpara> adds cosine interpolation to <simpara><link
linkend="linlin"><citetitle>linlin</citetitle></link></simpara>.
</listitem>
<listitem>
<simpara><link
linkend="printarray"><citetitle>printarray</citetitle></link>
</simpara> and <simpara><link linkend="reshapearray">
<citetitle>reshapearray</citetitle></link></simpara> act on
arrays.
</listitem>
<listitem>
<simpara><link
linkend="trim"><citetitle>trim</citetitle></link>
</simpara> and <simpara><link linkend="trim">
<citetitle>trim_i</citetitle></link></simpara> adjust the size of
a 1 dimensional array, either bigger or smaller, preserving data
and/or padding with zeros.
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>
Orchestra:
<itemizedlist>
<listitem>
<simpara>
New preprocessor option #includestr. This is like #include but
has macro expansion in the double-quote delimited string.
</simpara>
</listitem>
<listitem>
<simpara>Use of tied notes in subinstr fixed.</simpara>
</listitem>
<listitem>
<simpara>
Nesting macro calls more than about 10 caused a crash; now
unlimited nesting works.
</simpara>
</listitem>
<listitem>
<simpara>
Runtime error message now (usually) include a line number and a
file/macro trace.
</simpara>
</listitem>
<listitem>
<simpara>
Multiple assignments such as ka, kb = 1,2 are again supported
by the parser; it had inadvertently got lost.
</simpara>
</listitem>
<listitem>
<simpara>
The problematic use of i() with an array element directy is now
flagged as an error.
</simpara>
</listitem>
<listitem>
<simpara>
If an included file name has a "/" in it then any nested include
is relative to that directory. (Issue #973).
</simpara>
</listitem>
<listitem>
<simpara>
Redefinition of UDOs with zero output arguments fixed.
</simpara>
</listitem>
<listitem>
<simpara>
A very obscure bug in running sub-instruments, which has been
in the code for nearly a year, was fixed.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Score:
<itemizedlist>
<listitem>
<simpara>
New preprocessor option #includestr. This is like #include but
has macro expansion in the double-quote delimited string.
</simpara>
</listitem>
<listitem>
<simpara>
'd' score opcode for real-time performance. This was issue #966.
</simpara>
</listitem>
<listitem>
<simpara>Bug in np operation fixed.</simpara>
</listitem>
<listitem>
<simpara>
Use of [] syntax in a score could lead to a loss of precision
for numbers over about 1 million; older version restored.
</simpara>
</listitem>
<listitem>
<simpara>
Nesting macro calls more than about 10 caused a crash; now
unlimited nesting works.
</simpara>
</listitem>
<listitem>
<simpara>
The forms for delayed ending of sections (e 5 or s 5) now work
with fractional delays; previously only read the integer part.
</simpara>
</listitem>
<listitem>
<simpara>
If an included file name has a "/" in it then any nested include
is relative to that directory. (Issue #973).
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Modified Opcodes and Gens:
<itemizedlist>
<listitem>
<simpara>
Add optional argument to ftom for rounding answer to integer.
</simpara>
</listitem>
<listitem>
<simpara>
flooper2 and syncgrain etc now allow resampling.
</simpara>
</listitem>
<listitem>
<simpara>
chnclear can now take a list of channels to clear instead of
just one.
</simpara>
</listitem>
<listitem>
<simpara>
printf and printf_i now are like the manual: all arguments
beyond the format and trigger are optional.
</simpara>
</listitem>
<listitem>
<simpara>
prints and printks can take string arguments printed with %s.
</simpara>
</listitem>
<listitem>
<simpara>
GEN2 can now take a size of zero, which is interpreted as size
sufficient for the number of values provided.
</simpara>
</listitem>
<listitem>
<simpara>
faustcompile now includes a new optional parameter to allow it
to be run in a blocking mode. Defaults (as before) to
non-blocking.
</simpara>
</listitem>
<listitem>
<simpara>
fillarray can be run at k-rate if any of the argument/values
are k-rate.
</simpara>
</listitem>
<listitem>
<simpara>
slicearray for other than i-rate arrays runs at k-rate only.
</simpara>
</listitem>
<listitem>
<simpara>
pvstrace now has the option also to return an array containing
the bin numbers.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Utilities:
<itemizedlist>
<listitem>
<simpara>
A coding error in mixer was fixed. It was very broken.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Bugs Fixed:
<itemizedlist>
<listitem>
<simpara>
A typo in p5glove meant that the command to read the button
status as a bitmap only returned state of button A.
</simpara>
</listitem>
<listitem>
<simpara>
diskin to array fixed and also use with small ksmps.
</simpara>
</listitem>
<listitem>
<simpara>
In loscil it sometimes failed to deal with the ibas argument;
this has now been reworked to be correct.
</simpara>
</listitem>
<listitem>
<simpara>
madsr could overflow an internal counter when given a negative
p3.
</simpara>
</listitem>
<listitem>
<simpara>
Fixed mapping from threads to lua_States (issue #959).
</simpara>
</listitem>
<listitem>
<simpara>
The time calculation in flooper2, flooper, and syncgrain was
corrected.
</simpara>
</listitem>
<listitem>
<simpara>
Resampling and pitch fixed in pvstanal
</simpara>
</listitem>
<listitem>
<simpara>
Rare buffer overflow case in faust opcodes fixed.
</simpara>
</listitem>
<listitem>
<simpara>
pvsftw had an incorrect check for fft format which led to
incorrect claim of bad format; fixed.
</simpara>
</listitem>
<listitem>
<simpara>
If ksmps was 1 the opcode linenr at arate failed to work; fixed.
</simpara>
</listitem>
<listitem>
<simpara>window opcode fixed.</simpara>
</listitem>
<listitem>
<simpara>
The test for compatible subtypes of f-values in a number of pvs
opcodes was wrong, causing spurious error messages.
</simpara>
</listitem>
<listitem>
<simpara>
cosseg was broken for more than one segment; now OK.
</simpara>
</listitem>
<listitem>
<simpara>
monitor opcode did not work correctly when using multiple
processes; fixed.
</simpara>
</listitem>
<listitem>
<simpara>
in the linenr opcode if the release stage was entered before
the end of the rise the output value jumped to the end value
and then decayed, causing a glitch. This is fixed. (#1048)
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>System Changes:
<itemizedlist>
<listitem>
<simpara>
The various -zN options now reports the number of opcodes for
the request, so differs with respect to deprecated and
polymorphic opcodes.
</simpara>
</listitem>
<listitem>
<simpara>
Recompilation of named instruments totally reworked to avoid
errors and memory leaks.
</simpara>
</listitem>
<listitem>
<simpara>
The allocation of instrument names to internal numbers has been
rewritten and should now be usable with replacements in live
coding.
</simpara>
</listitem>
<listitem>
<simpara>
Printing the number allocated to a named instrument now behaves
the manual, not just for debug.
</simpara>
</listitem>
<listitem>
<simpara>
If liblo version 0.29 is available csound can be built to use
it (with a compiler flag LIBLO29) and this fixes some bugs
related to heavy/complex use of OSClisten. Unfortunately the
older 0.28 version is being distributed by some Linux distros.
</simpara>
</listitem>
<listitem>
<simpara>
The orchestra compiler has a number of new optimisations,
avoiding unnecessary assignments and doing some more expression
optimisations.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>API:
<itemizedlist>
<listitem>
<simpara>
csound->ReadScore was changed so it behaves the same as a score
in a csd or sco file. This could incorrectly give an infinite
score or not in unexpected cases.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Platform Specific:
<itemizedlist>
<listitem>
<simpara>
Bela: allow analog in and out with different channel numbers.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
</itemizedlist>
</para>
<bridgehead>Release Notes for Csound 6.11 (2018 May)</bridgehead>
<para>
There has been a great amount of internal reorganisation, which should not
affect most users. Some components are now independently managed and will
eventually be installable via a new package manager. The realtime option is
now considered stable and has the "experimental" tag removed. Special
support for the Bela platform has been introduced. There have
been more steps towards completing the arithmetic operations involving
a-arrays.
<note>Note that changes to GEN01 and diskin2 may not be backward compatible
if a non zero value is given for the format.</note>
</para>
<para>
<itemizedlist>
<listitem>
<para>New opcodes:
<itemizedlist>
<listitem>
<simpara>
<link
linkend="loscil"><citetitle>loscilphs</citetitle></link>,
<link
linkend="loscil3"><citetitle>loscil3phs</citetitle></link>
are like loscil but return the phase in addition to the audio.
</simpara>
</listitem>
</itemizedlist>
<itemizedlist>
<listitem>
<simpara>
More arithmetic between a-rate arrays and a-rate values; this
completes the arithmetic where one or more argument is an audio
array.
</simpara>
</listitem>
</itemizedlist>
<itemizedlist>
<listitem>
<simpara>
<link
linkend="balance2"><citetitle>balance2</citetitle></link>
is like balance but scales the output at a-rate,
rather than k-rate.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Score:
<itemizedlist>
<listitem>
<simpara>
Characters following a \ in a score string are treated as
escaped, so \n is a newline rather than two characters. It
handles escaped a, b, f, n, r, t and v. Other characters
following a \ ignore the backslash.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Modified Opcodes and Gens:
<itemizedlist>
<listitem>
<simpara>
print, printk2 now take an additional optional argument which
if non-zero causes the k-variable name to be printed as well as
the value.
</simpara>
</listitem>
<listitem>
<simpara>
getrow, setrow, getcol, and setcol can now act on i-rate arrays.
</simpara>
</listitem>
<listitem>
<simpara>
diskin2 was incorrectly described in the manual with respect to
the iformat parameter. Now if iformat is zero the file is
expected to have an audio header; if in the range 1-10 (rather
than 0-9 as before) then it is opened as raw with the specified
sample format. THIS MAY BE INCOMPATIBLE. For most users the
value of zero will be correct.
</simpara>
</listitem>
<listitem>
<simpara>
GEN01 now uses format 0 to get the file type from the header;
any other value indicates a raw file. THIS MAY BE INCOMPATIBLE.
For most users the value of zero will be correct.
</simpara>
</listitem>
<listitem>
<simpara>
GEN01 was incorrectly documented with respect to the format
argument. There are 9 raw formats whereas the earlier manual
stated 6.
</simpara>
</listitem>
<listitem>
<simpara>
Small change in slicearray should allow it to be used in
functional form in most cases.
</simpara>
</listitem>
<listitem>
<simpara>
The family of opcodes tb0 to tb15 and their initialisation
opcodes tb0_init to tb15_init are deprecated as multi-argument
functions are allowed.
</simpara>
</listitem>
<listitem>
<simpara>
The mode filter now does not allow a frequency in the unstable
region.
</simpara>
</listitem>
<listitem>
<simpara>
In scanu and xscanu the value of kpos is supposed to be in the
range [0,1]. This is now enforced by treating all negative
values as 0 and all values bigger than 1 as 1.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Utilities:
<itemizedlist>
<listitem>
<simpara>
src_conv is now available on Windows and MacOS.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Frontends:
<itemizedlist>
<listitem>
<simpara>
Belacsound: a new frontend specific for the Bela platform is
introduced in this version.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Bugs Fixed:
<itemizedlist>
<listitem>
<simpara>
linen was reworked to allow for long durations and overlaps.
</simpara>
</listitem>
<listitem>
<simpara>
Resetting csound caused a crash if Lua opcodes were used; fixed.
</simpara>
</listitem>
<listitem>
<simpara>
The poscil family of opcodes could give incorrect results if
used in multi-core orchestras AND another instrument changed
the f-table. This is now corrected.
</simpara>
</listitem>
<listitem>
<simpara>
Use of out with an audio array did not check that the array
dimension was not greater than the number of channels, which
caused a crash. It is now checked and truncated if too large
with a warning.
</simpara>
</listitem>
<listitem>
<simpara>
Bug in stereo versions of loscil introduced distortion;
now fixed.
</simpara>
</listitem>
<listitem>
<simpara>Fencepost error in phs fixed.</simpara>
</listitem>
<listitem>
<simpara>
gen49 read deleted memory if the file was not found; fixed.
</simpara>
</listitem>
<listitem>
<simpara>
Loading of LADSPA plugins when relying on search paths was
wrong and mangled the name; now fixed.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>System Changes:
<itemizedlist>
<listitem>
<simpara>
OPCODE6DIR{64} now can contain a colon-separated list of
directories.
</simpara>
</listitem>
<listitem>
<simpara>
The somewhat curious distinction between k-rate and a-rate
perf-time has been removed throughput, so only threads 1, 2
and 3 are used, the s-type output is not used, and some x-type
inputs have been changed for direct polymorphism. This only
matters for opcode writers as the s, and x codes and threads
4, 5, 6 and 7 will be removed in a while.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Translations:
<itemizedlist>
<listitem>
<simpara>As ever the French translations are complete.</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>API:
<itemizedlist>
<listitem>
<simpara>No changes to the API.</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Platform Specific:
<itemizedlist>
<listitem>
<simpara>
WebAudio: from this release onwards, the Csound port for the
web platforms has been merged into a single package henceforth
called 'WebAudio Csound'. There are many internal changes to
this, the AudioWorklet interface is employed wherever supported,
with a fallback to ScriptProcessorNode elsewhere. Csound is also
available in the form of independent Nodes, in addition to the
original CsoundObj API. The csound.js frontend, originally
designed for PNaCl Csound, is also ported to WebAudio Csound,
following the deprecation of that port of Csound.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
</itemizedlist>
</para>
<bridgehead>Release Notes for Csound 6.10 (2017 December)</bridgehead>
<para>
This is mostly a bugfix release, including a major bug introduced in loscil
recently. New and improved opcodes and a long orphaned GEN (53) are here, as
well as many small internal improvements. Internal changes have removed a
number of memory leaks.
</para>
<para>
<itemizedlist>
<listitem>
<para>New opcodes:
<itemizedlist>
<listitem>
<simpara>
<link linkend="midiout_i"><citetitle>midiout_i</citetitle></link>
which is like midiout, but works at i-rate.
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="chnget"><citetitle>chngetks</citetitle></link> and
<link linkend="chnset"><citetitle>chnsetks</citetitle></link> --
versions of <emphasis>chnget</emphasis> and <emphasis>chnset</emphasis>
for string channels that only run at perf-time.
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="squinewave"><citetitle>squinewave</citetitle></link>,
a mostly bandlimited shape-shifting square-pulse-saw-sinewave
oscillator with hardsync.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>New Gen and Macros:
<itemizedlist>
<listitem>
<simpara>
<link linkend="GEN53"><citetitle>GEN53</citetitle></link>
(which has been in the code but not documented for years) is now
acknowledged. It creates a linear-phase or minimum-phase impulse
response table from a source table containing a frequency
response or an impulse response.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Orchestra:
<itemizedlist>
<listitem>
<simpara>
Incorrect use of k-rate if..then.. in instrument 0 is now treated
as i-rate.
</simpara>
</listitem>
<listitem>
<simpara>
Incorrect use of k-rate operations in instrument 0 are no longer
treated as an error but a warning.
</simpara>
</listitem>
<listitem>
<simpara>
In a csd file commented-out tags were acted upon in some cases,
leading to truncated orchestras. This is now fixed.
</simpara>
</listitem>
<listitem>
<simpara>
Arrays can be assigned from i-rate and k-rate to krate and
i-rate; previously rates had to match.
</simpara>
</listitem>
<listitem>
<simpara>
The use of ! as a Boolean operation (meaning negation) is now
supported, where previously the parser accepted it but did not
use it.
</simpara>
</listitem>
<listitem>
<simpara>
Constant folding now implemented on a wide range of arithmetic.
</simpara>
</listitem>
<listitem>
<simpara>
Attempts to use an undefined macro produce a syntax error now.
</simpara>
</listitem>
<listitem>
<simpara>
Missing " (or other terminator) in #include is noticed and
the #include is ignored.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Score:
<itemizedlist>
<listitem>
<simpara>
In a csd file commented-out tags were acted upon in some cases,
leading to truncated scores. This is now fixed.
</simpara>
</listitem>
<listitem>
<simpara>The evaluation form [..] can now be nested.</simpara>
</listitem>
<listitem>
<simpara>
The extract feature (-x from command line) now works.
</simpara>
</listitem>
<listitem>
<simpara>
Use of the score opcode x could cause spurious error messages
which are now suppressed.
</simpara>
</listitem>
<listitem>
<simpara>
After calling a undefined macro the rest of the line is ignored.
</simpara>
</listitem>
<listitem>
<simpara>
A couple of bugs in repeated sections (r opcode) have been removed.
</simpara>
</listitem>
<listitem>
<simpara>
Missing " (or other terminator) in #include is noticed and the
#include is ignored.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Options:
<itemizedlist>
<listitem>
<simpara>
The --tempo (and -t) option now can be fractional; was
previously limited to an integer.
</simpara>
</listitem>
<listitem>
<simpara>
new option: --udp-console=address:port redirects console to a
remote address:port.
</simpara>
</listitem>
<listitem>
<simpara>
new option: --udp-mirror-console=address:port mirrors the
console to a remote address:port.
</simpara>
</listitem>
<listitem>
<simpara>
new option: --udp-echo echoes messages sent to the UDP server.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Modified Opcodes and Gens:
<itemizedlist>
<listitem>
<simpara>loscil/loscil3 accept floating point increment.</simpara>
</listitem>
<listitem>
<simpara>OSCraw closes socket after use.</simpara>
</listitem>
<listitem>
<simpara>
fout can now generate ogg format, as well as accepting -1 to
mean the same format as -o uses.
</simpara>
</listitem>
<listitem>
<simpara>
bitwise and opcode (&) at a-rate corrected for sample-accurate
mode.
</simpara>
</listitem>
<listitem>
<simpara>
slicearray has an optional additional argument to give a stride
to the slice.
</simpara>
</listitem>
<listitem>
<simpara>chnset now can have variable channel names.</simpara>
</listitem>
<listitem>
<simpara>
a-rate arrays may be added, subtracted, multiplied and scaled.
This is a start on a-rate array arithmetic.
</simpara>
</listitem>
<listitem>
<simpara>dssiinit improved removing some crashes.</simpara>
</listitem>
<listitem>
<simpara>partials improved to remove a fencepost issue.</simpara>
</listitem>
<listitem>
<simpara>vco2ift fixed when an existing table is used.</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Frontends:
<itemizedlist>
<listitem>
<simpara>
Emscripten: Now compiled as WebAssembly (runs in all major
browsers). API now somewhat more conformed to other HTML5 APIs.
</simpara>
</listitem>
<listitem>
<simpara>
CsoundQT: Now built from master branch for improved stability.
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
<listitem>
<para>Bug fixed:
<itemizedlist>
<listitem>
<simpara>