-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.xml
2027 lines (2004 loc) · 262 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" commit="8379da177843b130bcd828cb9a0bb87ce8a508e0" name="Tilr">
<category name="Delay">
<reapack name="qdelay.jsfx" type="effect" desc="QDelay">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 QuickDualDelay with a nicer interface\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/qdelay2.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay.jsfx</source>
<source file="qdelay2/qd2.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay2/qd2.delay.jsfx-inc</source>
<source file="qdelay2/qd2.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay2/qd2.rbj_filter.jsfx-inc</source>
<source file="qdelay2/qd2.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay2/qd2.saike_pitchlib.jsfx-inc</source>
<source file="qdelay2/qd2.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay2/qd2.gfxlib.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-06T01:24:46Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/deb1317351df5a8ad98fdb6dbd001ff9d09e1e9f/Delay/qdelay.jsfx</source>
<source file="qdelay2/qd2.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/deb1317351df5a8ad98fdb6dbd001ff9d09e1e9f/Delay/qdelay2/qd2.delay.jsfx-inc</source>
<source file="qdelay2/qd2.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/deb1317351df5a8ad98fdb6dbd001ff9d09e1e9f/Delay/qdelay2/qd2.rbj_filter.jsfx-inc</source>
<source file="qdelay2/qd2.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/deb1317351df5a8ad98fdb6dbd001ff9d09e1e9f/Delay/qdelay2/qd2.saike_pitchlib.jsfx-inc</source>
<source file="qdelay2/qd2.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/deb1317351df5a8ad98fdb6dbd001ff9d09e1e9f/Delay/qdelay2/qd2.gfxlib.jsfx-inc</source>
</version>
<version name="1.0.2" author="tilr" time="2024-01-06T13:58:21Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9f965d532fb1b55711f98f211fa2a65ed49eea7a/Delay/qdelay.jsfx</source>
<source file="qdelay2/qd2.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9f965d532fb1b55711f98f211fa2a65ed49eea7a/Delay/qdelay2/qd2.delay.jsfx-inc</source>
<source file="qdelay2/qd2.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9f965d532fb1b55711f98f211fa2a65ed49eea7a/Delay/qdelay2/qd2.rbj_filter.jsfx-inc</source>
<source file="qdelay2/qd2.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9f965d532fb1b55711f98f211fa2a65ed49eea7a/Delay/qdelay2/qd2.saike_pitchlib.jsfx-inc</source>
<source file="qdelay2/qd2.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9f965d532fb1b55711f98f211fa2a65ed49eea7a/Delay/qdelay2/qd2.gfxlib.jsfx-inc</source>
</version>
<version name="1.0.3" author="tilr" time="2024-01-06T14:45:22Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/a877f72c75c549f7a8620d7a7c24fc02b3e6833c/Delay/qdelay.jsfx</source>
<source file="qdelay2/qd2.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a877f72c75c549f7a8620d7a7c24fc02b3e6833c/Delay/qdelay2/qd2.delay.jsfx-inc</source>
<source file="qdelay2/qd2.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a877f72c75c549f7a8620d7a7c24fc02b3e6833c/Delay/qdelay2/qd2.rbj_filter.jsfx-inc</source>
<source file="qdelay2/qd2.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a877f72c75c549f7a8620d7a7c24fc02b3e6833c/Delay/qdelay2/qd2.saike_pitchlib.jsfx-inc</source>
<source file="qdelay2/qd2.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a877f72c75c549f7a8620d7a7c24fc02b3e6833c/Delay/qdelay2/qd2.gfxlib.jsfx-inc</source>
</version>
<version name="1.0.4" author="tilr" time="2024-01-07T13:52:29Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/c5695e50487896f235dc57834da0295a6dcdb200/Delay/qdelay.jsfx</source>
<source file="qdelay2/qd2.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c5695e50487896f235dc57834da0295a6dcdb200/Delay/qdelay2/qd2.delay.jsfx-inc</source>
<source file="qdelay2/qd2.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c5695e50487896f235dc57834da0295a6dcdb200/Delay/qdelay2/qd2.rbj_filter.jsfx-inc</source>
<source file="qdelay2/qd2.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c5695e50487896f235dc57834da0295a6dcdb200/Delay/qdelay2/qd2.saike_pitchlib.jsfx-inc</source>
<source file="qdelay2/qd2.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c5695e50487896f235dc57834da0295a6dcdb200/Delay/qdelay2/qd2.gfxlib.jsfx-inc</source>
</version>
</reapack>
<reapack name="QuickDelay.jsfx" type="effect" desc="QuickDelay">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 QuickDelay\par}
{\pard \ql \f0 \sa180 \li0 \fi0 A simple delay with ping-pong mode, tempo sync, feedback filters and pitch shift.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel3 \b \fs24 Features\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Dual or single delay modes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Normal and ping-pong modes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ping-pong stereo width control\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tempo sync\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Low pass and high pass feedback filters with Q controls\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Feedback pitch shift\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Delay modulation\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/qdelay.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/QuickDelay.jsfx</source>
<source file="qdelay/qd.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay/qd.delay.jsfx-inc</source>
<source file="qdelay/qd.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay/qd.rbj_filter.jsfx-inc</source>
<source file="qdelay/qd.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qdelay/qd.saike_pitchlib.jsfx-inc</source>
</version>
</reapack>
<reapack name="QuickDualDelay.jsfx" type="effect" desc="QuickDualDelay">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 QuickDualDelay\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Dual delay with independent or linked times, ping-pong mode, tempo sync, feedback filters and pitch shift.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel3 \b \fs24 Features\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Dual delay with independent or sync time and feedback\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Normal and ping-pong modes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Ping-pong stereo width control\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tempo sync\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Low pass and high pass feedback filters with Q controls\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Feedback pitch shift\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Delay modulation\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/qddelay.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/QuickDualDelay.jsfx</source>
<source file="qddelay/qdd.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qddelay/qdd.delay.jsfx-inc</source>
<source file="qddelay/qdd.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qddelay/qdd.rbj_filter.jsfx-inc</source>
<source file="qddelay/qdd.saike_pitchlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Delay/qddelay/qdd.saike_pitchlib.jsfx-inc</source>
</version>
</reapack>
</category>
<category name="Distortion">
<reapack name="quickdist.jsfx" type="effect" desc="QuickDist">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 QuickDist\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Waveshaper distortion with 12 modes\par}
}
]]></description>
</metadata>
<version name="1.0" author="tilr" time="2024-01-15T19:29:35Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/89366a4c6f6ffd788d2cb1020467c4c6319b9be6/Distortion/quickdist.jsfx</source>
<source file="qdist/qdist.squashman_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/89366a4c6f6ffd788d2cb1020467c4c6319b9be6/Distortion/qdist/qdist.squashman_upsamplers.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-16T13:17:46Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Distortion/quickdist.jsfx</source>
<source file="qdist/qdist.squashman_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Distortion/qdist/qdist.squashman_upsamplers.jsfx-inc</source>
</version>
</reapack>
</category>
<category name="Filter">
<reapack name="QuickFilter.jsfx" type="effect" desc="QuickFilter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 QuickFilter\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Simple filter with 9 modes and smooth interpolation.\par}
}
]]></description>
</metadata>
<version name="1.0" author="tilr" time="2024-01-06T15:53:39Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Filter/QuickFilter.jsfx</source>
<source file="qfilter/qf.svf_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Filter/qfilter/qf.svf_filter.jsfx-inc</source>
</version>
</reapack>
<reapack name="skfilter.jsfx" type="effect" desc="SKFilter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 SKFilter\par}
{\pard \ql \f0 \sa180 \li0 \fi0 SKFilter (or Saikes filters) is a set of unique filters extracted from {\field{\*\fldinst{HYPERLINK "https://github.com/JoepVanlier/JSFX/tree/master/Yutani"}}{\fldrslt{\ul
Yutani Bass
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel3 \b \fs24 Features\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 29 filter types\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Non-linear analog modelled filters\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Filter drive\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Filter modes and morphing\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Oversampling up to 8x\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="tilr" time="2024-01-06T15:53:39Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Filter/skfilter.jsfx</source>
<source file="skfilter/skf.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Filter/skfilter/skf.Saike_Yutani_Filters.jsfx-inc</source>
<source file="skfilter/skf.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Filter/skfilter/skf.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="skfilter/skf.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Filter/skfilter/skf.Saike_Yutani_upsamplers.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-09T12:50:49Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/c8857be6761ebd3cc3a551672543b8c329016dbe/Filter/skfilter.jsfx</source>
<source file="skfilter/skf.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c8857be6761ebd3cc3a551672543b8c329016dbe/Filter/skfilter/skf.Saike_Yutani_Filters.jsfx-inc</source>
<source file="skfilter/skf.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c8857be6761ebd3cc3a551672543b8c329016dbe/Filter/skfilter/skf.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="skfilter/skf.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/c8857be6761ebd3cc3a551672543b8c329016dbe/Filter/skfilter/skf.Saike_Yutani_upsamplers.jsfx-inc</source>
</version>
</reapack>
</category>
<category name="MIDI">
<reapack name="MIDI Keyvel Filter.jsfx" type="effect" desc="MIDI Keyvel Filter">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Key and velocity midi filter\par}
}
]]></description>
</metadata>
<version name="1.1" author="tilr" time="2024-01-05T23:53:31Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/0318daacf747847e952d7d7bfab01ff9d1b84570/MIDI/MIDI%20Keyvel%20Filter.jsfx</source>
</version>
</reapack>
<reapack name="Notes to 12 channel.jsfx" type="effect" desc="Notes to 12 channel">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Splits incomming midi notes into 12 channels C -> Chn1, C# -> Chn2 and so on\par}
}
]]></description>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:31Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/0318daacf747847e952d7d7bfab01ff9d1b84570/MIDI/Notes%20to%2012%20channel.jsfx</source>
</version>
</reapack>
<reapack name="Notes to CC.jsfx" type="effect" desc="Notes to CC">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Sends CC events on midi notes, note pitch is mapped to CC value, useful for keytrack modulation.\par}
}
]]></description>
</metadata>
<version name="1.1.1" author="tilr" time="2024-02-17T11:12:54Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/336455e0dc55025008ef03dfe2dda236aaa5976f/MIDI/Notes%20to%20CC.jsfx</source>
</version>
</reapack>
<reapack name="Vel to CC.jsfx" type="effect" desc="Vel to CC">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Maps midi notes velocity to CC automation\par}
}
]]></description>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:31Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/0318daacf747847e952d7d7bfab01ff9d1b84570/MIDI/Vel%20to%20CC.jsfx</source>
</version>
<version name="1.0.1" author="tilr" time="2024-06-03T11:16:47Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/f6349d4995aea03c8a1a459f4a4296087b2eb0c2/MIDI/Vel%20to%20CC.jsfx</source>
</version>
<version name="1.0.2" author="tilr" time="2024-06-03T11:20:51Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/1e7777e2421f4757135724dfee8f87a1d8ade1b1/MIDI/Vel%20to%20CC.jsfx</source>
</version>
</reapack>
</category>
<category name="Modulation">
<reapack name="adsr1.jsfx" type="effect" desc="ADSR-1">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 ADSR-1\par}
{\pard \ql \f0 \sa180 \li0 \fi0 ADSR-1 is an ADSR envelope generator with:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Multi-segments / control points per stage\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Sustain looping\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Output smooth\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/adsr1.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-07T19:04:40Z">
<changelog><![CDATA[Remove slider automate]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.0" author="tilr" time="2024-01-09T17:28:21Z">
<changelog><![CDATA[Remove slider automate]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.1" author="tilr" time="2024-01-09T21:38:32Z">
<changelog><![CDATA[Remove slider automate]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/e6a97fec149f46b2fbe0bb285b95340c3b61a873/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/e6a97fec149f46b2fbe0bb285b95340c3b61a873/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/e6a97fec149f46b2fbe0bb285b95340c3b61a873/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/e6a97fec149f46b2fbe0bb285b95340c3b61a873/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.2" author="tilr" time="2024-01-09T21:53:10Z">
<changelog><![CDATA[Remove slider automate]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/1a59d15a2569ec696c7c6750fe05e12977e0e117/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/1a59d15a2569ec696c7c6750fe05e12977e0e117/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/1a59d15a2569ec696c7c6750fe05e12977e0e117/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/1a59d15a2569ec696c7c6750fe05e12977e0e117/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.2.0" author="tilr" time="2024-01-09T23:15:59Z">
<changelog><![CDATA[Remove slider automate]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/7b5417f6793aa7add3eaefd5b17b0bc8e02e44e7/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7b5417f6793aa7add3eaefd5b17b0bc8e02e44e7/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7b5417f6793aa7add3eaefd5b17b0bc8e02e44e7/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7b5417f6793aa7add3eaefd5b17b0bc8e02e44e7/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.2.1" author="tilr" time="2024-01-28T13:01:43Z">
<changelog><![CDATA[Snap toggle when pressing control]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
<version name="1.3.0" author="tilr" time="2024-11-20T17:41:04Z">
<changelog><![CDATA[Fix multiple notes triggering
Add midi offset support]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/3d3b0ce5e6f4c204dfde694c83bdbe230a1948af/Modulation/adsr1.jsfx</source>
<source file="adsr1/adsr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3d3b0ce5e6f4c204dfde694c83bdbe230a1948af/Modulation/adsr1/adsr.array.jsfx-inc</source>
<source file="adsr1/adsr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3d3b0ce5e6f4c204dfde694c83bdbe230a1948af/Modulation/adsr1/adsr.curvelib.jsfx-inc</source>
<source file="adsr1/adsr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3d3b0ce5e6f4c204dfde694c83bdbe230a1948af/Modulation/adsr1/adsr.mouselib.jsfx-inc</source>
</version>
</reapack>
<reapack name="distr.jsfx" type="effect" desc="DIST-R">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 DIST-R\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Multi-segment envelope for waveshaper distortion\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 12 distortion modes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Multi-segment envelope editor\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 12 midi triggable envelope patterns\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Envelope smoothing\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Paint modes and point modes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pre and post waveform display\sa180\par}
}
]]></description>
</metadata>
<version name="1.0.1" author="tilr" time="2024-01-16T16:52:04Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/5edcc0e0edbe843234d660a5e3e008ce19d4b2f5/Modulation/distr.jsfx</source>
<source file="distr/distr.squashman_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/5edcc0e0edbe843234d660a5e3e008ce19d4b2f5/Modulation/distr/distr.squashman_upsamplers.jsfx-inc</source>
<source file="distr/distr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/5edcc0e0edbe843234d660a5e3e008ce19d4b2f5/Modulation/distr/distr.curvelib.jsfx-inc</source>
<source file="distr/distr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/5edcc0e0edbe843234d660a5e3e008ce19d4b2f5/Modulation/distr/distr.mouselib.jsfx-inc</source>
<source file="distr/distr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/5edcc0e0edbe843234d660a5e3e008ce19d4b2f5/Modulation/distr/distr.array.jsfx-inc</source>
<source file="distr/distr.distortions.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/5edcc0e0edbe843234d660a5e3e008ce19d4b2f5/Modulation/distr/distr.distortions.jsfx-inc</source>
</version>
<version name="1.0.0" author="tilr" time="2024-01-16T18:00:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/de59522dd6bcf6942f34ac9b1d67010277f790e9/Modulation/distr.jsfx</source>
<source file="distr/distr.squashman_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/de59522dd6bcf6942f34ac9b1d67010277f790e9/Modulation/distr/distr.squashman_upsamplers.jsfx-inc</source>
<source file="distr/distr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/de59522dd6bcf6942f34ac9b1d67010277f790e9/Modulation/distr/distr.curvelib.jsfx-inc</source>
<source file="distr/distr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/de59522dd6bcf6942f34ac9b1d67010277f790e9/Modulation/distr/distr.mouselib.jsfx-inc</source>
<source file="distr/distr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/de59522dd6bcf6942f34ac9b1d67010277f790e9/Modulation/distr/distr.array.jsfx-inc</source>
<source file="distr/distr.distortions.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/de59522dd6bcf6942f34ac9b1d67010277f790e9/Modulation/distr/distr.distortions.jsfx-inc</source>
</version>
<version name="1.0.2" author="tilr" time="2024-02-06T11:32:49Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/353702e3c540086836d671b356774faf20cec506/Modulation/distr.jsfx</source>
<source file="distr/distr.squashman_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/353702e3c540086836d671b356774faf20cec506/Modulation/distr/distr.squashman_upsamplers.jsfx-inc</source>
<source file="distr/distr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/353702e3c540086836d671b356774faf20cec506/Modulation/distr/distr.curvelib.jsfx-inc</source>
<source file="distr/distr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/353702e3c540086836d671b356774faf20cec506/Modulation/distr/distr.mouselib.jsfx-inc</source>
<source file="distr/distr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/353702e3c540086836d671b356774faf20cec506/Modulation/distr/distr.array.jsfx-inc</source>
<source file="distr/distr.distortions.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/353702e3c540086836d671b356774faf20cec506/Modulation/distr/distr.distortions.jsfx-inc</source>
</version>
<version name="1.0.3" author="tilr" time="2024-11-27T14:00:11Z">
<changelog><![CDATA[Fix slider range]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/distr.jsfx</source>
<source file="distr/distr.squashman_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/distr/distr.squashman_upsamplers.jsfx-inc</source>
<source file="distr/distr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/distr/distr.curvelib.jsfx-inc</source>
<source file="distr/distr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/distr/distr.mouselib.jsfx-inc</source>
<source file="distr/distr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/distr/distr.array.jsfx-inc</source>
<source file="distr/distr.distortions.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/distr/distr.distortions.jsfx-inc</source>
</version>
</reapack>
<reapack name="fltr1.jsfx" type="effect" desc="FLTR-1">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 FLTR-1\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Envelope based filter modulator.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 28 filter types\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Filter drive\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab MSEGs for cutoff and resonance\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 12 patterns triggered by midi notes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Paint mode - erase, line, saw up, saw down ..\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Point type - hold, curve, s-curve, stairs ..\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tempo sync or lfo rate (Hz)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Envelope smoothing\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pre and post waveform display\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="tilr" time="2024-01-09T17:28:21Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1" author="tilr" time="2024-01-11T14:13:44Z">
<changelog><![CDATA[Filter drive hidden by default
Add MIDI trigger mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d4b72a5534c0d6cc4e0be46b1cfd70eb1e9edb91/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.1" author="tilr" time="2024-01-11T14:19:26Z">
<changelog><![CDATA[Filter drive hidden by default
Add MIDI trigger mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/3eb6dfba4856f2372a598affb4832b1ccf75d57f/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.2" author="tilr" time="2024-01-11T15:10:23Z">
<changelog><![CDATA[Filter drive hidden by default
Add MIDI trigger mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.3" author="tilr" time="2024-01-16T13:17:46Z">
<changelog><![CDATA[Filter drive hidden by default
Add MIDI trigger mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.4" author="tilr" time="2024-01-20T11:38:43Z">
<changelog><![CDATA[Filter drive hidden by default
Add MIDI trigger mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ac23e4ad183b77e058a9a11a741a7acc3c383d63/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.5" author="tilr" time="2024-01-28T13:01:43Z">
<changelog><![CDATA[Snap toggle when pressing control]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
<version name="1.1.6" author="tilr" time="2024-11-27T14:00:11Z">
<changelog><![CDATA[Fix slider range]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1.jsfx</source>
<source file="fltr1/fltr.Saike_Yutani_Filters.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1/fltr.Saike_Yutani_Filters.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1/fltr.Saike_Yutani_oversampling.jsfx-inc</source>
<source file="fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1/fltr.Saike_Yutani_upsamplers.jsfx-inc</source>
<source file="fltr1/fltr.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1/fltr.array.jsfx-inc</source>
<source file="fltr1/fltr.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1/fltr.curvelib.jsfx-inc</source>
<source file="fltr1/fltr.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/fltr1/fltr.mouselib.jsfx-inc</source>
</version>
</reapack>
<reapack name="gate1.jsfx" type="effect" desc="GATE-1">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 GATE-1\par}
{\pard \ql \f0 \sa180 \li0 \fi0 GATE-1 is an envelope generator for gate/volume control\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Multi-segment editor\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 12 patterns triggered by midi notes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Paint mode - erase, line, saw up, saw down ..\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Point type - hold, curve, s-curve, stairs ..\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tempo sync or lfo rate (Hz)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Attack and release smooth\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pre and post waveform display\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Global tension control\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/gate1.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-07T19:04:40Z">
<changelog><![CDATA[Remove slider automate
Add retrigger slider
Add link edge points option]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.0.2" author="tilr" time="2024-01-09T11:17:37Z">
<changelog><![CDATA[Remove slider automate
Add retrigger slider
Add link edge points option]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.1.0" author="tilr" time="2024-01-11T15:10:23Z">
<changelog><![CDATA[Add midi mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/41a04406b683c2229add9156a4b3809c5e0f8aa0/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.1.1" author="tilr" time="2024-01-11T15:39:31Z">
<changelog><![CDATA[Add midi mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/a154c29d13f106dc71ff9612f006f33e6a199d83/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a154c29d13f106dc71ff9612f006f33e6a199d83/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a154c29d13f106dc71ff9612f006f33e6a199d83/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/a154c29d13f106dc71ff9612f006f33e6a199d83/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.1.2" author="tilr" time="2024-01-16T13:17:46Z">
<changelog><![CDATA[Add midi mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.1.3" author="tilr" time="2024-01-28T13:01:43Z">
<changelog><![CDATA[Snap toggle when pressing control]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/gate1.jsfx</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.1.4" author="tilr" time="2024-11-17T14:32:43Z">
<changelog><![CDATA[Add presets from Scrumpy Jack]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/gate1.jsfx</source>
<source file="gate1.jsfx.RPL">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/gate1.jsfx.RPL</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
<version name="1.1.5" author="tilr" time="2024-11-27T14:00:11Z">
<changelog><![CDATA[Fix sliders range]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/gate1.jsfx</source>
<source file="gate1.jsfx.RPL">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/gate1.jsfx.RPL</source>
<source file="gate1/gate.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/gate1/gate.array.jsfx-inc</source>
<source file="gate1/gate.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/gate1/gate.curvelib.jsfx-inc</source>
<source file="gate1/gate.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/gate1/gate.mouselib.jsfx-inc</source>
</version>
</reapack>
<reapack name="mseg1.jsfx" type="effect" desc="MSEG-1">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 MSEG-1\par}
{\pard \ql \f0 \sa180 \li0 \fi0 MSEG-1 is a multi-segment LFO / Envelope generator\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tempo sync or Hz rate\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Sync, Free and MIDI trigger modes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Paint mode - erase, line, saw up, saw down\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Output smooth and attack-release smooth\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/mseg1.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-07T19:04:40Z">
<changelog><![CDATA[Improve retrigger conditions
Add retrigger slider
Add CC output
Link edge points option
Remove slider automate
Add patterns selector]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.0.2" author="tilr" time="2024-01-08T18:22:47Z">
<changelog><![CDATA[Improve retrigger conditions
Add retrigger slider
Add CC output
Link edge points option
Remove slider automate
Add patterns selector
Add output audio / CV]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/9b9e40642c7c94b76c83e74156ec20311bb05e7d/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9b9e40642c7c94b76c83e74156ec20311bb05e7d/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9b9e40642c7c94b76c83e74156ec20311bb05e7d/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9b9e40642c7c94b76c83e74156ec20311bb05e7d/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.0.3" author="tilr" time="2024-01-08T19:36:43Z">
<changelog><![CDATA[Add MIDI HR output
Add MIDI channel select
Add output audio / CV]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/84b010ff82ebdb85ed2d84fd8d067e96a518447d/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/84b010ff82ebdb85ed2d84fd8d067e96a518447d/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/84b010ff82ebdb85ed2d84fd8d067e96a518447d/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/84b010ff82ebdb85ed2d84fd8d067e96a518447d/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.0.4" author="tilr" time="2024-01-09T11:17:37Z">
<changelog><![CDATA[Add MIDI HR output
Add MIDI channel select
Add output audio / CV]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.1.0" author="tilr" time="2024-01-09T17:28:21Z">
<changelog><![CDATA[Add volume and panning modulation
Add MIDI HR output
Add MIDI channel select
Add output audio / CV]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/b6850b9f526fff6271994fd8b5ffd14b42fb8331/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.1.1" author="tilr" time="2024-01-09T22:26:01Z">
<changelog><![CDATA[Add volume and panning modulation
Add MIDI HR output
Add MIDI channel select
Add output audio / CV]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/d134ca5ed389a1d5fcbaa48a7dafdfdce47b23ac/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d134ca5ed389a1d5fcbaa48a7dafdfdce47b23ac/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d134ca5ed389a1d5fcbaa48a7dafdfdce47b23ac/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/d134ca5ed389a1d5fcbaa48a7dafdfdce47b23ac/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.1.2" author="tilr" time="2024-01-10T17:29:11Z">
<changelog><![CDATA[Modulate stereo
Fix midi mode modulation when not triggering]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/dae47479ac74de19823ae6720c625011f3a6df59/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/dae47479ac74de19823ae6720c625011f3a6df59/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/dae47479ac74de19823ae6720c625011f3a6df59/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/dae47479ac74de19823ae6720c625011f3a6df59/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.1.3" author="tilr" time="2024-01-16T13:17:46Z">
<changelog><![CDATA[Modulate stereo
Fix midi mode modulation when not triggering]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.1.4" author="tilr" time="2024-01-28T13:01:43Z">
<changelog><![CDATA[Snap toggle when pressing control]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.1.5" author="tilr" time="2024-03-25T17:43:30Z">
<changelog><![CDATA[Snap toggle when pressing control]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/7d0803600aeb49c97d2710160394b3141fc24efb/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d0803600aeb49c97d2710160394b3141fc24efb/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d0803600aeb49c97d2710160394b3141fc24efb/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d0803600aeb49c97d2710160394b3141fc24efb/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.2.0" author="tilr" time="2024-11-08T15:24:47Z">
<changelog><![CDATA[Add midi velocity modulation]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/149ffbe058c087afa28553fffb9399f1f08af543/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/149ffbe058c087afa28553fffb9399f1f08af543/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/149ffbe058c087afa28553fffb9399f1f08af543/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/149ffbe058c087afa28553fffb9399f1f08af543/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.2.1" author="tilr" time="2024-11-11T14:58:15Z">
<changelog><![CDATA[Add midi velocity modulation]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/473e2f5b52f6476f032111d9e58002c979f11236/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/473e2f5b52f6476f032111d9e58002c979f11236/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/473e2f5b52f6476f032111d9e58002c979f11236/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/473e2f5b52f6476f032111d9e58002c979f11236/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
<version name="1.2.2" author="tilr" time="2024-11-27T14:00:11Z">
<changelog><![CDATA[Fix sliders range]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/mseg1.jsfx</source>
<source file="mseg1/mseg.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/mseg1/mseg.array.jsfx-inc</source>
<source file="mseg1/mseg.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/mseg1/mseg.curvelib.jsfx-inc</source>
<source file="mseg1/mseg.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/mseg1/mseg.mouselib.jsfx-inc</source>
</version>
</reapack>
<reapack name="time1.jsfx" type="effect" desc="TIME-1">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 TIME-1\par}
{\pard \ql \f0 \sa180 \li0 \fi0 TIME-1 is a playback/time and pitch editor similar to plugins like GrossBeat and TimeShaper.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Time and pitch envelope editor\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 12 patterns triggered by midi notes\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Paint mode - erase, line\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Point type - hold, curve, s-curve, stairs ..\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Anti clicking with 3 modes (Off, Low, High)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pre and post waveform display\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/tilr_jsfx/master/doc/time1.png</link>
</metadata>
<version name="1.0" author="tilr" time="2024-01-05T23:53:15Z">
<source>https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/time1.jsfx</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/9ee52fd4bfd73f693acac2e35e30dd277fd88ea3/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.0.1" author="tilr" time="2024-01-07T19:04:40Z">
<changelog><![CDATA[Add retrigger
Add retrigger slider]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/time1.jsfx</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/0f54845e29f85d7e13c89867ba3b10410aed93fe/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.0.2" author="tilr" time="2024-01-09T11:17:37Z">
<changelog><![CDATA[Add retrigger
Add retrigger slider]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/time1.jsfx</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/f0b6c293393e6e8bac6c741f0495e9bbb0df28b6/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.1.0" author="tilr" time="2024-01-11T15:22:16Z">
<changelog><![CDATA[Add MIDI mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/6e188fc1258edf36cb2dd6bc681d23f7ebaf1d55/Modulation/time1.jsfx</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/6e188fc1258edf36cb2dd6bc681d23f7ebaf1d55/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/6e188fc1258edf36cb2dd6bc681d23f7ebaf1d55/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/6e188fc1258edf36cb2dd6bc681d23f7ebaf1d55/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/6e188fc1258edf36cb2dd6bc681d23f7ebaf1d55/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.1.1" author="tilr" time="2024-01-16T13:17:46Z">
<changelog><![CDATA[Add MIDI mode]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/time1.jsfx</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/7d4f4a68e4c9041414127b2c058e4e6229b9346a/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.1.2" author="tilr" time="2024-01-28T13:01:43Z">
<changelog><![CDATA[Snap toggle when pressing control]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/time1.jsfx</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/ae96311a256e4b08e2e638975157419ba84813c2/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.1.3" author="tilr" time="2024-11-17T14:32:43Z">
<changelog><![CDATA[Add presets from Scrumpy Jack]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/time1.jsfx</source>
<source file="time1.jsfx.RPL">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/time1.jsfx.RPL</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
<version name="1.1.4" author="tilr" time="2024-11-27T14:00:11Z">
<changelog><![CDATA[Fix sliders range]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/time1.jsfx</source>
<source file="time1.jsfx.RPL">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/time1.jsfx.RPL</source>
<source file="time1/time.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/time1/time.array.jsfx-inc</source>
<source file="time1/time.curvelib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/time1/time.curvelib.jsfx-inc</source>
<source file="time1/time.delay.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/time1/time.delay.jsfx-inc</source>
<source file="time1/time.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8379da177843b130bcd828cb9a0bb87ce8a508e0/Modulation/time1/time.mouselib.jsfx-inc</source>
</version>
</reapack>
</category>
<category name="Synth">
<reapack name="js3osc.jsfx" type="effect" desc="JS3Osc">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 JS3Osc\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Polyphonic synth based of IL 3xOsc.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Polyphonic voicing\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Filter, pitch and amplitude envelopes per voice\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Three oscillators with 6 wave types\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Oscillator phase stereo detuning and offset\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/js3osc/master/doc/ss.png</link>
</metadata>
<version name="1.1" author="tilr" time="2024-01-06T15:53:39Z">
<changelog><![CDATA[Normalize slider values
Remove clicking from vol and phase_offset knobs
Replace zdf with rbj filters]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/js3osc.jsfx</source>
<source file="js3osc/3o.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/js3osc/3o.adsr.jsfx-inc</source>
<source file="js3osc/3o.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/js3osc/3o.array.jsfx-inc</source>
<source file="js3osc/3o.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/js3osc/3o.gfxlib.jsfx-inc</source>
<source file="js3osc/3o.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/js3osc/3o.mouselib.jsfx-inc</source>
<source file="js3osc/3o.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/js3osc/3o.rbj_filter.jsfx-inc</source>
</version>
<version name="1.1.1" author="tilr" time="2024-06-29T11:55:07Z">
<changelog><![CDATA[Account for midi offset]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/90b69493918c1c8d58e2a36973a7daa73082108f/Synth/js3osc.jsfx</source>
<source file="js3osc/3o.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/90b69493918c1c8d58e2a36973a7daa73082108f/Synth/js3osc/3o.adsr.jsfx-inc</source>
<source file="js3osc/3o.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/90b69493918c1c8d58e2a36973a7daa73082108f/Synth/js3osc/3o.array.jsfx-inc</source>
<source file="js3osc/3o.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/90b69493918c1c8d58e2a36973a7daa73082108f/Synth/js3osc/3o.gfxlib.jsfx-inc</source>
<source file="js3osc/3o.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/90b69493918c1c8d58e2a36973a7daa73082108f/Synth/js3osc/3o.mouselib.jsfx-inc</source>
<source file="js3osc/3o.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/90b69493918c1c8d58e2a36973a7daa73082108f/Synth/js3osc/3o.rbj_filter.jsfx-inc</source>
</version>
<version name="1.1.2" author="tilr" time="2024-06-30T11:20:54Z">
<changelog><![CDATA[Revert midi offset]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/js3osc.jsfx</source>
<source file="js3osc/3o.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/js3osc/3o.adsr.jsfx-inc</source>
<source file="js3osc/3o.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/js3osc/3o.array.jsfx-inc</source>
<source file="js3osc/3o.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/js3osc/3o.gfxlib.jsfx-inc</source>
<source file="js3osc/3o.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/js3osc/3o.mouselib.jsfx-inc</source>
<source file="js3osc/3o.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/js3osc/3o.rbj_filter.jsfx-inc</source>
</version>
<version name="1.2.0" author="tilr" time="2024-11-16T20:16:44Z">
<changelog><![CDATA[Add MIDI offset support
Add Mono and glide
Add presets]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/8c03ade064e568571171555da567c8778331f317/Synth/js3osc.jsfx</source>
<source file="js3osc/3o.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8c03ade064e568571171555da567c8778331f317/Synth/js3osc/3o.adsr.jsfx-inc</source>
<source file="js3osc/3o.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8c03ade064e568571171555da567c8778331f317/Synth/js3osc/3o.array.jsfx-inc</source>
<source file="js3osc/3o.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8c03ade064e568571171555da567c8778331f317/Synth/js3osc/3o.gfxlib.jsfx-inc</source>
<source file="js3osc/3o.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8c03ade064e568571171555da567c8778331f317/Synth/js3osc/3o.mouselib.jsfx-inc</source>
<source file="js3osc/3o.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/8c03ade064e568571171555da567c8778331f317/Synth/js3osc/3o.rbj_filter.jsfx-inc</source>
</version>
<version name="1.2.1" author="tilr" time="2024-11-17T14:32:43Z">
<changelog><![CDATA[Fix mono toggling clear]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Synth/js3osc.jsfx</source>
<source file="js3osc/3o.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Synth/js3osc/3o.adsr.jsfx-inc</source>
<source file="js3osc/3o.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Synth/js3osc/3o.array.jsfx-inc</source>
<source file="js3osc/3o.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Synth/js3osc/3o.gfxlib.jsfx-inc</source>
<source file="js3osc/3o.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Synth/js3osc/3o.mouselib.jsfx-inc</source>
<source file="js3osc/3o.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/47e415610e1f2e3892f3684a9d71d480811488ff/Synth/js3osc/3o.rbj_filter.jsfx-inc</source>
</version>
<version name="1.2.2" author="tilr" time="2024-11-17T14:53:22Z">
<changelog><![CDATA[Add presets]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc.jsfx</source>
<source file="js3osc.jsfx.RPL">https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc.jsfx.RPL</source>
<source file="js3osc/3o.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc/3o.adsr.jsfx-inc</source>
<source file="js3osc/3o.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc/3o.array.jsfx-inc</source>
<source file="js3osc/3o.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc/3o.gfxlib.jsfx-inc</source>
<source file="js3osc/3o.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc/3o.mouselib.jsfx-inc</source>
<source file="js3osc/3o.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/20e585b72540128f11497e46a5948770818d38c7/Synth/js3osc/3o.rbj_filter.jsfx-inc</source>
</version>
</reapack>
<reapack name="jsadditiv.jsfx" type="effect" desc="JSAdditiv">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \outlinelevel0 \b \fs36 JSAdditiv\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Polyphonic additive synthesizer\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Features:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Wavetable oscillator that reads single cycle waveforms from disk\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Additive synthesis engine that allows to modify the wave\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Wave editors for harmonics amplitude and phase\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 8 voices unison engine\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pitch, amplitude and filter adsr\sa180\par}
}
]]></description>
<link rel="screenshot">https://raw.githubusercontent.com/tiagolr/JSAdditiv/master/doc/ss.png</link>
</metadata>
<version name="1.3" author="tilr" time="2024-01-06T15:53:39Z">
<changelog><![CDATA[replace zdf with rbj filters
fix note clicking
fix volume knob clicking]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv.jsfx</source>
<source file="jsadditiv/add.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.adsr.jsfx-inc</source>
<source file="jsadditiv/add.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.array.jsfx-inc</source>
<source file="jsadditiv/add.fft_real_synth.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.fft_real_synth.jsfx-inc</source>
<source file="jsadditiv/add.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.gfxlib.jsfx-inc</source>
<source file="jsadditiv/add.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.mouselib.jsfx-inc</source>
<source file="jsadditiv/add.wavetable.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.wavetable.jsfx-inc</source>
<source file="jsadditiv/add.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/jsadditiv/add.rbj_filter.jsfx-inc</source>
<source type="data" file="tilr_JSAdditiv/Complex 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Complex%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Complex%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Complex%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Complex%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Complex%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 6.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%206.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 7.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Organ%207.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Saw%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Saw%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Saw%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Sine%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Sine%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Sine%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Sine%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Sine%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Spectral.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Spectral.wav</source>
<source type="data" file="tilr_JSAdditiv/Square 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Square%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Square 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Square%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Stairs.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Stairs.wav</source>
<source type="data" file="tilr_JSAdditiv/Triangle.wav">https://github.com/tiagolr/tilr_jsfx/raw/46d993c8731b9d543c3867a848d9b128aead19f1/Synth/tilr_JSAdditiv/Triangle.wav</source>
</version>
<version name="1.3.1" author="tilr" time="2024-06-29T12:03:06Z">
<changelog><![CDATA[Account for midi offset]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv.jsfx</source>
<source file="jsadditiv/add.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.adsr.jsfx-inc</source>
<source file="jsadditiv/add.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.array.jsfx-inc</source>
<source file="jsadditiv/add.fft_real_synth.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.fft_real_synth.jsfx-inc</source>
<source file="jsadditiv/add.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.gfxlib.jsfx-inc</source>
<source file="jsadditiv/add.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.mouselib.jsfx-inc</source>
<source file="jsadditiv/add.wavetable.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.wavetable.jsfx-inc</source>
<source file="jsadditiv/add.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/jsadditiv/add.rbj_filter.jsfx-inc</source>
<source type="data" file="tilr_JSAdditiv/Complex 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Complex%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Complex%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Complex%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Complex%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Complex%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 6.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%206.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 7.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Organ%207.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Saw%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Saw%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Saw%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Sine%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Sine%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Sine%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Sine%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Sine%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Spectral.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Spectral.wav</source>
<source type="data" file="tilr_JSAdditiv/Square 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Square%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Square 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Square%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Stairs.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Stairs.wav</source>
<source type="data" file="tilr_JSAdditiv/Triangle.wav">https://github.com/tiagolr/tilr_jsfx/raw/fb076447090dbd53263387a518d4ee71e6705399/Synth/tilr_JSAdditiv/Triangle.wav</source>
</version>
<version name="1.3.2" author="tilr" time="2024-06-30T11:20:54Z">
<changelog><![CDATA[Revert midi offset]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv.jsfx</source>
<source file="jsadditiv/add.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.adsr.jsfx-inc</source>
<source file="jsadditiv/add.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.array.jsfx-inc</source>
<source file="jsadditiv/add.fft_real_synth.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.fft_real_synth.jsfx-inc</source>
<source file="jsadditiv/add.gfxlib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.gfxlib.jsfx-inc</source>
<source file="jsadditiv/add.mouselib.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.mouselib.jsfx-inc</source>
<source file="jsadditiv/add.wavetable.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.wavetable.jsfx-inc</source>
<source file="jsadditiv/add.rbj_filter.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/jsadditiv/add.rbj_filter.jsfx-inc</source>
<source type="data" file="tilr_JSAdditiv/Complex 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Complex%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Complex%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Complex%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Complex%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Complex 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Complex%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 6.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%206.wav</source>
<source type="data" file="tilr_JSAdditiv/Organ 7.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Organ%207.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Saw%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Saw%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Saw 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Saw%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Sine%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Sine%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 3.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Sine%203.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 4.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Sine%204.wav</source>
<source type="data" file="tilr_JSAdditiv/Sine 5.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Sine%205.wav</source>
<source type="data" file="tilr_JSAdditiv/Spectral.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Spectral.wav</source>
<source type="data" file="tilr_JSAdditiv/Square 1.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Square%201.wav</source>
<source type="data" file="tilr_JSAdditiv/Square 2.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Square%202.wav</source>
<source type="data" file="tilr_JSAdditiv/Stairs.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Stairs.wav</source>
<source type="data" file="tilr_JSAdditiv/Triangle.wav">https://github.com/tiagolr/tilr_jsfx/raw/818a86cde6609e515a9e294899e732c69edb03c2/Synth/tilr_JSAdditiv/Triangle.wav</source>
</version>
<version name="1.4.0" author="tilr" time="2024-10-07T14:44:01Z">
<changelog><![CDATA[Revert midi offset]]></changelog>
<source>https://github.com/tiagolr/tilr_jsfx/raw/e2a3e7010f75eb63cd9fe873eb63300f36333c66/Synth/jsadditiv.jsfx</source>
<source file="jsadditiv/add.adsr.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/e2a3e7010f75eb63cd9fe873eb63300f36333c66/Synth/jsadditiv/add.adsr.jsfx-inc</source>
<source file="jsadditiv/add.array.jsfx-inc">https://github.com/tiagolr/tilr_jsfx/raw/e2a3e7010f75eb63cd9fe873eb63300f36333c66/Synth/jsadditiv/add.array.jsfx-inc</source>