generated from cfillion/reapack-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
2278 lines (2233 loc) · 360 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<index version="1" name="Suzuki Scripts" commit="9d1abf28345bcc1c4f11059df0f4c3e90a5f22ab">
<category name="Development">
<reapack name="Suzuki_Check stereo channels input bitmask for last touched track or take FX (inside Container).lua" type="script" desc="Check stereo channels input bitmask for last touched track or take FX (inside Container)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-07T11:38:03Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/427a9aee45d06587556d507c848ab451df628632/Development/Suzuki_Check%20stereo%20channels%20input%20bitmask%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Check stereo channels output bitmask for last touched track or take FX (inside Container).lua" type="script" desc="Check stereo channels output bitmask for last touched track or take FX (inside Container)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-07T10:46:05Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/ce6f7a9cb82732e09e5deda9c74992d8dfc11a06/Development/Suzuki_Check%20stereo%20channels%20output%20bitmask%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container).lua</source>
</version>
</reapack>
</category>
<category name="Envelopes">
<reapack name="Suzuki_Toggle show hide visible envelope for last touched track or take FX (inside Container) parameter.lua" type="script" desc="Toggle show/hide visible envelope for last touched track or take FX (inside Container) parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.0+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-13T13:46:43Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/ab0a6d1a13f518f21855a20e8d7d9b21f34ba442/Envelopes/Suzuki_Toggle%20show%20hide%20visible%20envelope%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-11-13T21:42:52Z">
<changelog><![CDATA[Utilized API (v7.05+dev1113) for FX inside Container]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/d5d434b1f54a4265db5421a39fac4f27cfff6581/Envelopes/Suzuki_Toggle%20show%20hide%20visible%20envelope%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
<version name="1.2" author="Suzuki" time="2023-11-24T12:03:18Z">
<changelog><![CDATA[Changed the description]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/d9b2b2d334a3123096253926e849ed5d8ab3068a/Envelopes/Suzuki_Toggle%20show%20hide%20visible%20envelope%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
</reapack>
</category>
<category name="FX">
<reapack name="Suzuki_Add stereo channels to last touched track or take FX (inside Container) input and output channel mappings (User Input).lua" type="script" desc="Add stereo channels to last touched track or take FX (inside Container) input and output channel mappings (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T12:08:28Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/e22ff0d462f7c1cdf26d4b30eff3a1e00b043ca3/FX/Suzuki_Add%20stereo%20channels%20to%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20and%20output%20channel%20mappings%20(User%20Input).lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-10T05:17:45Z">
<changelog><![CDATA[fixed wording]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9469b5f1e16ae804d6e1ca19f048b0a3c22719a5/FX/Suzuki_Add%20stereo%20channels%20to%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20and%20output%20channel%20mappings%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Add stereo channels to last touched track or take FX (inside Container) input channel mappings (User Input).lua" type="script" desc="Add stereo channels to last touched track or take FX (inside Container) input channel mappings (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T10:10:51Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/f79594f507368509a91b6e4a94bfab2475dd6d58/FX/Suzuki_Add%20stereo%20channels%20to%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20channel%20mappings%20(User%20Input).lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-09T12:06:58Z">
<changelog><![CDATA[Bug fix for track FX]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/0e28f94e3cbd0d9be2037d76d4914f20f512bbc8/FX/Suzuki_Add%20stereo%20channels%20to%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20channel%20mappings%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Add stereo channels to last touched track or take FX (inside Container) output channel mappings (User Input).lua" type="script" desc="Add stereo channels to last touched track or take FX (inside Container) output channel mappings (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T10:08:40Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/a4d751777e5b2653584f6d57a0e06b48a44b8fbc/FX/Suzuki_Add%20stereo%20channels%20to%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20channel%20mappings%20(User%20Input).lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-09T12:14:32Z">
<changelog><![CDATA[Bug fix for track FX]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/56550ea21139faa1a463aaf459293c6b0b42e311/FX/Suzuki_Add%20stereo%20channels%20to%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20channel%20mappings%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating take FX (inside Container) windows.lua" type="script" desc="Close all floating take FX (inside Container) windows">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 v7.07+ script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:36:56Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9ddb6c4e2f4e6d87fabd5e0e161f8ea64b35d580/FX/Suzuki_Close%20all%20floating%20take%20FX%20(inside%20Container)%20windows.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track (incl. input and monitoring) FX (inside Container) windows for all tracks (incl. master track).lua" type="script" desc="Close all floating track (incl. input and monitoring) FX (inside Container) windows for all tracks (incl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7 script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:36:56Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9ddb6c4e2f4e6d87fabd5e0e161f8ea64b35d580/FX/Suzuki_Close%20all%20floating%20track%20(incl.%20input%20and%20monitoring)%20FX%20(inside%20Container)%20windows%20for%20all%20tracks%20(incl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track (incl. input and monitoring) FX (inside Container) windows for selected tracks (incl. master track).lua" type="script" desc="Close all floating track (incl. input and monitoring) FX (inside Container) windows for selected tracks (incl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7 script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:36:56Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9ddb6c4e2f4e6d87fabd5e0e161f8ea64b35d580/FX/Suzuki_Close%20all%20floating%20track%20(incl.%20input%20and%20monitoring)%20FX%20(inside%20Container)%20windows%20for%20selected%20tracks%20(incl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track and take (incl. input and monitoring) FX (inside Container) windows (incl. master track).lua" type="script" desc="Close all floating track and take (incl. input and monitoring) FX (inside Container) windows (incl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:36:56Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9ddb6c4e2f4e6d87fabd5e0e161f8ea64b35d580/FX/Suzuki_Close%20all%20floating%20track%20and%20take%20(incl.%20input%20and%20monitoring)%20FX%20(inside%20Container)%20windows%20(incl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track FX (inside Container) windows for all tracks (excl. master track).lua" type="script" desc="Close all floating track FX (inside Container) windows for all tracks (excl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7 script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-03T06:55:26Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/6df36d7908a56b5158e379360159d7ce2df55503/FX/Suzuki_Close%20all%20floating%20track%20FX%20(inside%20Container)%20windows%20for%20all%20tracks%20(excl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track FX (inside Container) windows for all tracks (incl. master track).lua" type="script" desc="Close all floating track FX (inside Container) windows for all tracks (incl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7 script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-03T06:55:26Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/6df36d7908a56b5158e379360159d7ce2df55503/FX/Suzuki_Close%20all%20floating%20track%20FX%20(inside%20Container)%20windows%20for%20all%20tracks%20(incl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track FX (inside Container) windows for selected tracks (excl. master track).lua" type="script" desc="Close all floating track FX (inside Container) windows for selected tracks (excl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7 script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-03T04:15:39Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/fe10cd3b6f6ab727b03216b0d46fea069df0a2f8/FX/Suzuki_Close%20all%20floating%20track%20FX%20(inside%20Container)%20windows%20for%20selected%20tracks%20(excl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all floating track FX (inside Container) windows for selected tracks (incl. master track).lua" type="script" desc="Close all floating track FX (inside Container) windows for selected tracks (incl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7 script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-03T04:15:59Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/85cab3ce205527ef17eb748aee3a308fbe979e29/FX/Suzuki_Close%20all%20floating%20track%20FX%20(inside%20Container)%20windows%20for%20selected%20tracks%20(incl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all FX windows.lua" type="script" desc="Close all FX windows">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API. Literally close all FX related windows including chain and floating windows for track FX, master track FX, take FX, monitoring FX, input FX, and FX in container\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:36:56Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9ddb6c4e2f4e6d87fabd5e0e161f8ea64b35d580/FX/Suzuki_Close%20all%20FX%20windows.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close all track and take (incl. input and monitoring) FX chain windows (incl. master track).lua" type="script" desc="Close all track and take (incl. input and monitoring) FX (inside Container) chain windows (incl. master track)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Close literally all FX chain windows\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:36:56Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9ddb6c4e2f4e6d87fabd5e0e161f8ea64b35d580/FX/Suzuki_Close%20all%20track%20and%20take%20(incl.%20input%20and%20monitoring)%20FX%20chain%20windows%20(incl.%20master%20track).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Close last touched floating track or take FX (inside Container) window.lua" type="script" desc="Close last touched floating track or take FX (inside Container) window">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API. It works for all kinds of floating FX window, such as input FX, monitoring FX, track FX, take FX, and FX in container\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-12T11:55:30Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/e99ac91ffb1a69752bf77c5af4eace61fff5c6af/FX/Suzuki_Close%20last%20touched%20floating%20track%20or%20take%20FX%20(inside%20Container)%20window.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Copy stereo input and output channel pin mappings from last touched track or take FX (inside Container).lua" type="script" desc="Copy stereo input and output channel pin mappings from last touched track or take FX (inside Container)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API, up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T17:20:33Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/b014dc612d102580f9e5f52d49c1c0d62b866a37/FX/Suzuki_Copy%20stereo%20input%20and%20output%20channel%20pin%20mappings%20from%20last%20touched%20track%20or%20take%20FX%20(inside%20Container).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Copy stereo input channel pin mappings from last touched track or take FX (inside Container).lua" type="script" desc="Copy stereo input channel pin mappings from last touched track or take FX (inside Container)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API, up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T07:07:08Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/33dbdfc7aee91a4427ffc91ab6c0b0c9203417c7/FX/Suzuki_Copy%20stereo%20input%20channel%20pin%20mappings%20from%20last%20touched%20track%20or%20take%20FX%20(inside%20Container).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Copy stereo output channel pin mappings from last touched track or take FX (inside Container).lua" type="script" desc="Copy stereo output channel pin mappings from last touched track or take FX (inside Container)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API, up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T06:19:28Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9685a4b1f20db1a2450cb5e44a6b0d50e551244f/FX/Suzuki_Copy%20stereo%20output%20channel%20pin%20mappings%20from%20last%20touched%20track%20or%20take%20FX%20(inside%20Container).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Paste channel pin mappings into last touched track or take FX (inside Container) stereo input and output channel pin mappings.lua" type="script" desc="Paste channel pin mappings into last touched track or take FX (inside Container) stereo input and output channel pin mappings">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API, up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T17:20:33Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/b014dc612d102580f9e5f52d49c1c0d62b866a37/FX/Suzuki_Paste%20channel%20pin%20mappings%20into%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20stereo%20input%20and%20output%20channel%20pin%20mappings.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Paste channel pin mappings into last touched track or take FX (inside Container) stereo input channel pin mappings.lua" type="script" desc="Paste channel pin mappings into last touched track or take FX (inside Container) stereo input channel pin mappings">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API, up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T07:07:08Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/33dbdfc7aee91a4427ffc91ab6c0b0c9203417c7/FX/Suzuki_Paste%20channel%20pin%20mappings%20into%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20stereo%20input%20channel%20pin%20mappings.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Paste channel pin mappings into last touched track or take FX (inside Container) stereo output channel pin mappings.lua" type="script" desc="Paste channel pin mappings into last touched track or take FX (inside Container) stereo output channel pin mappings">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API, up to 128 channels\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T06:14:49Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c582a250ddceb07df4d4adccbf18cea3044a18bb/FX/Suzuki_Paste%20channel%20pin%20mappings%20into%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20stereo%20output%20channel%20pin%20mappings.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-09T06:43:26Z">
<changelog><![CDATA[Bug fix for container FX]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/7de8877f7546c0ed739b160eaee4581fb7b60a22/FX/Suzuki_Paste%20channel%20pin%20mappings%20into%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20stereo%20output%20channel%20pin%20mappings.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) input and output channel pin mappings to stereo channels (User Input).lua" type="script" desc="Set last touched track or take FX (inside Container) input and output channel pin mappings to stereo channels (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-10T05:40:32Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/6a379b6c58db8af58fd6b1cd207f77aa39bbe962/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20and%20output%20channel%20pin%20mappings%20to%20stereo%20channels%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) input channel pin mappings to stereo channels (User Input).lua" type="script" desc="Set last touched track or take FX (inside Container) input channel pin mappings to stereo channels (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T10:22:12Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/20815068f7aab9217e0eda094c260108c64c60e1/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20channel%20pin%20mappings%20to%20stereo%20channels%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) input stereo channels to 31-32.lua" type="script" desc="Set last touched track or take FX (inside Container) input stereo channels to 31-32">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-10T09:20:12Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/e2a0273584f10e98ee8df739f8114ca080c195a7/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20stereo%20channels%20to%2031-32.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-10T12:54:53Z">
<changelog><![CDATA[bug fix]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/89a6ceb53c6beaadf11e7c200beafa9c2e52de4f/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20stereo%20channels%20to%2031-32.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) input stereo channels to 63-64.lua" type="script" desc="Set last touched track or take FX (inside Container) input stereo channels to 63-64">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using 7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-10T09:20:12Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/e2a0273584f10e98ee8df739f8114ca080c195a7/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20stereo%20channels%20to%2063-64.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-10T09:33:07Z">
<changelog><![CDATA[Forgot to add container fx and take fx]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/6c0fe02498cddced4ac55bde0460666f4c05f1af/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20input%20stereo%20channels%20to%2063-64.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) output channel pin mappings to stereo channels (User Input).lua" type="script" desc="Set last touched track or take FX (inside Container) output channel pin mappings to stereo channels (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-09T10:04:39Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8114401a0a5cf26e1965584571c94898a3652c99/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20channel%20pin%20mappings%20to%20stereo%20channels%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) output channel pin mappings to stereo channels and send it to a new track in bus (User Input).lua" type="script" desc="Set last touched track or take FX (inside Container) output channel pin mappings to stereo channels and send it to a new track in bus (User Input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API. Set FX's output and send it to a new track in a bus track via user input. If there's already the same channel send, it won't create a new track.\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-15T12:04:07Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/1eec70932165ced84128e22c1ca12a8f81c60748/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20channel%20pin%20mappings%20to%20stereo%20channels%20and%20send%20it%20to%20a%20new%20track%20in%20bus%20(User%20Input).lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) output stereo channels to 125-126.lua" type="script" desc="Set last touched track or take FX (inside Container) output stereo channels to 125-126">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07 API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-10T13:05:05Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8d5ddcf712f38df7578625710e0654bfb0a2118f/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20stereo%20channels%20to%20125-126.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) output stereo channels to 127-128.lua" type="script" desc="Set last touched track or take FX (inside Container) output stereo channels to 127-128">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07 API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-10T13:05:05Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8d5ddcf712f38df7578625710e0654bfb0a2118f/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20stereo%20channels%20to%20127-128.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Set last touched track or take FX (inside Container) output stereo channels to 95-96.lua" type="script" desc="Set last touched track or take FX (inside Container) output stereo channels to 95-96">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.07+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-12-10T13:09:00Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/309425b12f4c4fb3e2964a0cb9eb8d90e40b9390/FX/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20output%20stereo%20channels%20to%2095-96.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle map to the root container parameter for last touched track or take FX parameter.lua" type="script" desc="Toggle map to the root container parameter for last touched track or take FX parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.06+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-24T11:28:47Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/7e33f8234a5b378c1917e2a4cdd9abf18790deda/FX/Suzuki_Toggle%20map%20to%20the%20root%20container%20parameter%20for%20last%20touched%20track%20or%20take%20FX%20parameter.lua</source>
</version>
</reapack>
</category>
<category name="lewloiwc's Sound Design Suite">
<reapack name="lewloiwc's Sound Design Suite.jsfx" type="effect" desc="lewloiwc's Sound Design Suite">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 lewloiwc's Sound Design Suite\par}
{\pard \ql \f0 \sa180 \li0 \fi0 PLEASE NOTE: It works well as is, but no further development and support is provided. Please report bugs or whatnot with improved code example to {\field{\*\fldinst{HYPERLINK "https://forum.cockos.com/showthread.php?t=285649"}}{\fldrslt{\ul
the forum thread
}}}
. I (Suzuki) will update files on behalf of the original author.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 MIDI Trigger Envelope\par}
{\pard \ql \f0 \sa180 \li0 \fi0 You can find demo {\field{\*\fldinst{HYPERLINK "https://www.youtube.com/watch?v=nptIbDvUsUI"}}{\fldrslt{\ul
here
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Open Delay\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Open Delay is a JSFX that allows third-party effects to be placed in the feedback loop.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Open Delay has "Open Delay (Receive Mode)" and "Open Delay (Send Mode)" connected as one pair with the same ID. This ID is the second one from the top of the parameter. If you want to use more than one Open Delay in a single project, you must manually specify a different ID for each Open Delay pair.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 We recommend that you do not casually turn off the Hard Clip and DC Filter. Turning them off may amplify the signal up to 6134 dBFS or generate a tremendous amount of DC signal, depending on the effects used in the feedback loop. If you still want to turn them off, we recommend placing your own DC filter or limiter as a post-effect of Open Delay.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 You can find {\field{\*\fldinst{HYPERLINK "https://youtu.be/jJBtLQs6JEg?t=61"}}{\fldrslt{\ul
demo video
}}}
, {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/3e45Rk3.png"}}{\fldrslt{\ul
routing example
}}}
, and {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/d8vLf1P.png"}}{\fldrslt{\ul
FX chain example
}}}
here.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Sample Warp - Texture Mode\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Sample warping effects like Akaizer and Ableton Live's Texture Mode. Drag/drop your sample into UI and tweak parameters. See the discussion regarding this effect and ReaReaRea {\field{\*\fldinst{HYPERLINK "https://forum.cockos.com/showthread.php?p=2627099"}}{\fldrslt{\ul
here
}}}
, and the demo video {\field{\*\fldinst{HYPERLINK "https://www.youtube.com/watch?v=OyB5l70wkIA"}}{\fldrslt{\ul
here
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Known Issues: UI is not updated even though sample is loaded.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Sidechain Erosion\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Sidechain Erosion itself does not contain an oscillator, and works by inputting an external signal to the sidechain. MeldaProduction's MOscillator or MNoiseGenerator are convenient for the external signal.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The sidechain input will work as intended according to the Amount setting for 0 dBFS, but you can input up to around 13.9 dBFS (linear units of about \u177?5.0, with 0 dBFS being \u177?1.0). This is to allow smooth operation even if the amplitude exceeds 0 dBFS, such as by putting a filter after an oscillator set to 0 dBFS. The maximum Amount can be changed from {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/SPxGlLi.png"}}{\fldrslt{\ul
the configuration
}}}
. The reason for making it adjustable is that with a lower maximum range, pdc can also be suppressed lower, and I'd like to let users adjust it.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/oO4MPb3.png"}}{\fldrslt{\ul
Usage example
}}}
\par}
}
]]></description>
</metadata>
<version name="1.0.0" author="lewloiwc" time="2023-11-27T22:19:38Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source file="SoundDesign_Dependencies/more_graphics.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/25a8e1b16cf06035cbfa1836d1a335fdd4d3c6d2/lewloiwc's%20Sound%20Design%20Suite/SoundDesign_Dependencies/more_graphics.jsfx-inc</source>
<source file="SoundDesign_Dependencies/more_math_functions.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/25a8e1b16cf06035cbfa1836d1a335fdd4d3c6d2/lewloiwc's%20Sound%20Design%20Suite/SoundDesign_Dependencies/more_math_functions.jsfx-inc</source>
<source file="lewloiwc_midi_trigger_envelope.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/25a8e1b16cf06035cbfa1836d1a335fdd4d3c6d2/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_midi_trigger_envelope.jsfx</source>
<source file="lewloiwc_open_delay.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/25a8e1b16cf06035cbfa1836d1a335fdd4d3c6d2/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_open_delay.jsfx</source>
<source file="lewloiwc_sample_warp_texture_mode.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/25a8e1b16cf06035cbfa1836d1a335fdd4d3c6d2/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_sample_warp_texture_mode.jsfx</source>
<source file="lewloiwc_sidechain_erosion.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/25a8e1b16cf06035cbfa1836d1a335fdd4d3c6d2/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_sidechain_erosion.jsfx</source>
</version>
<version name="1.0.1" author="lewloiwc" time="2023-11-28T12:39:22Z">
<changelog><![CDATA[Added a container preset file]]></changelog>
<source file="Open_Delay_Examples_in_Container.RPL">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/Open_Delay_Examples_in_Container.RPL</source>
<source file="SoundDesign_Dependencies/more_graphics.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/SoundDesign_Dependencies/more_graphics.jsfx-inc</source>
<source file="SoundDesign_Dependencies/more_math_functions.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/SoundDesign_Dependencies/more_math_functions.jsfx-inc</source>
<source file="lewloiwc_midi_trigger_envelope.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_midi_trigger_envelope.jsfx</source>
<source file="lewloiwc_open_delay.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_open_delay.jsfx</source>
<source file="lewloiwc_sample_warp_texture_mode.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_sample_warp_texture_mode.jsfx</source>
<source file="lewloiwc_sidechain_erosion.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/10fd04e87caf477632676b51de46ce8e12c18b02/lewloiwc's%20Sound%20Design%20Suite/lewloiwc_sidechain_erosion.jsfx</source>
</version>
</reapack>
</category>
<category name="lewloiwc's Splitter Suite">
<reapack name="lewloiwc's Splitter Suite.jsfx" type="effect" desc="lewloiwc's Splitter Suite">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 lewloiwc's Splitter Suite\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Import Splitter Template.RPL as Container preset in order to see the example settings.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 PLEASE NOTE: It works well as is, but no further development and support is provided. Please report bugs or whatnot with improved code example to the forum thread. I (Suzuki) will update files on behalf of the original author.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Amplitude Splitter\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Envelope Follower\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Envelope Follower changes the amount of division according to the size of the original signal. ({\field{\*\fldinst{HYPERLINK "https://i.imgur.com/v3cVMgY.png"}}{\fldrslt{\ul
Screenshot
}}}
)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Gate Split\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Gate divides the signal by the amplitude. ({\field{\*\fldinst{HYPERLINK "https://i.imgur.com/rIOR1cm.png"}}{\fldrslt{\ul
Screenshot
}}}
)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Transient Split\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Transient splits the signal between the attack and the rest of the signal. ({\field{\*\fldinst{HYPERLINK "https://i.imgur.com/T3cIfZM.png"}}{\fldrslt{\ul
Screenshot
}}}
)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Detection Speed: Lowering this parameter will make it more responsive to transients of higher BPMs, but it also increases the potential for false detections.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 See the example of routings {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/BrESMce.png"}}{\fldrslt{\ul
here
}}}
and {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/hpbqS5I.png"}}{\fldrslt{\ul
here
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Frequency Splitter\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Band and Notch\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/UmFoyFt.png"}}{\fldrslt{\ul
Butterworth 12 dB/oct
}}}
does not rotate phase when the Band and Notch gains are the same; {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/z2nlrwl.png"}}{\fldrslt{\ul
Linkwitz-Riley 24 dB/oct
}}}
always rotates phase, but the sum of the frequency responses result is probably linear. I have the impression that this is used in de-esser.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Comb and Phaser Splitter\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Comb and Phaser are experimental division methods. They are suited for sound design. See {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/jCpWW1U.png"}}{\fldrslt{\ul
Screenshot 1
}}}
and {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/vWU2H0T.png"}}{\fldrslt{\ul
Screenshot 2
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Linkwitz-Riley (Minimum Phase)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Linkwitz-Riley has a consistent band-by-band frequency response and does not peak or dip when summed, but does cause phase rotation at the crossover point when created with Minimum Phase. Most vst frequency splitters probably use this method.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 See {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/bh3NGly.png"}}{\fldrslt{\ul
12 dB/oct
}}}
, {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/IAdX651.png"}}{\fldrslt{\ul
24 dB/oct
}}}
, {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/XdL569r.png"}}{\fldrslt{\ul
36 dB/oct
}}}
, and {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/1Zv21an.png"}}{\fldrslt{\ul
48 dB/oct
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Different slopes can be set for each crossover point, for example {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/3LkoJlo.png"}}{\fldrslt{\ul
12 dB/oct and 36 dB/oct
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Linkwitz-Riley (Linear Phase)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Linkwitz-Riley (Linear Phase) has no phase rotation and can be set to any dB/oct that is not in 12 increments, but it does have pre ringing and latency. I have not verified this, but the Linear Phase on the FabFilter Pro-MB probably uses this method. ({\field{\*\fldinst{HYPERLINK "https://i.imgur.com/ysAJq9D.png"}}{\fldrslt{\ul
Screenshot
}}}
)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Butterworth (Minimum Phase)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Butterworth has a crossover point of -3 dB. This causes it to behave a little differently than Linkwitz-Riley.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 See {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/PNpufua.png"}}{\fldrslt{\ul
6 dB/oct
}}}
, {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/377olVl.png"}}{\fldrslt{\ul
18 dB/oct
}}}
, {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/4X59dkD.png"}}{\fldrslt{\ul
30 dB/oct
}}}
, and {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/Cuu9HOl.png"}}{\fldrslt{\ul
42 dB/oct
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This can also be set to a different slope for each crossover point, for example {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/7HauoZ8.png"}}{\fldrslt{\ul
6 dB/oct and 30 dB/oct
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Sinc Splitter (Linear Phase)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Sinc (Linear Phase) is the frequency splitter with the sharpest slope. The shape of the slope varies considerably depending on the frequency of the crossover point, the IR Length, and the Window used. Since this is a Linear Phase, pre ringing and latency will occur. ({\field{\*\fldinst{HYPERLINK "https://i.imgur.com/eZGw1vS.png"}}{\fldrslt{\ul
Screenshot
}}}
)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 ReaX\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/JuSNjiT.png"}}{\fldrslt{\ul
Screenshot 1
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The features of this method are that there is no phase rotation when the gains of all bands are the same, the computational load is small even if the number of bands is increased, the shape of the segmentation is not consistent, and changing the gain of each band will result in a strange frequency response when summed. Perhaps this method is called Parallel Equalizer, which does the same thing as {\field{\*\fldinst{HYPERLINK "https://www.youtube.com/watch?v=xDlZjmxWChM"}}{\fldrslt{\ul
this video
}}}
.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/mOmB3at.png"}}{\fldrslt{\ul
Screenshot 2
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The red lines are the respective divided bands, the light blue line is the summed result, the blue line is the 12 dB/oct slope, and the green line is the 6 dB/oct slope. It looks like the HPF slope is 6 dB/oct and the LPF slope is 12 dB/oct. At the time of division, the frequency response exceeds 0 dB, but when summed, it flattens out nicely.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/nRJlXYd.png"}}{\fldrslt{\ul
Screenshot 3
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The red line is the frequency response of each band, and the light blue line is the summed result. The dip occurs around 3 kHz.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Inflator\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://i.imgur.com/tPc1dXu.png"}}{\fldrslt{\ul
This
}}}
is the Band Split method used by Oxford Inflator. The slope is 6 dB/oct, and as with ReaX, no phase rotation occurs when all bands have the same gain.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 StudioRack\par}
{\pard \ql \f0 \sa180 \li0 \fi0 StudioRack MultiBand Split uses a slightly different filter that is neither Butterworth filter nor Linkwitz-Riley filter.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Disclaimer\par}
{\pard \ql \f0 \sa180 \li0 \fi0 All product names and trademarks are the property of their respective owners, which are in no way associated or affiliated with us. Product names are used solely for the purpose of identifying the specific products that were studied during development process and for describing certain types of splitting methods produced with our reverse-engineering. Use of these names does not imply any co-operation or endorsement.\par}
}
]]></description>
</metadata>
<version name="1.0.0" author="lewloiwc" time="2023-11-27T23:50:20Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source file="Splitter_Dependencies/more_graphics.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/Splitter_Dependencies/more_graphics.jsfx-inc</source>
<source file="Splitter_Dependencies/more_math_functions.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/Splitter_Dependencies/more_math_functions.jsfx-inc</source>
<source file="lewloiwc_amplitude_splitter_envelope_follower.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_envelope_follower.jsfx</source>
<source file="lewloiwc_amplitude_splitter_gate.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_gate.jsfx</source>
<source file="lewloiwc_amplitude_splitter_transient.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_transient.jsfx</source>
<source file="lewloiwc_frequency_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter.jsfx</source>
<source file="lewloiwc_frequency_splitter_band_and_notch(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_band_and_notch(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_butterworth(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_butterworth(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_comb_and_phaser.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_comb_and_phaser.jsfx</source>
<source file="lewloiwc_frequency_splitter_linkwitz-riley(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_linkwitz-riley(minimum_phase).jsfx</source>
<source file="lewloiwc_inflator_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_inflator_splitter.jsfx</source>
<source file="lewloiwc_sinc_frequency_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3768ce7349644d4c3c4647ebd1bd1d13046c2071/lewloiwc's%20Splitter%20Suite/lewloiwc_sinc_frequency_splitter.jsfx</source>
</version>
<version name="1.0.1" author="lewloiwc" time="2023-11-28T10:04:05Z">
<changelog><![CDATA[Hotfix - transient splitter
Added rpl file for container preset]]></changelog>
<source file="Splitter_Dependencies/more_graphics.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/Splitter_Dependencies/more_graphics.jsfx-inc</source>
<source file="Splitter_Dependencies/more_math_functions.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/Splitter_Dependencies/more_math_functions.jsfx-inc</source>
<source file="Splitter Template.RPL">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/Splitter%20Template.RPL</source>
<source file="lewloiwc_amplitude_splitter_envelope_follower.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_envelope_follower.jsfx</source>
<source file="lewloiwc_amplitude_splitter_gate.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_gate.jsfx</source>
<source file="lewloiwc_amplitude_splitter_transient.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_transient.jsfx</source>
<source file="lewloiwc_frequency_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter.jsfx</source>
<source file="lewloiwc_frequency_splitter_band_and_notch(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_band_and_notch(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_butterworth(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_butterworth(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_comb_and_phaser.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_comb_and_phaser.jsfx</source>
<source file="lewloiwc_frequency_splitter_linkwitz-riley(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_linkwitz-riley(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_sinc.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_sinc.jsfx</source>
<source file="lewloiwc_inflator_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c9a2fd5d6ae08e094dad80d5e311963b7b2f931b/lewloiwc's%20Splitter%20Suite/lewloiwc_inflator_splitter.jsfx</source>
</version>
<version name="1.0.2" author="lewloiwc" time="2023-11-28T10:36:44Z">
<changelog><![CDATA[Fixed a minor naming issue]]></changelog>
<source file="Splitter_Dependencies/more_graphics.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/Splitter_Dependencies/more_graphics.jsfx-inc</source>
<source file="Splitter_Dependencies/more_math_functions.jsfx-inc">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/Splitter_Dependencies/more_math_functions.jsfx-inc</source>
<source file="Splitter Template.RPL">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/Splitter%20Template.RPL</source>
<source file="lewloiwc_amplitude_splitter_envelope_follower.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_envelope_follower.jsfx</source>
<source file="lewloiwc_amplitude_splitter_gate.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_gate.jsfx</source>
<source file="lewloiwc_amplitude_splitter_transient.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_amplitude_splitter_transient.jsfx</source>
<source file="lewloiwc_frequency_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter.jsfx</source>
<source file="lewloiwc_frequency_splitter_band_and_notch(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_band_and_notch(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_butterworth(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_butterworth(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_comb_and_phaser.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_comb_and_phaser.jsfx</source>
<source file="lewloiwc_frequency_splitter_linkwitz-riley(minimum_phase).jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_linkwitz-riley(minimum_phase).jsfx</source>
<source file="lewloiwc_frequency_splitter_sinc.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_frequency_splitter_sinc.jsfx</source>
<source file="lewloiwc_inflator_splitter.jsfx">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/9021252e790debd90135dd02ba670724c1264ce7/lewloiwc's%20Splitter%20Suite/lewloiwc_inflator_splitter.jsfx</source>
</version>
</reapack>
</category>
<category name="Modulation">
<reapack name="Suzuki_Set last touched track or take FX (inside Container) parameter as a lead parameter for parameter link.lua" type="script" desc="Set last touched track or take FX (inside Container) parameter as a lead parameter for parameter link">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.06+ API, run link action after this script\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-24T11:41:34Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/e96035ac7869a7f3754db30d149dd05f025076ac/Modulation/Suzuki_Set%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter%20as%20a%20lead%20parameter%20for%20parameter%20link.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle enable disable audio control signal for last touched track or take FX (inside Container) parameter.lua" type="script" desc="Toggle enable/disable audio control signal for last touched track or take FX (inside Container) parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.0+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-24T11:59:01Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c2ec5e58bf5e8f63b23a6386bed9d217343f06d9/Modulation/Suzuki_Toggle%20enable%20disable%20audio%20control%20signal%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-03T10:54:47Z">
<changelog><![CDATA[Fixed a mistake I don't know why I did]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8568ed033473e8340e83818f33c3c5421b6d7913/Modulation/Suzuki_Toggle%20enable%20disable%20audio%20control%20signal%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle enable disable LFO for last touched track or take FX (inside Container) parameter.lua" type="script" desc="Toggle enable/disable LFO for last touched track or take FX (inside Container) parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.0+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-24T11:57:28Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/a827b9c8d3ce223198efdbcccdbaf23d8e2da543/Modulation/Suzuki_Toggle%20enable%20disable%20LFO%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-03T10:54:47Z">
<changelog><![CDATA[Fixed a mistake I don't know why I did]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8568ed033473e8340e83818f33c3c5421b6d7913/Modulation/Suzuki_Toggle%20enable%20disable%20LFO%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle link last touched track or take FX (inside Container) parameter as a follower to the lead parameter.lua" type="script" desc="Toggle link last touched track or take FX (inside Container) parameter as a follower to the lead parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.06+ API, run set action before using this\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-24T11:41:34Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/e96035ac7869a7f3754db30d149dd05f025076ac/Modulation/Suzuki_Toggle%20link%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter%20as%20a%20follower%20to%20the%20lead%20parameter.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle set midi CC link (119) for last touched track or take FX (inside Container) parameter.lua" type="script" desc="Toggle set midi CC link (119) for last touched track or take FX (inside Container) parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.0+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2024-04-21T19:35:24Z">
<changelog><![CDATA[Init]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3e8e76ce4a8f9e9926195bda3083f1d8ed437fe9/Modulation/Suzuki_Toggle%20set%20midi%20CC%20link%20(119)%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2024-04-21T20:14:17Z">
<changelog><![CDATA[Added an option value to change bus and channel]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/75e1873e7b44e732ec029aec838e09e4c5cdb74a/Modulation/Suzuki_Toggle%20set%20midi%20CC%20link%20(119)%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle set midi CC link (31_63) for last touched track or take FX (inside Container) parameter.lua" type="script" desc="Toggle set midi CC link (31/63) for last touched track or take FX (inside Container) parameter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.0+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2024-04-21T19:35:24Z">
<changelog><![CDATA[Init]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/3e8e76ce4a8f9e9926195bda3083f1d8ed437fe9/Modulation/Suzuki_Toggle%20set%20midi%20CC%20link%20(31_63)%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
<version name="1.1" author="Suzuki" time="2024-04-21T20:14:17Z">
<changelog><![CDATA[Added an option value to change bus and channel]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/75e1873e7b44e732ec029aec838e09e4c5cdb74a/Modulation/Suzuki_Toggle%20set%20midi%20CC%20link%20(31_63)%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter.lua</source>
</version>
</reapack>
<reapack name="Suzuki_Toggle set midi CC link for last touched track or take FX (inside Container) parameter (user input).lua" type="script" desc="Toggle set midi CC link for last touched track or take FX (inside Container) parameter (user input)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Using v7.0+ API\par}
}
]]></description>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-24T12:00:16Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/c91b44efdc568a35d489c2977f39e39936880ea7/Modulation/Suzuki_Toggle%20set%20midi%20CC%20link%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter%20(user%20input).lua</source>
</version>
<version name="1.1" author="Suzuki" time="2023-12-03T10:54:47Z">
<changelog><![CDATA[Fixed a mistake I don't know why I did]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8568ed033473e8340e83818f33c3c5421b6d7913/Modulation/Suzuki_Toggle%20set%20midi%20CC%20link%20for%20last%20touched%20track%20or%20take%20FX%20(inside%20Container)%20parameter%20(user%20input).lua</source>
</version>
</reapack>
</category>
<category name="ReaDrum Machine">
<reapack name="Suzuki_ReaDrum_Machine_Instruments_Rack.lua" type="script" desc="Suzuki ReaDrum Machine">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 ReaDrum Machine\par}
{\pard \ql \f0 \sa180 \li0 \fi0 ReaDrum Machine is a script which loads samples and FX from browser/arrange into subcontainers inside a container named ReaDrum Machine.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Prerequisites\par}
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER v7.06+, ReaImGui v0.9.3.1, S&M extension, js extension, tilr's SK filter, lewloiwc's Sound Design Suite and Sexan's FX Browser. Scan for new plugins to make sure RDM utility JSFX shows up in the native FX browser.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 CAUTIONS\par}
{\pard \ql \f0 \sa180 \li0 \fi0 ReaDrum Machine utilizes a parallel FX feature in REAPER. If you use the script as it is, there's no problem, but if you want to place the audio (like VSTi or audio file in arrange) before RDM for some reason, beware of the volume because it adds up by design. Use dry/wet knob in each container or shift+drag each pad to adjust each container's volume.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Usage\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 FX Browser\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Right click - Open FX Browser You can drag/drop FX from the browser to the pad. Rescan FX list if you want to reflect your latest plugins.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ctrl + double click - Select all pads in the page\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Shift + double click - Select all pads in the script\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 Settings\par}
{\pard \ql \f0 \sa180 \li0 \fi0 "Apply pitch as a RS5k parameter" option is to apply pitch in the Media Explorer/Arrange as a RS5k parameter. If it's unticked, the script renders samples to reflect the pitch. The default is on.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 Pad\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Click - Open/close each pad's floating window\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Alt + click - Remove pad\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ctrl + click - Select pad\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Right click - Open RS5k UI\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ctrl + right click - Open menu\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Left drag - Move/swap pads\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ctrl + left drag - Copy pad/copy pad fx\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Shift + left drag - Turn up/down volume of each pad\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ctrl + V - Paste samples from clipboard\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 Menu\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Set choke group - Sending notes in the same channel (group) mutes the note. Obey note-offs needs to be on for it to work.\par}
}
]]></description>
<link rel="website">https://forum.cockos.com/showthread.php?t=284566</link>
</metadata>
<version name="1.0" author="Suzuki" time="2023-11-03T15:59:51Z">
<changelog><![CDATA[Initial Release]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8c0d0bffedce123621111aee9997e0f0599a8667/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/8c0d0bffedce123621111aee9997e0f0599a8667/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.1a" author="Suzuki" time="2023-11-03T19:53:05Z">
<changelog><![CDATA[Fixed a pad number
Removed track templates from fx browser]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/70485d8463c61cb830b750cac5cf26d09f2d20ab/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/70485d8463c61cb830b750cac5cf26d09f2d20ab/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.2" author="Suzuki" time="2023-11-05T10:28:49Z">
<changelog><![CDATA[Fixed crash when no track is selected
Disabled mousewheel]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/d58fce4b2819d97a5da7007911217576a72d95b2/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/d58fce4b2819d97a5da7007911217576a72d95b2/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.3" author="Suzuki" time="2023-11-05T18:10:06Z">
<changelog><![CDATA[Fixed naming issue]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/002c3459b4fb6648a47725de518968971c2d4667/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/002c3459b4fb6648a47725de518968971c2d4667/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.4" author="Suzuki" time="2023-11-06T10:42:33Z">
<changelog><![CDATA[Fixed a vertical menu button offset when window is docked]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/afc744130cda24fd989877aeac0aab454eb6e36f/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/afc744130cda24fd989877aeac0aab454eb6e36f/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.5" author="Suzuki" time="2023-11-06T18:25:12Z">
<changelog><![CDATA[Hotfix:Load RS5k with user-defined preset and handle loading samples when user-defined preset is set]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/d2cbc026236f5df07d058e55467a1a916af50199/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/d2cbc026236f5df07d058e55467a1a916af50199/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.6" author="Suzuki" time="2023-11-06T22:39:13Z">
<changelog><![CDATA[Fixed naming issue introduced in v1.0.3]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/09daac1fd3ff196db248755fbdc3879bd44fad34/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/09daac1fd3ff196db248755fbdc3879bd44fad34/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.7" author="Suzuki" time="2023-11-07T18:01:23Z">
<changelog><![CDATA[Fixed updating pads depending on the track selected]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/68ad73be581e6414b724de44d932d3c2aa7b39e3/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/68ad73be581e6414b724de44d932d3c2aa7b39e3/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.8" author="Suzuki" time="2023-11-10T23:51:10Z">
<changelog><![CDATA[Added a menu to explode pads to tracks]]></changelog>
<source main="main">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/61030d2aac84ccd9e25c14940c1fc5060ba4d9ae/ReaDrum%20Machine/Suzuki_ReaDrum_Machine_Instruments_Rack.lua</source>
<source file="Fonts/Icons.ttf">https://github.com/Suzuki-Re/Suzuki-Scripts/raw/61030d2aac84ccd9e25c14940c1fc5060ba4d9ae/ReaDrum%20Machine/Fonts/Icons.ttf</source>
</version>
<version name="1.0.9" author="Suzuki" time="2023-11-11T16:25:02Z">