-
Notifications
You must be signed in to change notification settings - Fork 133
/
ChangeLog
2541 lines (1438 loc) · 69.7 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
2023-02-19 belangeo <belangeo@gmail.com>
* Git tag: 1.0.5.
2023-02-15 Hans-Jorg Bibiko
* Update Coreaudio support.
2023-02-15 Hans-Jorg Bibiko
* Added to MidiNote holdmode, first/last velocity support and sendAllNotesOff method.
2022-10-21 belangeo <belangeo@gmail.com>
* UI: Improved handling of system's dark mode.
2022-05-17 belangeo <belangeo@gmail.com>
* Fixed PY_SSIZE_T_CLEAN macro must be defined for '#' formats.
2022-05-13 belangeo <belangeo@gmail.com>
* Fixed OscReceive.addAddress not polling the address immediately.
2022-02-26 belangeo <belangeo@gmail.com>
* Fixed memory leak in trigmodule.
2022-02-26 belangeo <belangeo@gmail.com>
* Ensure that there is no leaking audio streams in the server when objects are deleted.
2022-01-25 belangeo <belangeo@gmail.com>
* Fix Keyboard widget note off handling in hold mode.
2021-12-07 belangeo <belangeo@gmail.com>
* Made SndTable, NewTable and DataTable size attribute mutable.
* Improved behavior consistency of PyoTableObject.setSize method.
* Fixed bug when making the size of a table bigger at runtime.
2021-11-19 belangeo <belangeo@gmail.com>
* Objects writing samples in tables can now write to any PyoTableObject.
* Made getRate() and getDur() methods available to all PyoTableObject.
2021-08-17 belangeo <belangeo@gmail.com>
* Allow more than 10 controls in PyoObjectControl window.
2021-06-07 belangeo <belangeo@gmail.com>
* Fixed linux libasound and libjack symlinks (included in version 1.0.4).
2021-06-04 belangeo <belangeo@gmail.com>
* Git tag: 1.0.4.
2021-06-03 belangeo <belangeo@gmail.com>
* Replaced unsecure vsprintf function with vsnprintf in server logging functions (fixed issue #222).
2021-06-02 belangeo <belangeo@gmail.com>
* Removed useless string copy in the Jack backend (fixed issue #221).
2021-05-08 belangeo <belangeo@gmail.com>
* TableMorph checks table sizes before interpolating to prevent segmentation fault.
2021-05-08 belangeo <belangeo@gmail.com>
* Scale's exp argument now supports float or PyoObject.
2021-05-08 belangeo <belangeo@gmail.com>
* Added documentation for IFFTMatrix object.
2021-05-08 belangeo <belangeo@gmail.com>
* Added support for item assigment in PyoObjectBase.
2021-04-01 belangeo <belangeo@gmail.com>
* Replaced all allocation functions with python's memory interface.
2021-03-22 belangeo <belangeo@gmail.com>
* Fixed Select counter type range (now accept a long long value).
2021-02-21 belangeo <belangeo@gmail.com>
* Removed unwanted call to Server_process_buffers at start of an embedded audio server.
2021-02-19 belangeo <belangeo@gmail.com>
* Fixed segfault in embedded pyo_end_interpreter function.
2021-01-24 belangeo <belangeo@gmail.com>
* Fixed FreqShift backward shifting (issue #193).
2021-01-21 belangeo <belangeo@gmail.com>
* Fixed wx assertion in Scope color rendering.
2021-01-21 belangeo <belangeo@gmail.com>
* Removed deprecated files.
2021-01-21 belangeo <belangeo@gmail.com>
* Added Visaul Studio Code integration for Windows, MacOS and Linux.
2021-01-17 belangeo <belangeo@gmail.com>
* Fixed array out-of-bound bug in SVF2 object.
2021-01-17 belangeo <belangeo@gmail.com>
* Fixed memory allocation in expr's initexpr function (issue #190).
2021-01-12 belangeo <belangeo@gmail.com>
* Added rt library to linker on linux (should fix shm_unlink undefined symbol) (issue #129).
2020-12-20 belangeo <belangeo@gmail.com>
* On 64-bit architecture, use long instead of int as PyoObjectTable size.
2020-12-13 belangeo <belangeo@gmail.com>
* PyoTableObject get(), put() and copyData() methods can read backward with negative indices.
2020-12-12 belangeo <belangeo@gmail.com>
* Fixed crash when DataTable or NewTable size != len(init).
2020-12-10 belangeo <belangeo@gmail.com>
* Fixed PadSynthTable crash on Windows.
2020-11-30 belangeo <belangeo@gmail.com>
* VarPort now updates its increment when the time attribute changes.
2020-11-27 belangeo <belangeo@gmail.com>
* Added a level argument to PyoMatrixObject.normalize() method.
2020-11-26 belangeo <belangeo@gmail.com>
* Fixed segmentation fault in PyoMatrixObject.read() method.
2020-11-25 belangeo <belangeo@gmail.com>
* Added a div method to PyoTableObject.
2020-11-25 belangeo <belangeo@gmail.com>
* Added a shape argument to PyoTableObject.fadein() and PyoTableObject.fadeout() methods.
2020-11-23 belangeo <belangeo@gmail.com>
* Added a level argument to PyoTableObject.normalize() method.
2020-11-21 belangeo <belangeo@gmail.com>
* Fix bug in isPlaying() returning wrong value when set from out().
2020-11-21 belangeo <belangeo@gmail.com>
* Prevent normal order to happen in out() function when scrambling channels.
2020-11-12 belangeo <belangeo@gmail.com>
* Added PyoObjectBase.getStopDelay() method (mainly for unit testing).
2020-08-28 belangeo <belangeo@gmail.com>
* Git tag: 1.0.3.
2020-08-28 belangeo <belangeo@gmail.com>
* Fixed missing lib dependency links on MacOS.
2020-08-17 belangeo <belangeo@gmail.com>
* Git tag: 1.0.2.
2020-08-02 belangeo <belangeo@gmail.com>
* Added new object: MML, Music Macro Language evaluator.
2020-06-27 belangeo <belangeo@gmail.com>
* Fixed segfault in reducePoints function.
2020-06-27 belangeo <belangeo@gmail.com>
* Fixed Linseg when time difference between two points is less than 1 sample.
2020-02-10 belangeo <belangeo@gmail.com>
* Added new object: TriangleTable.
2020-01-20 belangeo <belangeo@gmail.com>
* Added new object: IFFTMatrix, Inverse Fast Fourier Transform with a PyoMatrixObject as input.
2020-01-07 belangeo <belangeo@gmail.com>
* PVBuffer's length attribute can now be changed dynamically.
2019-11-27 belangeo <belangeo@gmail.com>
* Git tag: 1.0.1.
2019-11-24 belangeo <belangeo@gmail.com>
* Added beatToDur(beat, bpm) function.
2019-11-15 belangeo <belangeo@gmail.com>
* Added examples about how to use OSC protocol with pyo.
2019-11-12 belangeo <belangeo@gmail.com>
* Added utilities examples.
2019-11-11 belangeo <belangeo@gmail.com>
* Added events examples.
2019-11-05 belangeo <belangeo@gmail.com>
* Added the first version of the Events framework.
2019-10-22 belangeo <belangeo@gmail.com>
* Fixed tkinter font size on MacOS (fixed issue #163).
2019-10-14 belangeo <belangeo@gmail.com>
* Added setChannelNames(names) method to Spectrum and Scope objects.
2019-10-10 belangeo <belangeo@gmail.com>
* Fixed segfault when CallAfter's callback results in deleting itself
(its stop method was then called on a deallocated object).
2019-09-30 belangeo <belangeo@gmail.com>
* Expr API: constants (pi, twopi, e, sr) can be used without braces.
2019-09-29 belangeo <belangeo@gmail.com>
* Expr API: Expr now can generate multiple output signals.
2019-09-29 belangeo <belangeo@gmail.com>
* Expr API: Expr now can handle multiple input sources.
2019-09-28 belangeo <belangeo@gmail.com>
* Expr API: let statment can now store a complex number.
2019-09-19 belangeo <belangeo@gmail.com>
* Added a DC blocker inside the feedback loop of Harmonizer object.
2019-09-11 belangeo <belangeo@gmail.com>
* Added new object: Binaural, 3D stereo spatialization.
2019-09-11 belangeo <belangeo@gmail.com>
* Added a clear() method to Mixer object to delete all inputs at once.
2019-09-09 belangeo <belangeo@gmail.com>
* Fixed setting value of ControlSlider from national keyboard layout.
2019-09-03 belangeo <belangeo@gmail.com>
* Audio server falls back to playback-only mode if jack server has no input ports.
2019-07-11 belangeo <belangeo@gmail.com>
* Git tag: 1.0.0.
2019-06-12 belangeo <belangeo@gmail.com>
* EPyo: Fix search ctrl behaviour in the documentation window.
2019-06-05 belangeo <belangeo@gmail.com>
* Better handling of bad code when reading file in enbedded pyo.
2019-06-02 belangeo <belangeo@gmail.com>
* Added a clear() method to Linseg and Expseg objects.
2019-05-14 belangeo <belangeo@gmail.com>
* Added computer keyboard bindings when the Notein's keyboard widget has the focus.
2019-02-22 belangeo <belangeo@gmail.com>
* Fader and Adsr now send a trigger at the end of the envelope.
2019-02-22 belangeo <belangeo@gmail.com>
* CallAfter's time and arg arguments can be changed dynamically.
2019-01-24 belangeo <belangeo@gmail.com>
* Jack audio backend does not ignore duplex value anymore.
2019-01-24 belangeo <belangeo@gmail.com>
* Added two arithmetic objects: Div and Sub.
2019-01-22 belangeo <belangeo@gmail.com>
* Changed PyoObjectBase's method preventAutoStart() for all AutoStart(switch).
2019-01-11 belangeo <belangeo@gmail.com>
* Added setStopDelay method to PyoObjectBase class.
2019-01-09 belangeo <belangeo@gmail.com>
* Added examples about multirate processing/synthesis.
2019-01-08 belangeo <belangeo@gmail.com>
* Fixed all variant of audio arithmetic.
2018-12-28 belangeo <belangeo@gmail.com>
* Added a new object: SVF2, a 2-pole state variable filter with many filter types.
2018-12-26 belangeo <belangeo@gmail.com>
* Added a getPyoExamples function and changed example function to be able to
execute one of the example.
2018-12-26 belangeo <belangeo@gmail.com>
* Fixed SIGSEGV when multiplying a number and a base object.
2018-12-14 belangeo <belangeo@gmail.com>
* Compiling for python 64-bit on Windows now work.
2018-12-14 belangeo <belangeo@gmail.com>
* Fixed break-point-function tables malloc() corruption.
2018-12-14 belangeo <belangeo@gmail.com>
* Changed the structure of the source code and the installed dependencies.
2018-12-11 belangeo <belangeo@gmail.com>
* Added PyoObjectBase.preventAutoStart() method to stop propagation when
autoStartChildren is activated in the Server.
2018-12-11 belangeo <belangeo@gmail.com>
* Fixed bug in OscDataSend.addAddress().
2018-12-11 belangeo <belangeo@gmail.com>
* Added autoStartChildren feature. For detail, see doc for Server.setAutoStartChildren,
PyoObjectBase.useWaitTimeOnStop, PyoObjectBase.addLinkedObject and PyoObject.stop.
2018-11-22 belangeo <belangeo@gmail.com>
* Added keyboard method to the Notein object (opens a virtual midi keyboard).
2018-11-20 belangeo <belangeo@gmail.com>
* Added a new object: PyoGuiKeyboard, a virtual MIDI keyboard.
2018-11-06 belangeo <belangeo@gmail.com>
* Embedded: Added a BPM variable in the embedded interpreter and a function in
PyoClass to change it according to the BPm of a DAW, for instance.
2018-11-02 belangeo <belangeo@gmail.com>
* Embedded: Remove the wx import before importing pyo to prevent a crash on MacOS.
2018-11-02 belangeo <belangeo@gmail.com>
* Fixed crash on first load when embedding pyo in a juce plugin.
2018-10-30 belangeo <belangeo@gmail.com>
* Added complex numbers (and complex one-pole/one-zero filters) to the Expr API.
2018-10-30 belangeo <belangeo@gmail.com>
* Added sr (returns the current sampling rate) constant to the Expr API.
2018-10-23 belangeo <belangeo@gmail.com>
* Added one-sample delay function and sr constant to the Expr api.
2018-10-23 belangeo <belangeo@gmail.com>
* Fixed phase of sawtooth and ramp waveform in the LFO object.
2018-10-23 belangeo <belangeo@gmail.com>
* Epyo: Added multiple views (splitted windows) functionnality.
2018-10-22 belangeo <belangeo@gmail.com>
* Epyo Doc: Bug fixes and added zoomin/zoomout function.
2018-10-21 belangeo <belangeo@gmail.com>
* Epyo: Added a 'Reload Current File' menu command.
2018-10-21 belangeo <belangeo@gmail.com>
* Epyo: Added auto complete for cpp file (from corresponding header file).
2018-10-05 belangeo <belangeo@gmail.com>
* Merged E-Pyo and PyoDoc in a single file (now in pyolib/editor/EPyo.py).
2018-10-05 belangeo <belangeo@gmail.com>
* Modified setup.py to be pip compliant.
2018-10-04 belangeo <belangeo@gmail.com>
* E-Pyo: Fixed crash when trying to read a faulty preferences file.
2018-09-06 belangeo <belangeo@gmail.com>
* Added PYO_SERVER_MIDI and PYO_SERVER_WINHOST environment variables to set
default values for the audio server.
2018-09-04 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.9.1.
2018-09-04 belangeo <belangeo@gmail.com>
* On Windows, use 'directsound' as the default audio host (much more
reliable than 'wasapi').
2018-05-30 belangeo <belangeo@gmail.com>
* Fixed phase shifting between the frequency bands of FourBand and MultiBand.
2018-04-24 belangeo <belangeo@gmail.com>
* Added a new object: MultiBand, frequency splitter using Linkwitz-Riley
crossover filters.
2018-04-17 belangeo <belangeo@gmail.com>
* Fixed Compress output level when input's rms is above unity.
2018-03-04 belangeo <belangeo@gmail.com>
* Added the ability to remove a project from the project tree.
2018-03-02 belangeo <belangeo@gmail.com>
* Added getPrecision() function. Removed print statement when importing pyo.
User should use getVersion() and getPrecision() functions if needed.
2018-03-02 belangeo <belangeo@gmail.com>
* Fixed crash when asking for more input or output channels than available.
2018-03-01 belangeo <belangeo@gmail.com>
* Fixed Server window's Interpreter field scrolling history on MacOS.
2018-02-16 belangeo <belangeo@gmail.com>
* Added release-notes for version 0.9.0.
2018-02-16 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.9.0.
2018-02-16 belangeo <belangeo@gmail.com>
* Added a Server.makenote(pitch, velocity, duration, channel=0) method.
2018-02-15 belangeo <belangeo@gmail.com>
* Added a new object: MidiLinseg, a midi-triggered breakpoints envelope.
2018-02-13 belangeo <belangeo@gmail.com>
* Added a new object: RMS, which return the rms value of an audio signal.
2018-02-13 belangeo <belangeo@gmail.com>
* Added a new object: Expand, which expand the dynamic range of an audio signal.
2018-02-10 belangeo <belangeo@gmail.com>
* HRTF impulse responses are now interpolated in the spectral domain to
avoid phase cancellation that occur in the time domain.
2018-02-03 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.9.
2018-02-03 belangeo <belangeo@gmail.com>
* Added new object: HRTF, Head-Related Transfert Function 3D spatialization.
2018-02-01 belangeo <belangeo@gmail.com>
* Fixed crash when trying to draw a ControlSlider with width or height of 0.
2018-01-31 belangeo <belangeo@gmail.com>
* Fixed window shape in the Harmonizer object (use an halfsine instead
of an hanning).
2018-01-25 belangeo <belangeo@gmail.com>
* Fixed segfault at exit when a Server object is created but never
booted (fixed issue #117).
2018-01-14 belangeo <belangeo@gmail.com>
* Fixed pa_get_devices_infos() function on Windows.
2018-01-12 belangeo <belangeo@gmail.com>
* Allow the "mode" argument of Resample object to be changed dynamically.
2017-12-16 belangeo <belangeo@gmail.com>
* Fixed erroneous condition in listscramble function.
2017-11-26 belangeo <belangeo@gmail.com>
* Speed-up computation for various objects.
2017-11-07 belangeo <belangeo@gmail.com>
* Changed the stereo panning law for cosine/sine within Pan object.
2017-11-07 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.8.
2017-11-07 belangeo <belangeo@gmail.com>
* E-Pyo: fixed tempfile encoding on windows.
2017-11-07 belangeo <belangeo@gmail.com>
* Fixed path encoding on windows for python 3.6.
2017-11-06 belangeo <belangeo@gmail.com>
* Properly incref and decref server references inside pyo objects.
2017-11-06 belangeo <belangeo@gmail.com>
* Added missing objects in server's garbage collecting process.
2017-11-06 belangeo <belangeo@gmail.com>
* Fixed audio and midi backends memory allocation.
2017-11-05 belangeo <belangeo@gmail.com>
* Don't try to deactivate jack if it is stopped externally (ex. from
qjackctl). Fixed issue #109.
2017-11-03 belangeo <belangeo@gmail.com>
* Added a callback attribute to PVAnal. The function receives magnitudes
and true frequencies for every analysis frame.
2017-11-02 belangeo <belangeo@gmail.com>
* Fixed PyoArgumentTypeError when ctrl() is called for an object with
dataOnly parameter and tk is used instead of wxpython.
2017-11-02 belangeo <belangeo@gmail.com>
* Granulator now compensates for the difference between the loaded sound's
sampling rate and pyo's sampling rate, if any.
2017-11-01 belangeo <belangeo@gmail.com>
* E-Pyo: Fixed crash when preferences contains unicode characters.
2017-10-31 belangeo <belangeo@gmail.com>
* E-Pyo: template, snippets and other features now defaults to python3.
2017-10-15 belangeo <belangeo@gmail.com>
* Added a new init argument (wintitle) to Scope and Spectrum objects to
allow the user to set the title name of their window. Also added a
method to show/hide the channel labels in their window.
2017-10-09 belangeo <belangeo@gmail.com>
* Added Jack midi support to the Server.
2017-10-09 belangeo <belangeo@gmail.com>
* Added missing static declaration to functions in pyomodule.
2017-10-07 belangeo <belangeo@gmail.com>
* Removed internal import of the random module. Scripts importing
both pyo and random modules segfault on garbagge collection at exit.
2017-09-15 belangeo <belangeo@gmail.com>
* Added missing binding to stop method in MidiListener.
2017-09-06 belangeo <belangeo@gmail.com>
* Added windows audio inspector script.
2017-08-31 belangeo <belangeo@gmail.com>
* Fixed compiling with debug symbols on MacOS.
2017-08-28 belangeo <belangeo@gmail.com>
* Fixed VoiceManager dealloc function.
2017-08-28 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.7.
2017-08-28 belangeo <belangeo@gmail.com>
* Update MacOS and Windows build routine to compile for python 2.7,
3.5 and 3.6.
2017-08-xx belangeo <belangeo@gmail.com>
* Fixed encoding of path for various objects.
2017-08-25 belangeo <belangeo@gmail.com>
* Fixed clean-up of VoiceManager object.
2017-08-25 belangeo <belangeo@gmail.com>
* Fixed ending point of TableRec's time stream (now keep the last
value instead of switching back to 0).
2017-08-23 belangeo <belangeo@gmail.com>
* Fixed windows 10 dependencies.
2017-08-07 belangeo <belangeo@gmail.com>
* OscDataSend now can send more than one message per buffer size.
2017-06-28 belangeo <belangeo@gmail.com>
* Fixed Expr unicode handling.
2017-06-27 belangeo <belangeo@gmail.com>
* Wrap jack api detection inside a try-except statement in case
jack2-dbus is used instead of jackd.
2017-06-05 belangeo <belangeo@gmail.com>
* Added getInterpolated method to PyoMatrixObject class.
2017-06-05 belangeo <belangeo@gmail.com>
* The server now allow up to 16 channel rms outputs for GUI drawing.
2017-05-18 belangeo <belangeo@gmail.com>
* Disable Microsoft Midi devices by default. Added
Server.allowMicrosoftMidiDevices() method to enable them.
2017-05-16 belangeo <belangeo@gmail.com>
* Converted remaining print statements to function calls.
2017-04-20 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.6.
2017-04-20 belangeo <belangeo@gmail.com>
* Added a Copy menu item in PyoObject.ctrl() and DataTable.graph() windows.
2017-04-20 belangeo <belangeo@gmail.com>
* Added setRandomType(dist, x) method to SfMarkerShuffler object.
2017-04-20 belangeo <belangeo@gmail.com>
* Fixed TableRec, TrigTableRec and Looper time stream not started on play.
2017-04-18 belangeo <belangeo@gmail.com>
* Fixed libraries dynamic links in MacOS installer scripts.
2017-04-13 belangeo <belangeo@gmail.com>
* Fixed segfault in Resample_dealloc function.
2017-04-10 belangeo <belangeo@gmail.com>
* Wrapped non-blocking offline processing between PyGILState_Ensure and
PyGILState_Release calls.
2017-04-10 belangeo <belangeo@gmail.com>
* Updated liblo from 0.26 to 0.28 on Windows. This fixes a bug with socket
not properly closed.
2017-04-09 belangeo <belangeo@gmail.com>
* Fixed segfault when updating ControlSlider value from the audio thread.
2017-04-07 belangeo <belangeo@gmail.com>
* Fixed CallAfter segfault when deleted inside its own callback.
2017-04-06 belangeo <belangeo@gmail.com>
* Fixed TableRead which continues to play when freq is negative and loop is off.
2017-04-06 belangeo <belangeo@gmail.com>
* Added "speed" argument to Seq object. Useful to create continuous time
deceleration or acceleration.
2017-03-31 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.5.
2017-03-31 belangeo <belangeo@gmail.com>
* Added two examples in 07-effects, 01-flanger.py and 02-schroeder-reverb.py.
2017-03-31 belangeo <belangeo@gmail.com>
* Removed Server.setInOutDefaultDeviceFromHost(host) method.
Added a new winhost argument to the Server's initialization.
Added pa_get_default_devices_from_host(host) function.
2017-03-27 belangeo <belangeo@gmail.com>
* Check the jack api version before compiling to ensure existing
functions are used (jack_port_set_name/jack_port_rename).
2017-03-26 belangeo <belangeo@gmail.com>
* Added setInOutDefaultDeviceFromHost(host) to the Server object.
2017-03-24 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.4.
2017-03-23 belangeo <belangeo@gmail.com>
* Added `id` and `object` attributes to wxgui's object events.
2017-03-22 belangeo <belangeo@gmail.com>
* Added setJackInputPortNames and setJackOutputPortNames methods to the
Server object. This allow the user to rename jack input/output ports.
2017-03-21 belangeo <belangeo@gmail.com>
* Updated portaudio interface to make it much more secure.
2017-03-20 belangeo <belangeo@gmail.com>
* Added setIsJackTransportSlave method to Server object (it allows to
start/stop the Server from jack transport).
2017-03-17 belangeo <belangeo@gmail.com>
* Fixed GIL conflicts with portaudio, portmidi and jack library calls.
2017-03-11 belangeo <belangeo@gmail.com>
* Added a setKeepLast method to TableRead object (will hold last value).
2017-03-10 belangeo <belangeo@gmail.com>
* Added a setMode method to Selector object to switch between
equal power mode and linear fade.
2017-03-06 belangeo <belangeo@gmail.com>
* Fixed SfMarkerLooper and SfMarkerShuffler markers not accurate
when soundfile sampling rate is not the same as the server's
sampling rate.
2017-03-04 belangeo <belangeo@gmail.com>
* Added a "title" argument to Server.gui() method.
2017-03-03 belangeo <belangeo@gmail.com>
* MidiDispatcher can send sysex message with sendx() method.
2017-03-03 belangeo <belangeo@gmail.com>
* Midi input refactoring. Events are now spreaded over the buffer size
according to the event's timestamp.
2017-02-19 belangeo <belangeo@gmail.com>
* Added examples about multicore audio programming with pyo.
2017-02-14 belangeo <belangeo@gmail.com>
* Fixed segfault in MidiListener callback function with python3.
* Fixed string versus unicode in MidiDispatcher's getDeviceInfos method.
2017-02-13 belangeo <belangeo@gmail.com>
* Final revision for version 0.8.3.
2017-02-13 belangeo <belangeo@gmail.com>
* Added new object: MidiDispatcher, self-contained midi dispatcher thread.
Updated MidiListener.
2017-02-12 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.3.
2017-02-12 belangeo <belangeo@gmail.com>
* Prevents the creation of a SharedTable object on Windows (not implemented yet).
2017-02-12 belangeo <belangeo@gmail.com>
* Fader and Adsr now start a new envelope from the current amplitude value
if the previous ramp has not finished yet.
2017-02-12 belangeo <belangeo@gmail.com>
* Added new object: TableScan, Reads the content of a table in loop,
without interpolation.
2017-02-11 belangeo <belangeo@gmail.com>
* Added setGlobalDur, setGlobalDel, getGlobalDur and getGlobalDel methods
to the Server object. These methods allow the user to manage starttime
and duration of audio objects globally.
2017-02-09 belangeo <belangeo@gmail.com>
* Added shape argument to PVAmpMod and PVFreqMod objects.
It allows to change the modulation oscillator's waveform.
2017-02-08 belangeo <belangeo@gmail.com>
* Added onlyonce argument to Beat object.
2017-02-08 belangeo <belangeo@gmail.com>
* Seq now accepts floating-point values as time units.
2017-02-07 belangeo <belangeo@gmail.com>
* Added maxwindow argument to TableWrite. This is the maximum number of samples
over which the object is allowed to interpolate. Useful to avoid interpolation
over the entire table when using a circular writing pointer.
2017-02-05 belangeo <belangeo@gmail.com>
* Added new object: TableFill, continuously fills a table with incoming samples.
2017-02-04 belangeo <belangeo@gmail.com>
* Added onlyonce argument to Seq object.
2017-01-30 belangeo <belangeo@gmail.com>
* Added new object: Particle2, An even more full control granular synthesis generator.
2017-01-08 belangeo <belangeo@gmail.com>
* Added new object: SharedTable, an inter-process shared memory table.
2017-01-07 belangeo <belangeo@gmail.com>
* Jack ports activation and auto-connection now happen in the boot process.
2016-12-17 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.2.
2016-12-17 belangeo <belangeo@gmail.com>
* Fixed bug in Bendin value. Fixed midi input events handling. Set
interpolation to off by default for midi continuous controllers.
2016-12-17 belangeo <belangeo@gmail.com>
* E-Pyo: Fixed a bug in the documentation window.
2016-12-17 belangeo <belangeo@gmail.com>
* TrigFunc and Pattern now accept tuple as arg argument (fixed issue #90).
2016-12-15 belangeo <belangeo@gmail.com>
* Fixed portaudio suggested latency for realtime performance.
2016-12-08 belangeo <belangeo@gmail.com>
* Upgraded version number to 0.8.1.
2016-12-08 belangeo <belangeo@gmail.com>
* Iter now accepts PyoObjects in its list of values.
2016-12-08 belangeo <belangeo@gmail.com>
* Iter now sends a thrigger when it reaches the last value.
2016-11-25 belangeo <belangeo@gmail.com>
* SigTo ramp time now can be controlled at audio rate (issue #87).
2016-11-23 belangeo <belangeo@gmail.com>
* Added __iter__(), __next__() and next() (python 2 compatibility) methods
to PyoBaseObject.
2016-11-22 belangeo <belangeo@gmail.com>
* Added reset method to various objects (AllpassWG, Chorus, Freeverb,
Harmonizer, STRev, WGVerb, Waveguide).
2016-11-16 belangeo <belangeo@gmail.com>
* TableWrite now takes into account the feedback argument of NewTable
object and interpolates to fill in gaps if position moves faster than
the sampling rate.
2016-11-07 belangeo <belangeo@gmail.com>
* Added missing methods to Notein object and ctrl() method in midi.py.
2016-11-07 belangeo <belangeo@gmail.com>
* Added a `callback` argument to PyoObject.set() method.
2016-11-06 Aron Granberg <http://arongranberg.com>
* Python 3 migration. Still need to port pyo's GUI written with WxPython
to WxPython Phoenix (the port of WxPython Classic to python 3). Some
widgets are broken.
2016-11-02 belangeo <belangeo@gmail.com>
* Fixed jack ports auto-connection algorithm.
2016-10-28 belangeo <belangeo@gmail.com>
* Added an 'inverse' argument to PVGate object. When set to True, the
damping factor is applied to bins with an amplitude above the threshold.
2016-10-26 belangeo <belangeo@gmail.com>
* Added a time stream, which gives the current normalized position, to Looper object.
* Added loopnow() method to Looper object.
* Added appendFadeTime() and fadeInSeconds() methods to Looper object.
2016-10-24 belangeo <belangeo@gmail.com>
* Added a new file, called `How to improve performance of your pyo
programs`, to the documentation.