-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
8940 lines (6524 loc) · 305 KB
/
ChangeLog
File metadata and controls
8940 lines (6524 loc) · 305 KB
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
ags (8.3.13)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* TODO:JK: fixed notation clipboard
* fixed performance penalties of ags-fx-notation because of memory leak
ags (8.3.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* modified screenshot URLs in AppStream XML
ags (8.3.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed notation, automation, wave and program bisect
ags (8.3.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio export clear buffer
ags (8.3.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed modular synth OSC-1
ags (8.3.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags_import_notation_smf_popover_parse()
* added modular synth util and ags-fx-modular-synth to API reference manual
ags (8.3.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* enabled AgsImportNotationSMFPopover
* fixed AgsFileWidget use after free
ags (8.3.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved apply presets to AgsCoreAudioPort
ags (8.3.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed AgsLineMember::disconnect() signal detail
* fixed all ags_soundcard_get_note_256th_attack_position() implementations
* fixed osc buffer util 0 pad
ags (8.3.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags_audio_stop() with sound_scope -1
* fixed functional server test
* fixed functional osc server test
* fixed functional osc xmlrpc server test
* improved unit-tests.mk to compile on macOS
* improved functional-tests.mk to compile on macOS
* extended functional test machine add and destroy added Stargazer, Quantum, Raven and Modular synth
ags (8.3.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed AgsRecall::done() is not part of staging program
* fixed ags-fx-pattern audio processor to start properly
* fixed stop audio and channel thread processing with correct staging program
* improved ALSA, OSSv4, jack, Pulseaudio, Core Audio and WASAPI counter initialization
* improved not sensitive backend of soundcard and sequencer editor
ags (8.3.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed remove soundcard
* improved default config on macOS
* modified Makefile.am to build libags, libags_thread and libags_server with `clang -x objective-c`
ags (8.3.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented ags_jack_server_register_soundcard_with_params()
* implemented ags_pulse_server_register_soundcard_with_params()
ags (8.3.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* refactored audio and MIDI preferences
* improved Core Audio soundcard configuration
* improved Core Audio sequencer configuration
* improved ags_core_audio_port_register() MIDI setup
* improved ags_pitch_2x_alias_util.c check division by 0.0
* improved ags_pitch_4x_alias_util.c check division by 0.0
* improved ags_pitch_16x_alias_util.c check division by 0.0
* added css-name of widgets for ags/widget/*
* added user's handbook content, missing new synths and screenshots
ags (8.2.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved modular synth util check division by zero
* improved modular synth env-0 and env-1 frequency lower
* improved modular synth noise frequency default
ags (8.2.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved line and bulk member and related with update-ui callback
* improved peak util check NaN
* improved use AGS_VECTORIZED_BUILTIN_FUNCTIONS conditional code on macOS
ags (8.2.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented audio buffer clear of signed integer types
ags (8.2.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented array type presets
* improved user manual
ags (8.2.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags-fx-playback record format
ags (8.2.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved CoreAudio backend
ags (8.2.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed automation edit draw overflow
ags (8.2.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved composite editor event controllers
* fixed simple file automation restore
ags (8.2.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved automation edit drawing
* fixed automation edit copy and paste by using timestamp to iterate automation
* fixed notation edit selection potential pixel overflow
* fixed automation edit selection potential pixel overflow
* fixed wave edit selection potential pixel overflow
* fixed tempo edit selection potential pixel overflow
ags (8.2.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved automation edit drawing
* improved gen-sym-libags-gui.pl exclude files
* fixed gen-sym-libags-audio.pl exclude files
ags (8.2.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed automation edit drawing bug
ags (8.2.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved AgsSFZSample to read acid from WAV like files
* fixed AgsSFZSynth pitch type selected callback
ags (8.2.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented AgsModularSynth
* implemented ags_modular_synth_util.[ch]
* implemented ags-fx-modular-synth
* implemented AgsImportNotationSMFPopover
ags (8.1.25)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved audio unit compatibility check since macOS 13.0
ags (8.1.24)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* new micro release for macOS
ags (8.1.23)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* reverted implied config value super threaded scope channel on macOS
ags (8.1.22)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio unit test dereference NULL pointer
ags (8.1.21)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio unit test waitpid() return value and exit status
ags (8.1.20)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio unit test
ags (8.1.19)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio unit test
ags (8.1.18)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio unit test use posix_spawn()
ags (8.1.17)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved audio unit test use posix_spawn()
ags (8.1.16)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved audio unit test
ags (8.1.15)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved audio unit test
ags (8.1.14)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved audio unit test handle additional signals
ags (8.1.13)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* new micro release for macOS
ags (8.1.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* new micro release for macOS
ags (8.1.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* renamed AudioUnitTest to com.gsequencer.GSequencer.AudioUnitTest
ags (8.1.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* renamed com.gsequencer.AudioUnitTest to AudioUnitTest
ags (8.1.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* renamed com.gsequencer.GSequencerAudioUnitTest to com.gsequencer.AudioUnitTest
ags (8.1.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented GSequencerAudioUnitTest Audio Unit test program
ags (8.1.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implied config value in order to support Audio Unit
* improved Audio Unit UI window
* reverted ags-fx-buffer
* fixed ags-fx-audio-unit stereo buffer
* fixed ags-fx-audio-unit instrument key on
ags (8.1.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* reverted ags-fx-buffer
* generated symbols
ags (8.1.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented stereo or more channel synchronization of ags-fx-audio-unit
* fixed AgsAudioUnitBridge load port
* fixed ags_fx_audio_unit_audio_port_safe_write_callback()
ags (8.1.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags-fx-audio-unit missing clear of audio buffer
ags (8.1.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved AgsAudioUnitManager to use wildcard to load plugins
ags (8.1.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented AgsAudioUnitManager
* implemented AgsAudioUnitNewQueueManager
* implemented AgsAudioUnitPlugin
* implemented AgsAudioUnitNewQueue
* implemented AgsAudioUnitConversion
* implemented AgsAudioUnitBridge
* implemented ags-fx-audio-unit
* implemented AgsSimpleFile audio unit bridge persistence
* added Audio Unit menu to application window
* added live Audio Unit menu to application window
* fixed bug in ags_recycling_position()
ags (8.1.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed automation port restore from XML
ags (8.1.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented automation port restore from XML
* fixed potential SIGSEGV with composite toolbar popovers
* improved AgsAudioLoop
* improved AgsDial accessibility
* improved AgsIndicator accessibility
* improved ags-fx-lv2 output and input size
* reverted some changes related to clipping in ags_notation_edit_draw_note()
ags (8.0.14)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed piano roll draw notation with many timestamp attempts
* improved bisect functions of notation, automation, wave and program
ags (8.0.13)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed frame clock of animation window
ags (8.0.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed uninitialized in ags_lfo_synth_util.c
* fixed uninitialized in ags_core_audio_port.c
* fixed uninitialized in ags_amplifier_util.c
ags (8.0.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed popovers to ::disconnect() while ::finalize()
ags (8.0.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed multi-channel notation restore from XML
ags (8.0.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed buffer-overflow ags-fx-lv2
* fixed buffer-overflow ags-fx-wah-wah
* fixed buffer-overflow in ags_sf2_synth_util.c
* improved notation restore from AgsSimpleFile
* improved AgsLed and AgsIndicator frame clock
* improved disabled frame clock of AgsDial and others
* improved run AgsUiProvider::update-ui() from window frame clock callback
ags (8.0.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed AgsAudioTreeDispatcher wrong ref-count
ags (8.0.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed VST3 for vst3sdk v3.7.7_build_19
ags (8.0.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed VST3 support added missing commonstringconvert.h and commonstringconvert.cpp
ags (8.0.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed pad playback with new dispatcher
* fixed notation clipboard
* fixed raven synth seq LFO refresh port
* fixed raven synth seq LFO callback
* fixed VST3 support added missing stringconvert.h and stringconvert.cpp
ags (8.0.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags-fx-star-synth dedicated pitch buffer
* fixed ags-fx-seq-synth dedicated pitch buffer
* fixed ags-fx-raven-synth dedicated pitch buffer
ags (8.0.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags_midi_ump_util_get_midi2_control_change()
ags (8.0.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* added MIDI 1 and 2 control change 24 - 31 to AgsMidiCCDialog
* added MIDI 1 and 2 control change 24 - 31 macros and enums to ags_recall.h
ags (8.0.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented AGS_CONFIG_RECALL and midi1-cc-dump config switch of ags.conf
* implemented AGS_CONFIG_RECALL and midi2-cc-dump config switch of ags.conf
* fixed ags_audio_real_play_recall() missing call to ::midi1-control-change()
* fixed ags_channel_real_play_recall() missing call to ::midi2-control-change()
* fixed AGS_RECALL_MIDI2_CC_CHANGE_PROGRAM
* fixed AGS_RECALL_MIDI2_CC_CHANGE_PRESSURE
* fixed AGS_RECALL_MIDI2_CC_PITCH_BEND
ags (8.0.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* breaking ABI of ags_midi_ump_util_put_midi2_control_change() because of missing data field
* breaking ABI of ags_midi_ump_util_get_midi2_control_change() because of missing data field
* implemented MIDI v2.0 CC support within UI
* implemented AgsMidiCCDialog
* implemented AgsMidiCCEditor
* implemented AgsAudioTreeDispatcher
* fixed ags_recall.h MIDI 1 and 2 CC macros and enum
* improved ags_recall_midi1_control_change() completed missing functionality
* improved ags_recall_midi2_control_change() completed missing functionality
* improved AgsDial small refactoring
* improved AgsHybridSynth label text enumerating starting from 1
* improved AgsQuantumSynth label text enumerating starting from 1
* improved AgsStargazerSynth label text enumerating starting from 1
* improved AgsRavenSynth label text enumerating starting from 1
* refactored all AgsMachine implementations supporting MIDI CC
* refactored AgsEffectBulk to support MIDI CC for plugins
* refactored AgsLine to support MIDI CC for plugins
* refactored AgsEffectLine to support MIDI CC for plugins
* minor bug-fixes
ags (7.8.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* minor improvements
ags (7.7.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved menubar on macOS work-around of failed action parameter
ags (7.7.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed target install-html-mkdir in Makefile.am
* fixed variant type in ags_gsequencer_application.c
ags (7.7.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented vector accelerated conditional compiled code in ags_raven_synth_util.c
ags (7.7.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed AgsMidiDialog uniform close-request behaviour
* fixed AgsMachineEditorDialog uniform close-request behaviour
* fixed AgsConnectionEditorDialog uniform close-request behaviour
* fixed AgsEnvelopeDialog uniform close-request behaviour
* fixed AgsPresetDialog uniform close-request behaviour
* fixed AgsWaveExportDialog uniform close-request behaviour
ags (7.7.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved AgsCoreAudioPort hw output no sync while starting playback on macOS
ags (7.7.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved ags-fx-pattern counter change absolute note offset
* improved AgsCoreAudioMidiin async fill MIDI buffer, disabled extra synchronization with audio HW on macOS
ags (7.7.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags-fx-pattern counter change absolute note offset
ags (7.7.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags-fx-pattern counter check has 16th pulse
* fixed machine selector popup menu move down
ags (7.7.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed phase sync of ags_raven_synth_util.c
ags (7.7.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed missing persistency of AgsRavenSynth
* improved ags_seq_synth_util.c vibrato enabled
* improved ags_raven_synth_util.c vibrato enabled
ags (7.7.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved ags-fx-raven-synth with dedicated synth buffer
* fixed ags_seq_synth_util.c check vibrato_enabled
* fixed ags_raven_synth_util.c check vibrato_enabled
ags (7.7.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed missing volume and tuning sequencer in ags_raven_synth_util.c
ags (7.7.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented AgsLowPassFilterUtil based on Invada Studio LADSPA plugin
* implemented AgsAmplifierUtil based on Fil LADSPA plugin
* implemented ags-fx-raven-synth
* implemented AgsRavenSynth
* implemented ags_raven_synth_util.[ch]
* fixed ags-fx-star-synth sync LFO freq 0 and 1 default value
* fixed AgsQuantumSynth missing callback of control synth_0_seq_tuning_lfo_frequency
* fixed AgsQuantumSynth missing callback of control synth_0_seq_volume_lfo_frequency
* fixed AgsQuantumSynth missing callback of control synth_1_seq_tuning_lfo_frequency
* fixed AgsQuantumSynth missing callback of control synth_1_seq_volume_lfo_frequency
* fixed AgsQuantumSynth missing refresh_port() of control synth_0_seq_tuning_lfo_frequency
* fixed AgsQuantumSynth missing refresh_port() of control synth_0_seq_volume_lfo_frequency
* fixed AgsQuantumSynth missing refresh_port() of control synth_1_seq_tuning_lfo_frequency
* fixed AgsQuantumSynth missing refresh_port() of control synth_1_seq_volume_lfo_frequency
* minor improvements
ags (7.6.18)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed multi-channel wave form editor clipboard paste
ags (7.6.17)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed libsoup online references in Ags.conf.in and AgsAudio.conf.in for gi-docgen
* fixed https URLs in Ags.conf.in, AgsAudio.conf.in and AgsGui.conf.in
ags (7.6.16)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed wave form editor clipboard
ags (7.6.15)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented 60 and 75 Hz thread max precision in performance preferences
* fixed wave form editor clipboard
* fixed remaining sscanf() string allocation
ags (7.6.14)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed sscanf() string allocation in ags_composite_editor_paste_wave_async()
* fixed sscanf() string allocation in ags_wave_insert_base64_from_clipboard_extended()
ags (7.6.13)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented missing base64 clipboard for float, double and AgsComplex
* fixed wave form editor selection tool
* fixed ags_notation_find_near_timestamp()
* fixed ags_automation_find_near_timestamp()
* fixed ags_automation_find_near_timestamp_extended()
* fixed ags_wave_find_near_timestamp()
* fixed time accounting of audio loop and settings by soundcard thread
* improved AgsCompositeEditor wave form clipboard
* improved reset scrollbars for wave form editor after zoom
ags (7.6.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved ags-fx-pattern ::counter-change() event
* improved ags-fx-notation ::key_on() event
* improved AgsCompositeEditor wave form clipboard
* TODO:JK: implement ags_machine_selector_popup_refresh_machine()
* TODO:JK: implement ags_machine_selector_refresh_machine_radio_button()
ags (7.6.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed install_data() on macOS missing argument to string function
* minor improvements
ags (7.6.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed drum open response callback set flags
AGS_FILE_WIDGET_WITH_MULTI_SELECTION earlier
ags (7.6.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed buffer-overflow with recently-used in file widget
* fixed unit and functional tests to work with gcc-15
ags (7.6.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved AgsAppActionUtil file widget with macOS sandbox
* improved AgsExportSoundcard file widget with macOS sandbox
* improved AgsLinkEditor file widget with macOS sandbox
* improved AgsMidiImportWizard file widget with macOS sandbox
* improved AgsMidiExportWizard file widget with macOS sandbox
* improved AgsWaveExportDialog file widget with macOS sandbox
* improved AgsPresetEditor file widget with macOS sandbox
* improved AgsDrum file widget with macOS sandbox
* improved AgsDrumInputPad file widget with macOS sandbox
* improved AgsAudiorec file widget with macOS sandbox
* improved AgsPitchSampler file widget with macOS sandbox
* improved AgsFFPlayer file widget with macOS sandbox
* improved AgsSF2Synth file widget with macOS sandbox
* improved AgsSFZSynth file widget with macOS sandbox
ags (7.6.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ladspa plugin ref count
* minor improvements
ags (7.6.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed fx factory ref count on return value
ags (7.6.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed initial value ags-fx-sf2-synth, ags-fx-sfz-synth,
ags-fx-star-synth and ags-fx-seq-synth of pitch type
* fixed AgsQuantumSynth pitch type callback
ags (7.6.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved all soundcard backends init delay_counter
ags (7.6.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed all soundcard backends ::tic() correct delay_counter check
ags (7.6.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved all soundcard backends ::tic()
+ fixed race-condition while start playback
ags (7.6.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved ags_fx_notation_audio_processor_counter_change() 16th pulse
ags (7.6.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented enable envelope LFO button in UI
* implemented AGS_NOTE_ENVELOPE_LFO flag
* implemented ags_note_flags_get_type()
* implemented enabling envelope LFO in ags-fx-envelope
* improved call recursive run stage only if default soundcard
available and is playing
+ fixed race-condition while start playback
* reverted ags_check_system_functional_programs_ui
ags (7.5.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved AgsTrackMapper make use of AgsMachineUtil
* fixed AgsTrackMapper resize channels
* fixed AgsOscMeterController unref port twice
* fixed AgsOscMeterController missing copy function
* minor improvements
ags (7.5.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* minor improvements
ags (7.5.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved macOS dark theme
ags (7.5.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved play button
* improved macOS dark theme
ags (7.5.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved notation, automation and wave form editor
* minor improvements
ags (7.5.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented AgsQuantumSynth
* implemented ags-fx-seq-synth
* implemented ags_seq_synth_util.[ch]
* implemented AgsFileEntry
* fixed ags_star_synth_util.[ch] missing iteration of offset
* fixed AgsOscMeterController missing ref/unref monitor
* minor improvements
ags (7.4.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed AgsFileDialog to activate GtkEntry while get filename
* fixed AgsFileDialog don't allow / as basename
* fixed AgsPCMFileDialog don't allow / as basename
ags (7.4.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed potential buffer overflow with ags-fx-lv2
ags (7.4.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* added missing symbols
ags (7.4.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* minor improvements to ags-fx-lv2
ags (7.4.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved make use of LV2 atom forge
* minor bug-fixes related to Lv2 support
ags (7.4.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved ags_lv2_plugin_atom_sequence_append_midi()
* improved ags_lv2_plugin_atom_sequence_remove_midi()
ags (7.4.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* removed static const modifiers from string vectors
ags (7.4.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed aligned memory in ags_lv2_plugin.c atom port
ags (7.4.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed ags_fluid_interpolate_4th_order_util.c potential buffer
overflow
* fixed ags_fluid_interpolate_7th_order_util.c potential buffer
overflow
* fixed ags-fx-lv2 unsigned integer with atom port and other
improvements
ags (7.4.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented pitch type persistence using project XML file
* fixed stargazer synth LFO oscillator control
* fixed stargazer synth pitch type control
ags (7.4.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed stargazer synth missing octave control
* implemented missing ags_stargazer_synth_refresh_port()
ags (7.4.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved AgsExportWindow signal handling
* improved AgsNavigation signal handling
ags (7.4.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented AgsStargazerSynth
* implemented ags_star_synth_util.c FM synth supporting vibrato
* implemented ags-fx-star-synth FM synth with phase modulation
* implemented persistency of AgsStargazerSynth
* implemented ags_atomic.h
* modified C standard to gnu11
* removed all volatile modifiers
* refactored GSequencer to use ags_atomic.h
* minor improvements
ags (7.3.29)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed added missing cast
ags (7.3.28)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* reverted many changes to 7.3.5 in ags_core_audio_port.c
* minor improvements
ags (7.3.27)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved debugging messages of CoreAudio
ags (7.3.26)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed compile error
ags (7.3.25)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed typos
* minor improvements
ags (7.3.24)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved error detection with CoreAudio
ags (7.3.23)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed misconfigured CoreAudio
* modified copy input using memcpy()
ags (7.3.22)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed audio object selector of CoreAudio input
* fixed save copy buffer size adjustment in
ags_core_audio_port_hw_input_callback()
ags (7.3.21)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved non-interleaved stream
ags (7.3.20)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed missing buffer size
ags (7.3.19)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* disabled configure format
ags (7.3.18)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved configure format
ags (7.3.17)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved configure format
ags (7.3.16)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved configure format from current format with CoreAudio
ags (7.3.15)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed compiler errors
ags (7.3.14)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed detect non-interleaved buffers with CoreAudio
ags (7.3.13)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed CoreAudio buffer size
ags (7.3.12)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* experimental CoreAudio pre-sync functionality
ags (7.3.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* updated user's handbook to explain shift behavior within notation and
automation editor
* fixed always use AGS_SOUNDCARD_FLOAT on macOS with AgsCoreAudioPort
ags (7.3.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved default format of soundcard editor on macOS
* minor bug-fixes
ags (7.3.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved CoreAudio usage of AgsSoundServer
::register-soundcard-with-params()
* fixed missing initializer of format in ags_core_audio_port_register()
ags (7.3.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* changed CoreAudio input data type from gint16 to gint32
ags (7.3.7)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* work-around for not proper applying presets with CoreAudio
ags (7.3.6)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented set floating point format of CoreAudio
* fixed set CoreAudio stream format
* fixed various format bugs
ags (7.3.5)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* reenabled copying resources on macOS
ags (7.3.4)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed meson build
ags (7.3.3)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* improved CoreAudio recording
* fixed open download script
ags (7.3.2)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* show download on macOS
* modified data type in ags_core_audio_port.c from gint16 to gfloat
ags (7.3.1)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* removed set sensitive calls to soundcard editor, always allow the
user to edit
ags (7.3.0)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* added optional VTE dependency
* fixed preferences soundcard order
* fixed audio connection hide on close
ags (7.2.11)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed file dialog single selection open
* improved signal handling of check and toggle buttons, listen to
property active
ags (7.2.10)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed potential SIGSEGV in ags_export_window.c after removed
soundcard editor
ags (7.2.9)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* fixed export window initial backend and card
* fixed export window initial filename
ags (7.2.8)
[ Joël Krähemann (Maintainer of Advanced Gtk+ Sequencer) ]
* implemented download samples link
ags (7.2.7)