forked from csound/csound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
13371 lines (8832 loc) · 375 KB
/
ChangeLog
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
2012-02-09 john ffitch <[email protected]>
* Opcodes/ugsc.c (hilbertset): Remove unnecessary arrays
2012-02-06 john ffitch <[email protected]>
* H/version.h: VERSION 5.16.1
2011-11-30 john ffitch <[email protected]>
* Opcodes/pitch.c (impulse): If next is negative time, make it
absolute value
2011-10-28 john ffitch <[email protected]>
* Opcodes/socksend.c (send_send, send_sendS): Added optional
format message as INT16_LE and remove MTFU check
2011-10-14 John ff <[email protected]>
* Opcodes/tabvars.c (ftab2tab):
(tab2ftab): New opcodes
2011-10-12 John ff
* VERSION 5.14
2011-06-21 john ffitch <[email protected]>
* Opcodes/wiimote.c (wii_data_init): Return value missing
(wii_data_inits): Ditto
2011-05-25 John ff <[email protected]>
* Engine/fgens.c (nextval): Ensure c moves on if not a number
2011-05-19 john ffitch <[email protected]>
* OOps/cmath.c (exprndiset, kexprndi, aexprndi): New code for
exprandi opcode; also cauchyi
2011-05-05 john ffitch <[email protected]>
* SConstruct (optionsFilename): Try to check that the custom.py exists
2011-04-10 john ffitch <[email protected]>
* OOps/aops.c (is_NaN, is_NaNa): New function
(is_inf, is_infa): New function
2011-03-17 john ffitch <[email protected]>
* Engine/csound_orc_expressions.c (csound_orc_expand_expressions):
Generate kgoto rather than goto. Not totally sure this is right yet
2011-02-09 john ffitch <[email protected]>
* util1/csd_util/makecsd.c (main): new options for MIDI files and
score processing; licence control as well
* util1/csd_util/base64.c (encode_file): Added extra arg to select tags
2011-01-20 john ffitch <[email protected]>
* Opcodes/mp3in.c (mp3len): New code
* SConstruct: Add building of fareyseq/fareygen which got lost
2011-01-17 john ffitch <[email protected]>
* H/version.h: VERSION 5.13
2011-01-13 john ffitch <[email protected]>
* OOps/ugens2.c (ko1set): ensure that the increment cannot be zero
2011-01-10 john ffitch <[email protected]>
* Engine/fgens.c (gen49): Use csound->FileOpen2 rather than open
to get searching
(gen49): buffer used was in wrong units (chars v shorts)
2010-12-28 john ffitch <[email protected]>
* Engine/symbtab.c (add_token): remove message if Opcode/Function
confusion
2010-12-18 john ffitch <[email protected]>
* Opcodes/gab/tabmorph.c (atabmorphia): Fixed editing error that
would have caused opcode to scribble over memory
2010-12-17 John ff <[email protected]>
* Opcodes/gab/vectorial.c: Lots of optimisations and corrections
2010-12-10 john ffitch <[email protected]>
* Opcodes/gab/gab.c (isChanged_set): Initialise p->old_inargs
2010-12-05 john ffitch <[email protected]>
* H/aops.h (struct INCH): Rewritten
* OOps/aops.c (inch_opcode): Rewritten
* Engine/entry1.c: Allow multiple args in inch
* Engine/csound_orc.l (do_at): New code to support @ and @@ operators
2010-11-28 john ffitch <[email protected]>
* Engine/symbtab.c: Added cent as function
2010-11-27 john ffitch <[email protected]>
* OOps/ugens3.c (adsyn): check that ktogo is never zero
2010-11-16 John ff <[email protected]>
* Top/main.c (csoundCompile): and call macro inits
* Engine/csound_orc.l: Add standard macro initialisation code to lexer
2010-11-12 John ff <[email protected]>
* Engine/csound_orc_semantics.c (handle_polymorphic_opcode):
Calculating c before switch can lead to following a null
pointer. Moved calculation to where it is needed.
2010-11-05 John ff <[email protected]>
* OOps/ugens4.c (riset, rndset, rhset): Use Warning rather than Message
2010-11-04 John ff <[email protected]>
* Opcodes/pvsbasic.c (MAXOUTS): Extend upto 16 outputs
(localops): Use F format in pvstanal
2010-10-12 john ffitch <[email protected]>
* Engine/csound_orc.y: Allow labels in exprlists
2010-10-08 John ff <[email protected]>
* OOps/cmath.c (ipow, apow): If normalisation is zero make it 1;
Needed in new parser as optional arg not handled
* csound_orc.l: Many changes in macros and stack of inputs
2010-09-23 john ffitch <[email protected]>
* Opcodes/fout.c (sprints): Attempt to fix %%->% problem
2010-09-18 john ffitch <[email protected]>
* Engine/csound_orc_expressions.c (create_expression): Unary minus
should use i rate if it can
2010-09-17 john ffitch <[email protected]>
* SConstruct:
* Top/csound.c: Make new parser default
2010-09-02 Michael Gogins <[email protected]>
* Corrected signature of fluidAllOut opcode, and fencepost error
in that opcode.
* Fixed order of processing in CsoundVST audio output callbacks.
2010-09-02 Michael Gogins <[email protected]>
* Migrated Windows compiler to MinGW GCC 4.4.0 from Qt for all
third party and Csound executables. This compiler generates dw2
exception handling code.
* Fixed up examples to execute in their own directories.
* Changed csoundSetMessageCallback to reset the callback to
csoundDefaultMessageCallback if the user sets the callback to
null, in order to prevent segment faults.
2010-09-01 john ffitch <[email protected]>
* Opcodes/gab/gab.c (adsynt2): Phase not handled correctly
2010-08-31 john ffitch <[email protected]>
* Engine/csound_orc_expressions.c: Many changes to make if_then
etc work
2010-08-28 Michael Gogins <[email protected]>
* Replaced csound-build.tex with
How_to_Build_Csound_on_Windows.doc, in Microsoft Word format,
which should be more accessible to users.
* Changed multi-threading in the head branch to use OpenMP instead
of PThreads, for greater clarity and maintainability.
2010-08-26 john ffitch <[email protected]>
* Engine/csound_orc_expressions.c (create_cond_expression): New
code to deal with (a?b:c) variant
(is_expression_node): Added S_Q to expression operators
(create_expression): Call create_cond_expression
2010-08-25 John ff <[email protected]>
* Engine/insert.c (insert): In pset case no not zero excess opcodes
2010-08-10 Michael Gogins <[email protected]>
* Engine/typetabl.h: Supplied missing type mask for 'J' type code,
i.e. k-rate scalar defaulting to -1, used in "STK" opcodes and others.
* Opcodes/stk/STKOpcodes.cpp: Changed threading from 5 to 3,
changed MIDI controller number and value parameters to 'J' type.
* Updated environment, build, and installer scripts for new Windows
version built on new Core i7, Windows 7 computer.
2010-08-09 john ffitch <[email protected]>
* InOut/libsnd.c (sfopenin): Correct warning message
* Top/csound.c ("C"): Default value of inchnls is now -1
* Engine/otran.c (oload): Set inchnls to nchnls if not explicit
2010-08-03 john ffitch <[email protected]>
* Engine/csound_orc.y (ifac): Typo -- used S_MOD rather than S_DIV
2010-08-01 john ffitch <[email protected]>
* Top/csound.c (csoundAddSpinSample): Needs to use nchnls_i
2010-07-31 john ffitch <[email protected]>
* Engine/csound_orc_semantics.c (handle_optional_args):
* Engine/rdorch.c (getoptxt): Added J arg type
2010-07-28 John ff <[email protected]>
* Opcodes/urandom.c (urand_run, urand_init, urand_deinit): New
code (LINUX ONLY)
2010-07-27 john ffitch <[email protected]>
* Top/csmodule.c (csoundCheckOpcodeDeny): Complete function vis
CS_OMIT_LIBS environment
2010-07-26 john ffitch <[email protected]>
* Top/csmodule.c (csoundCheckOpcodeDeny): New function (INCOMPLETE)
(csoundLoadModules): Check to see if library denied
2010-07-20 john ffitch <[email protected]>
* Engine/sort.c (ordering): Fixed stupidity of using int where
MYFLT was needed
* Opcodes/grain.c (ags): Added check that kglen is strictly positive
2010-07-19 john ffitch <[email protected]>
* Engine/sort.c (ordering): take account of negative p3
2010-07-14 john ffitch <[email protected]>
* Opcodes/mp3in.c (mp3in): Deal with case of end of data
2010-07-13 john ffitch <[email protected]>
* Engine/fgens.c (gen23): Typo in check for extra numbers removed
2010-07-08 john ffitch <[email protected]>
* OOps/sndinfUG.c (filevalid):
* Engine/entry1.c:
* H/entry1.h: Added filevalid opcode
* H/sndinfUG.h (struct): Added FILEVALID structure
2010-07-04 john ffitch <[email protected]>
* Engine/musmon.c (process_midi_event):
* Engine/insert.c (insert, MIDIinsert, insert_event):
* Engine/auxfd.c (auxchprint): Print name of instrument if available
(fdchprint): ditto
2010-07-03 john ffitch <[email protected]>
* Engine/sort.c (ordering): Rewrote to make clearer and complete
* H/sort.h (srtblk): Changed order of fields to avoid overwrite
* Engine/extract.c: Added lineo field to dummy events
2010-06-28 john ffitch <[email protected]>
* Opcodes/pitch0.c (maxalloc, cpuperc, instcount) Allow named
instruments
2010-06-24 john ffitch <[email protected]>
* Engine/sort.c (ordering): Added ordering on line number if all
else fails
* H/csoundCore.h (EVTBLK): Added array of chars for strings
2010-05-26 john ffitch <[email protected]>
* Opcodes/ftgen.c (ftgen): Need to deal with fp[5] in named gen case
2010-05-23 john ffitch <[email protected]>
* Engine/fgens.c (hfgens): Check was against GENMAX rather than
csound->genmax
* Opcodes/ftgen.c (ftgen): Allow for named GENs
* Top/csound.c (csoundGetNamedGens): New API function
* Opcodes/fareyseq.c (tableshuffle): New code for two opcodes
2010-05-16 john ffitch <[email protected]>
* Opcodes/pitch.c (medfiltset):
(medfilt): New code
2010-05-10 john ffitch <[email protected]>
* Opcodes/fareygen.c:
* Opcodes/fareyseq.c: New code
* SConstruct: Added farey sequence GEN and opcodes
2010-05-09 john ffitch <[email protected]>
* install.py: Added atsa to binaries
2010-05-03 john ffitch <[email protected]>
* OOps/ugens6.c (delay1): use memmove rather than a loop
2010-04-25 john ffitch <[email protected]>
* Opcodes/uggab.c (lineto): Some changes -- seems better
* OOps/ugens3.c (adsyn): Sorted out confusion over int32 and MYFLT
* OOps/ugens5.c (atonex): Fix bug; it was repeating the filter to
the input rather than cascading
(resonx):
(tonex): Same error as atonex
* Opcodes/gab/gab.c (adsynt2_set): Brought into line with
adsynt_set, and revised
(adsynt2_set): Initialisation of amp and frequency table was
totally wrong
2010-04-10 john ffitch <[email protected]>
* Engine/fgens.c (gen41): Added check for positive probability
2010-04-05 john ffitch <[email protected]>
* Opcodes/sndwarp.c (sndwarp): The attempt to give only one
warning message was wrong. Think OK now??
2010-03-24 john ffitch <[email protected]>
* Top/main.c (csoundCompile): Removed spurious BETA check
2010-03-23 jpff <[email protected]>
* Engine/sread.c (sget1): Remove repeats free
2010-03-22 john ffitch <[email protected]>
* Engine/fgens.c (gen28): Typo -- freed x rather than y
2010-03-16 john ffitch <[email protected]>
* Engine/sort.c: Code replaced with smoothsort code
2010-03-13 john ffitch <[email protected]>
* Engine/smoothsort.c (sort): Deal with case of no e event
2010-03-12 jpff <[email protected]>
* SConstruct: Added smoothSort option to control building
* Engine/smoothsort.c: New drop-in replacement for sort.c using a
fancier sort algorithm
2010-02-28 john ffitch <[email protected]>
* OOps/ugrw1.c (sprints): A format with a % but no arg would cause
a crash
2010-02-25 john ffitch <[email protected]>
* Opcodes/gab/gab.c: Added range checks to the fast table opcodes
2010-02-21 john ffitch <[email protected]>
* OOps/aops.c (aassign): Correct typo in arguments
* Engine/rdorch.c (splitline): Rework \ inside strings
2010-02-15 jpff <[email protected]>
* Engine/typetabl.h (]): Need to add p to I case
* Engine/rdorch.c (rdorchfile): Do not increment lincnt in line
continuation mode
2010-02-13 john ffitch <[email protected]>
* OOps/aops.c (minit): Ensure a,b=b,a works
2010-02-12 john ffitch <[email protected]>
* OOps/aops.c (minit, mainit): new code for multiple init
* Engine/entry1.c: Changed init to multiple version
2010-01-24 john ffitch <[email protected]>
* Engine/sread.c (init_smacros): Define INF macro in scores as well
(getscochar): Read 'z' as infinity
* Engine/rdorch.c (init_math_constants_macros): Added INF macro
for infinity in orchestra
2010-01-17 john ffitch <[email protected]>
* VERSION 5.12
a2010-01-16 john ffitch <[email protected]>
* Engine/otran.c (oload): Need to check the first 6 variables, up
from 5 due to input channel code
2010-01-11 john ffitch <[email protected]>
* Engine/fgens.c (gen28, gen31, gen32, gen33, gen34): Used
malloc/free for local memory
* InOut/widgets.cpp (fl_callbackExecButton): Freed memory
allocated in Windows case
2010-01-08 mantaraya36 <[email protected]>
* Engine/insert.c: Allow turning off non-indefinite instruments from negative score events. By John ffitch.
2010-01-08 john ffitch <[email protected]>
* Engine/musmon.c (musmon): Corrected csound->inchnls to csound->nchnls
* Engine/csound_orc.y (param): Alter precedence of ? operator
2010-01-06 jpff <[email protected]>
* Opcodes/fout.c (fprintf_set): Set line buffering
2010-01-02 john ffitch <[email protected]>
* Opcodes/uggab.c (loopxseg): Fixed bug on shape
2009-12-28 john ffitch <[email protected]>
* Engine/linevent.c (sensLine):
* Engine/musmon.c (insert_score_event_at_sample): Allow too few
arguments in f -x case
2009-12-27 john ffitch <[email protected]>
* Opcodes/uggab.c (loopxseg): New code for loopxseg opcode
2009-12-26 john ffitch <[email protected]>
* Opcodes/uggab.c (nterpol_init): Check to stop division by zero
2009-12-25 john ffitch <[email protected]> for Francois Pinot
* Opcodes/crossfm.h:
* Opcodes/crossfm.c: New code
2009-12-23 john ffitch <[email protected]>
* Opcodes/sfont.c: Set pitches on module creation rather than on
every load.
2009-12-22 john ffitch <[email protected]>
* Opcodes/sfont.c (SfLoad): Added check to see if too many sound
fonts are loaded.
* Opcodes/pitch.c (trnsetr, trnset): Check argument count is 1mod3
2009-12-20 john ffitch <[email protected]>
* Engine/csound_orc_semantics.c (handle_optional_args): If there
are no arguments yet we still need to add optionals
2009-12-13 john ffitch <[email protected]>
* Opcodes/nlfilt.c (pinit): New code to implement passign opcode
2009-12-11 john ffitch <[email protected]>
* Engine/rdorch.c (splitline): Allow \" in strings
* Top/one_file.c (readOptions): Reset linecount after reading .csoundrc
2009-11-29 john ffitch <[email protected]>
* Opcodes/cross2.c (getmag): If magnitude is zero do not scale!
2009-11-28 john ffitch <[email protected]>
* Opcodes/pitch.c (clockon, clockoff): Reading the clock should be
incremental. (correcting bug introduced by Istvan)
2009-11-24 jpff <[email protected]>
* Engine/musmon.c (gettempo): Fixed stupid error
2009-11-09 john ffitch <[email protected]>
* Opcodes/pan2.c (pan2run): Fixed editing error in type 3 (thanks
to Sigurd Saue)
2009-11-03 john ffitch <[email protected]>
* Opcodes/p5glove.c (p5glove_find): Use thread to read the USB glove.
2009-10-16 jpff <[email protected]>
* Opcodes/pvsbasic.c (pvsshiftset): Change MYFLT to float in memset
2009-10-02 jpff <[email protected]>
* Opcodes/pitch.c (trnsetr, ktrnsegr, trnsegr): New code
* Opcodes/spectra.c: declare transegr
2009-09-22 jpff <[email protected]>
* H/version.h: VERSION 5.11.1
* Opcodes/bilbar.c (bar_run): Fix typo in right end type 1
(bar_run): Loop needs to be one more for right end
2009-09-14 jpff <[email protected]>
* Engine/fgens.c (gen32): And allow extended here as well, via aux
function
2009-09-10 jpff <[email protected]>
* Engine/fgens.c (gen52, gen51): Added extended arg support
2009-08-27 jpff <[email protected]>
* H/csoundCore.h (PMAX): Reduced by 2
(EVTBLK): Added c.extra field to EVTBLK
* Engine/fgens.c: LOTS of changes to allow extension of arguments uses.
* Engine/sread.c (ifa): removed limit of PMAX arguments to events
* Engine/rdscor.c (rdscor): Allow reading of more than PMAX fields
* Engine/fgens.c (gen23): Total rewrite
2009-08-19 jpff <[email protected]>
* Engine/fgens.c (hfgens): Correct error string to 1, 23 or 28 for
deferred size.
2009-08-12 jpff <[email protected]>
* Engine/fgens.c (hfgens): Do not extend table of ftables
unnecessarily; it used to always extend even if spare slots
existed.
2009-08-10 jpff <[email protected]>
* Opcodes/tabsum.c (tabsum): Fixed silly error that made it all
wrong.
2009-07-25 Michael Gogins <[email protected]>
* The Windows installer now provides the user with options for
core, custom, or complete installation. Custom options include
independent installation of C/C++, Lua, Python, Java, and Lisp
interfaces; independent installation of csnd and
CsoundAC; and independent installation of front ends and
various other options.
2009-07-21 <[email protected]>
* OOps/cmath.c (seedrand): if positive would still seed from time
2009-07-20 jpff <[email protected]>
* OOps/ugrw1.c (printsset): Set string[0] to null as otherwise
sprints does wrong thing on empty string
2009-07-18 Michael Gogins <[email protected]>
* SConstruct now builds completely independent shared libraries
for Python, Lua, and Java wrappers.
* Reorganized examples directory to put all examples for C, C++,
Python, Lua, Java, and Lisp wrappers in separate subdirectories.
Opcode demos also go into a separate subdirectory. The root examples
directory should now contain only complete pieces or tutorial pieces.
2009-07-05 jpff <[email protected]>
* Opcodes/spectra.c (mute opcode): Should be type T to accept
string or number.
* SConstruct (cf): Check that libintl.h exists in the GETTEXT version
2009-06-10 jpff <[email protected]>
* Engine/csound_orc.l: Corrected continuation line pattern
2009-06-05 jpff <[email protected]>
* Engine/csound_orc.y (ident): Added unary +
* H/version.h: Marked as 5.10.90 and 5.11rc1
2009-06-04 jpff <[email protected]>
* Engine/csound_orc_expressions.c (create_goto_token)
(get_boolean_arg, create_boolean_expression)
(create_synthetic_ident, csound_orc_expand_expressions):
Create and use Boolean variables with either k or i type as required
2009-05-05 jpff <[email protected]>
* Engine/csound_orc.l: Deal with \+NL
2009-05-01 jpff <[email protected]>
* Engine/csound_orc.y (if, ifthen, elsif): Removed requirement for
brackets round condition.
2009-04-30 jpff <[email protected]>
* Engine/csound_orc.y: Remove two globals to the CSOUND structure
and start numbered instruments.
2009-04-29 Victor Lazzarini <[email protected]>
* InOut/FL_graph.cpp: fixed the redrawing of graphs so that only
selected ones get redrawn.
2009-04-28 jpff <[email protected]>
* H/csoundCore.h ("C"): Declare
* Top/csound.c ("C"): Initialise floatsize
* Engine/musmon.c (musmon): Set csound->floatsize
2009-04-27 Victor Lazzarini <[email protected]>
* Opcodes/pvsbasic.c: added rounding bin code to pvsscale
* Opcodes/ftgen.c: added NP2 support for ftload and ftsave
* Engine/fgen.c: moved a PerfError to a Warning when tables are
resized to enable ftload to resize deferred-allocation tables.
* OOps/ugens5.c: experimental LPC read opcode
* H/ugens.h: as above
* Engine/oentry1.c: as above
2009-04-24 Anthony Kozar <[email protected]>
* SConstruct: Define WORDS_BIGENDIAN for hrtfnew opcodes when appropriate.
* H/prototyp.h:
* H/csoundCore.h:
* Top/csound.c:
* Engine/memfiles.c: New API function pointer ldmemfile2withCB() which is
a version of ldmemfile() allowing a callback to be set and called exactly
once to process the MEMFIL buffer after it is loaded.
* H/version.h: Increased API version to 2.1.
* Engine/memfiles.c (Load_File_):
* Opcodes/hrtfopcodes.c: Moved byteswapping code for HRTF opcodes to
hrtfnew module utilizing ldmemfile2withCB().
* H/csound.h: Removed file type CSFTYPE_FLOATS_BINARY_SW
2009-04-19 jpff <[email protected]>
* Opcodes/p5glove.c: New code to controlP5 Glove directly
* Engine/csound_orc_semantics.c (handle_polymorphic_opcode): Added
polymorphic type 0xfffd
2009-04-17 jpff <[email protected]>
* Engine/memfiles.c (Load_File_): Add option for byteswap from
LITTLE- to BIG-ENDIAN if necessary (CSFTYPE_FLOATS_BINARY_SW)
* H/csound.h: New file type CSFTYPE_FLOATS_BINARY_SW
2009-04-08 Michael Gogins <[email protected]>
* Opcodes/mixer.cpp:
Added MixerSetLevel_i, an init-time only version of MixerSetLevel,
so that it is possible to set the levels of mixer sends in the
orchestra header.
2009-03-30 jpff <[email protected]>
* OOps/diskin.c (diskin_read_buffer): Typo corrected
2009-03-24 Michael Gogins <[email protected]>
* frontends/CsoundAC/Score.cpp:
* interfaces/CsoundFile.cpp:
Implemented importation of MusicXML v2 files into the CsoundAC Score class
and the csnd CsoundFile class, using the Grame MusicXML library.
2009-03-22 jpff <[email protected]>
* OOps/oscils.c (tablexkt): Line adding to ar removed as wrong
2009-03-18 Anthony Kozar <[email protected]>
* SConstruct:
* Opcodes/syncgrain.c: Added config test for values.h.
* frontends/cscore/cscoremain.c:
* frontends/cscore/cscoremain_MacOS9.c:
* util1/scot/scot_main.c: Changed Scot and Cscore to take an optional
second commandline argument specifying the output file.
2009-03-16 jpff <[email protected]>
* InOut/rtalsa.c (set_device_params): Change to
snd_pcm_hw_params_set_rate_near rather than exact samplerate from "Pete G."
2009-03-15 jpff <[email protected]>
* Top/one_file.c (createExScore): Added new facility to have score
generated by external code
(read_unified_file): and call it
2009-03-14 jpff <[email protected]>
* util/lpc_export.c (lpc_export): Fix from Martin Rocamora on line 83
* util/lpcx_main.c (main): Fix from Martin Rocamora on line 82
2009-03-04 jpff <[email protected]>
* Opcodes/wiimote.c: New code (still experimental) to use wiimote
in Csound (Linux only at present)
2009-03-01 jpff <[email protected]>
* Opcodes/mp3in.c: New code to read MP3 files (still experimental)
2009-02-28 Anthony Kozar <[email protected]>
* H/ugens5.h:
* OOps/ugens5.c (lprdset, lpread): Fixed bad assumptions in doubles
build when skipping over the LPC file header.
2009-02-23 jpff <[email protected]>
* Engine/fgens.c (gen49): New gen to read MP3 files using mpadec
library
2009-02-07 jpff <[email protected]>
* Engine/rdorch.c (rdorchfile):
* Engine/sread.c (sget1): Mane mname grow rather than being fixed size
2009-02-06 jpff <[email protected]>
* H/csoundCore.h ("C"): Added GetChannelLock to API
* OOps/bus.c (csoundGetChannelLock): New function, deployed as
well all over this file
* H/csound.h ("C"): Added csoundGetChannelLock
2008-12-19 jpff <[email protected]>
* H/version.h: VERSION 5.10.1
2008-12-18 jpff <[email protected]>
* Opcodes/pitch.c (hsboscset): Bug whereby two internal variables may
be unititialised fixed.
2008-12-17 Anthony Kozar <[email protected]>
* SConstruct: Add libintl on OS X when useGettext=1. Commented out
-fno-rtti option on OS X. Revised Python detection logic so that it
works on multiple versions of OS X.
2008-12-15 jpff <[email protected]>
* H/version.h (CS_APIVERSION): Upped version to 2/0
* H/csoundCore.h: Cleaned up unused fields in struct CSOUND_ and
added some expansions. Tidied timing counters as well. Involved
a number of small changes elsewhere
2008-12-04 mantaraya36 <[email protected]>
* Opcodes/pmidi.c : Added option to listen on all MIDI ports
using 'a' instead of a device number.
2008-12-04 jpff <[email protected]>
* Opcodes/midiops3.c (islider32bit14): I think it should have 32
as arg to ISLIDER14
2008-12-02 jpff <[email protected]>
* Engine/insert.c:
* Engine/linevent.c:
* Engine/musmon.c:
* Engine/otran.c:
* H/csoundCore.h:
* H/prototyp.h:
* InOut/libsnd.c:
* InOut/midisend.c:
* OOps/schedule.c:
* OOps/ugrw1.c:
* Opcodes/OSC.c:
* Top/csound.c: Change curTime to integer and work in samples
rather than seconds. Same for beatTime
2008-11-30 jpff <[email protected]>
* Engine/fgens.c (csoundFTAlloc): Make size change with active
instruments a PerfError
2008-11-21 jpff <[email protected]>
* Opcodes/filter.c (izfilter): Loop went 1 too many for
coeffs->dcoeffs
2008-11-01 jpff <[email protected]>
* Opcodes/pitch.c (pitchamdf): Arrange that if peri is zero not to
return NaN or Inf values. Suggests some algorithmic error
(pitchamdfset): Initialise rmsmedian buffer -- it was undefined.
No idea how it ever could work.
2008-10-31 jpff <[email protected]>
* Engine/otran.c (otran): Experimentally set locale to C numeric
before parsing orchestra.
2008-10-27 jpff <[email protected]>
* OOps/aops.c (outo): Channel 6 was wrong,
(outh): also here.
2008-10-18 jpff <[email protected]>
* InOut/rtwinmm.c (open_device): Dither only if requested.
* H/csoundCore.h ("C"): Move dither to visible.
* InOut/rtpa.c (set_device_params): Dither only if requested.
(paBlockingReadWriteOpen): Ditto.
* InOut/rtalsa.c (set_format): Dither only if requested.
(MYFLT_to_short_no_dither): New function.
2008-10-09 Victor Lazzarini <[email protected]>
* Engine/fgens.c: added an optional parameter
for GEN20 (type 6, Gaussian), to set the variance
(default = 1.0).
2008-09-29 jpff <[email protected]>
* OOps/diskin.c (diskin_read_buffer): mea culpa; zeros written to
wrong place.
2008-09-13 Michael Gogins <[email protected]>
* H/csound.h: Added Doxygen "mainpage" introductory section at top
of file; switched to HTML format for API documentation (replacing
LaTeX/PDF format).
2008-09-17 jpff <[email protected]>
* RELEASE VERSION 5.09
2008-09-13 Michael Gogins <[email protected]>
* frontends/CsoundAC/Score.cpp: Implemented importation of
MusicXML v2 files into the CsoundAC Score class, using the
Grame MusicXML library.
2008-09-13 Michael Gogins <[email protected]>
* custom-mingw.py: Updated for more recent third party packages.
* frontends/fltk_gui/CsoundGUIMain.cpp: Score editor works properly now.
* examples: Updated CsoundAC.csd and CsoundAC-midi.csd,
removed some obsolete precursors of them, added Drone.py Tk GUI example.
* csound-build.tex: Detailed instructions for building
the Windows installers.
* Top/csound.c, H/csoundCore.h: Corrected spinlocks for thread-safe
access to spin and spout buffers, added to dummy slots of the CSOUND
structure to preserve backwards API compatibility.
2008-09-10 jpff <[email protected]>
* Opcodes/scoreline.c (localops): Wrong structure named in entry
-- probably benign
* H/version.h (CS_PACKAGE_STRING): VERSION 5.09
2008-09-09 Anthony Kozar <[email protected]>
* H/csound.h (csoundSpinLock, csoundSpinUnLock): Removed attempt at
printing warnings when spinlocks are not implemented.
* Opcodes/sfont.c (SfPlayMono): More declaration before code fixes.
* Opcodes/shape.c (PDHalfX): Fixed unitialized variable.
* Engine/rdorch.c (skiporccomment):
* Opcodes/Vosim.c (vosimset): Added missing return values.
2008-09-08 Anthony Kozar <[email protected]>
* Top/threads.c (csoundRunCommand, csoundSleep): Consolidated dummy
versions to avoid multiple definitions.
2008-09-08 jpff <[email protected]>
* Top/csound.c ("C"): Do not load pthreads in mac_clasic
* Top/threads.c (csoundRunCommand, csoundSleep): Added mac_classic
dummy versions
* OOps/aops.c (outs): Declarations before code in C
2008-09-02 jpff <[email protected]>
* H/ugrw1.h:
* OOps/ugrw1.c (printkset, printk, printksset, printks): Check
that opcode is initialised
2008-08-31 jpff <[email protected]>
* H/version.h: 5.08.99
2008-08-14 jpff <[email protected]>
* Engine/csound_orc.l: Added #include and macros (currently
without arguments)
2008-08-12 jpff <[email protected]>
* Opcodes/uggab.c (poscaa, poscka): Ensure frequency is not
overwritten if variable is shared
2008-07-26 jpff <[email protected]>
* Engine/rdorch.c (skiporccomment): Correct stupid error in
multiple * characters
2008-07-23 jpff <[email protected]>
* Engine/fgens.c (gen23): Allow scientific notation (as was in csound4!)
2008-07-05 jpff <[email protected]>
* Opcodes/ambicode1.c: Added new file with Furse/Wiggins decoders
2008-06-30 Steven Yi <[email protected]>
* Engine/musmon.c: reverted sensevents to set EVTBLK to outside of
while loop; caused bug where using event opcode with "e" would