forked from MichaelPilyavskiy/ReaScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
5601 lines (5570 loc) · 580 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="5c4a8be080f6787d35c85fbd70ee1d40c390b7ea" name="MPL Scripts">
<category name="Automation Items">
<reapack name="mpl_Generate pooled automation items for selected envelope based on selected track peaks.lua" type="script" desc="Generate pooled automation items for selected envelope based on selected track peaks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Select envelope, selecte track, define time selection (contain media items on selected track), run script\par}
}
]]></description>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2018-09-20T21:35:00Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/e166a73e47f7adfa0a403e6569f8dc8a428d95d5/Automation%20Items/mpl_Generate%20pooled%20automation%20items%20for%20selected%20envelope%20based%20on%20selected%20track%20peaks.lua</source>
</version>
</reapack>
<reapack name="mpl_Generate track volume automation item from audio take.lua" type="script" desc="Generate track volume automation item from audio take">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.1" author="MPL" time="2017-12-19T17:48:16Z">
<changelog><![CDATA[+ respect multiple items
+ Consolidate undo
# fix proper add points positions]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b9c1a6b7054783de9bc6a8a9c9edf731d54dc1e6/Automation%20Items/mpl_Generate%20track%20volume%20automation%20item%20from%20audio%20take.lua</source>
</version>
</reapack>
<reapack name="mpl_Insert 1 measure long automation item for last touched parameter.lua" type="script" desc="Insert 1 measure long automation item for last touched parameter">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.01" author="MPL" time="2017-12-19T17:48:16Z">
<changelog><![CDATA[# support track volume and pan envelopes]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b9c1a6b7054783de9bc6a8a9c9edf731d54dc1e6/Automation%20Items/mpl_Insert%201%20measure%20long%20automation%20item%20for%20last%20touched%20parameter.lua</source>
</version>
</reapack>
</category>
<category name="Cursor">
<reapack name="mpl_Move cursor to next selected item edge, keep overlapping condition.lua" type="script" desc="Move cursor to next selected item edge, keep overlapping condition">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Calculate edges of selected items and move cursor to next edge\par}
}
]]></description>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2017-12-12T06:08:11Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/9fb7e6dc7e6c19b47b12183efe40c83b47433336/Cursor/mpl_Move%20cursor%20to%20next%20selected%20item%20edge,%20keep%20overlapping%20condition.lua</source>
</version>
</reapack>
<reapack name="mpl_Move edit cursor to first note of selected item.lua" type="script" desc="Move edit cursor to first note of selected item">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2016-03-06T07:14:02Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/18a280d356ce75b45448c411761a16d98558c830/Cursor/mpl_Move%20edit%20cursor%20to%20first%20note%20of%20selected%20item.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T14:57:42Z">
<changelog><![CDATA[# ReaPack header, name ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d02548590e8d84d292f139994ee8e9574c586e90/Cursor/mpl_Move%20edit%20cursor%20to%20first%20note%20of%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="mpl_Set time selection from edit cursor to end of current region.lua" type="script" desc="Set time selection from edit cursor to end of current region">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2018-07-05T20:00:35Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/88d5cd0ecd66e7f6c4882dc9a4ed56134c8a33ca/Cursor/mpl_Set%20time%20selection%20from%20edit%20cursor%20to%20end%20of%20current%20region.lua</source>
</version>
</reapack>
<reapack name="mpl_Set time selection from edit cursor to start of current region.lua" type="script" desc="Set time selection from edit cursor to start of current region">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-10T18:38:17Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/bbc6de33a3204fe18964f76994fe5c1766e08f22/Cursor/mpl_Set%20time%20selection%20from%20edit%20cursor%20to%20start%20of%20current%20region.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-07-07T07:19:34Z">
<changelog><![CDATA[# fix comparing region ID (http://forum.cockos.com/showpost.php?p=2008307)]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/71ac415044a8e716d0b01f982b5165cca7c26d42/Cursor/mpl_Set%20time%20selection%20from%20edit%20cursor%20to%20start%20of%20current%20region.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes">
<reapack name="mpl_Decrease selected tracks envelopes heights.lua" type="script" desc="Decrease selected tracks envelopes heights">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:06:18Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Decrease%20selected%20tracks%20envelopes%20heights.lua</source>
</version>
</reapack>
<reapack name="mpl_Duplicate envelope points.lua" type="script" desc="Duplicate envelope points">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="mpl" time="2016-08-31T08:17:18Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/00da72a143b9a5e6db90829f6910a8d5b3d79f0f/Envelopes/mpl_Duplicate%20envelope%20points.lua</source>
</version>
<version name="1.01" author="mpl" time="2016-08-31T10:41:50Z">
<changelog><![CDATA[+ fx envelope support
+ take envelope support
+ proper unselect all points function
- Disabled track envelope support, see below
- Prevent REAPER bad behaviour: CountTrackEnvelopes / GetTrackEnvelope() include FX envelopes]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/db88db1aa74371b0c4470f1ac0c6129a026087ea/Envelopes/mpl_Duplicate%20envelope%20points.lua</source>
</version>
<version name="1.02" author="mpl" time="2016-08-31T13:00:31Z">
<changelog><![CDATA[#fixed -1 sample offset
#fixed comparing time beetween points]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/fed792247989211dd4b56720f30d795a9919b6e6/Envelopes/mpl_Duplicate%20envelope%20points.lua</source>
</version>
<version name="1.03" author="mpl" time="2016-08-31T14:50:30Z">
<changelog><![CDATA[#enabled track envelope support]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/653bd21badb09305b18d5a5d067aa7b05e43795f/Envelopes/mpl_Duplicate%20envelope%20points.lua</source>
</version>
<version name="1.04" author="MPL" time="2016-09-01T18:11:50Z">
<changelog><![CDATA[# fix dealing with take envelopes]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Duplicate%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="mpl_Hide all track envelopes except envelope under mouse cursor.lua" type="script" desc="Hide all track envelopes except envelope under mouse cursor">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:49:27Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Hide%20all%20track%20envelopes%20except%20envelope%20under%20mouse%20cursor.lua</source>
</version>
</reapack>
<reapack name="mpl_Hide all track envelopes except last touched parameter envelope.lua" type="script" desc="Hide all track envelopes except last touched parameter envelope">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:44:07Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Hide%20all%20track%20envelopes%20except%20last%20touched%20parameter%20envelope.lua</source>
</version>
</reapack>
<reapack name="mpl_Increase selected tracks envelopes heights.lua" type="script" desc="Increase selected tracks envelopes heights">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:10:08Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Increase%20selected%20tracks%20envelopes%20heights.lua</source>
</version>
</reapack>
<reapack name="mpl_Maximize selected tracks envelopes heights.lua" type="script" desc="Maximize selected tracks envelopes heights">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:01:14Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Maximize%20selected%20tracks%20envelopes%20heights.lua</source>
</version>
</reapack>
<reapack name="mpl_Minimize all tracks envelopes heights.lua" type="script" desc="Minimize all tracks envelopes heights">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:02:50Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Minimize%20all%20tracks%20envelopes%20heights.lua</source>
</version>
</reapack>
<reapack name="mpl_Minimize selected tracks envelopes heights.lua" type="script" desc="Minimize selected tracks envelopes heights">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:01:31Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Minimize%20selected%20tracks%20envelopes%20heights.lua</source>
</version>
</reapack>
<reapack name="mpl_Select active envelopes tracks.lua" type="script" desc="Select active envelopes tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2018-07-15T18:41:34Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/be639fa12eb73f10b595f0cbdabdbad746c924f6/Envelopes/mpl_Select%20active%20envelopes%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Show all active track envelopes, hide unactive.lua" type="script" desc="Show all active track envelopes, hide unactive">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:15:29Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Show%20all%20active%20track%20envelopes,%20hide%20unactive.lua</source>
</version>
</reapack>
<reapack name="mpl_Show all armed track envelopes, hide unarmed.lua" type="script" desc="Show all armed track envelopes, hide unarmed">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-09-16T20:16:17Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/Envelopes/mpl_Show%20all%20armed%20track%20envelopes,%20hide%20unarmed.lua</source>
</version>
</reapack>
<reapack name="mpl_Show and arm envelopes linked to learn for seelcted tracks.lua" type="script" desc="Show and arm envelopes linked to learn for seelcted tracks">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2018-09-13T18:01:26Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/6cd65d9d492f9a661103629961f82f295c2a8b39/Envelopes/mpl_Show%20and%20arm%20envelopes%20linked%20to%20learn%20for%20seelcted%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Show existing envelopes for last touched FX.lua" type="script" desc="Show existing envelopes for last touched FX">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.01" author="MPL" time="2018-09-08T09:38:50Z">
<changelog><![CDATA[# rename title]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/25e84f72089c3534945b42a691a8a00d60b8dd58/Envelopes/mpl_Show%20existing%20envelopes%20for%20last%20touched%20FX.lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle bypass selected tracks envelopes (reset FX parameters).lua" type="script" desc="Toggle bypass selected tracks envelopes (reset FX parameters)">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-06-19T19:55:43Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8fa4b912fda867ce2ff2a84b49e82c434c7a7777/Envelopes/mpl_Toggle%20bypass%20selected%20tracks%20envelopes%20(reset%20FX%20parameters).lua</source>
</version>
<version name="1.1" author="MPL" time="2017-06-20T20:04:56Z">
<changelog><![CDATA[# perform on master track]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/0bec563fc22114ad8960e4c9a902623fe679fd43/Envelopes/mpl_Toggle%20bypass%20selected%20tracks%20envelopes%20(reset%20FX%20parameters).lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle bypass selected tracks envelopes.lua" type="script" desc="Toggle bypass selected tracks envelopes">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-06-19T19:55:43Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8fa4b912fda867ce2ff2a84b49e82c434c7a7777/Envelopes/mpl_Toggle%20bypass%20selected%20tracks%20envelopes.lua</source>
</version>
<version name="1.1" author="MPL" time="2017-06-20T20:04:56Z">
<changelog><![CDATA[# perform on master track]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/0bec563fc22114ad8960e4c9a902623fe679fd43/Envelopes/mpl_Toggle%20bypass%20selected%20tracks%20envelopes.lua</source>
</version>
</reapack>
</category>
<category name="Functions">
<reapack name="mpl_Various_functions.lua" type="script" desc="Various_functions">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Functions for using with some MPL scripts. It is strongly recommended to have it installed for future updates.\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2018-06-08T20:09:46Z">
<changelog><![CDATA[+ init, added some basic and spectral edit functions. This file is strongly recommended to be installed.]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c75ebe8d092d74a21c4e316ae57360a640e48b39/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-06-10T09:03:13Z">
<changelog><![CDATA[+ eugen27771_GetObjStateChunk()]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/0d2ff87f1c08dcaa7306b8c31383eb00a49b9206/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.02" author="MPL" time="2018-06-11T15:21:49Z">
<changelog><![CDATA[+ spairs
+ ExtState_Load/Save (for {conf})
+ Table: NormalizeT, ScaleT, SmoothT
+ GetParentFolder
+ GetShortSmplName
+ GetNoteStr
+ ExportSelItemsToRs5k_AddMIDI, ExportSelItemsToRs5k_FormMIDItake_data
+ math_q, math_q_dec
+ local table or REAPER functions
+ FloatInstrument
+ ApplyFunctionToTrackInTree]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8415c0c10fbf47f0e4322a7f8ae348722de2b5f3/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.03" author="MPL" time="2018-06-11T20:13:24Z">
<changelog><![CDATA[+ BinaryCheck
+ GetInput]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/0736f9b5a1c5ebd341093c00e6d6ba38865ba67d/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.04" author="MPL" time="2018-06-16T16:06:16Z">
<changelog><![CDATA[+ Open_URL
+ gfx_ColHex
# fix and improve NormalizeT]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/e63ff52e7f071326016b0dd9fd11e4409ee8a205/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.05" author="MPL" time="2018-07-07T07:19:34Z">
<changelog><![CDATA[# SetSpectralData(): handle rate and startoffset]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/71ac415044a8e716d0b01f982b5165cca7c26d42/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.06" author="MPL" time="2018-07-11T09:39:33Z">
<changelog><![CDATA[+ SetFXName]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8bfde64beb29b2a0f853e024e490c49c0fa724f1/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.07" author="MPL" time="2018-07-14T18:07:55Z">
<changelog><![CDATA[# fix GetSpectralData eat rate and start offset]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/6ce347bd4364918add7acacf3ebc566bd51afc24/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.08" author="MPL" time="2018-08-01T05:56:35Z">
<changelog><![CDATA[# mod for GetNotestr]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/32651639ff1079e4bf309b9186e58b255d0c1315/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.09" author="MPL" time="2018-08-02T22:03:13Z">
<changelog><![CDATA[+ HasWindXYWHChanged]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cfdc1675606ac1655e1e60f773af716d1e2d4c06/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.10" author="MPL" time="2018-08-03T04:24:28Z">
<changelog><![CDATA[+ Menu]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/087857ad164df4fa28e7fe35e7925c1161bcff7e/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.11" author="MPL" time="2018-08-04T17:00:12Z">
<changelog><![CDATA[+ MPL_ReduceFXname()]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f59b4f0d83a50a34c2494440b1a03784e3c65c0a/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.12" author="MPL" time="2018-08-08T05:47:30Z">
<changelog><![CDATA[# use GetTrackStateChunk with REAPER 5.93+]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/0206efdc18c133ef0010d09704a84a420385eff4/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.13" author="MPL" time="2018-08-12T05:44:37Z">
<changelog><![CDATA[# improve ReduceFXName()
+ add Action()]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d2dc9eb3fe0809974b541911dcf2305cd856e439/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.14" author="MPL" time="2018-10-21T21:18:00Z">
<changelog><![CDATA[# update OpenURL]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4202683a134835e07d4904bdfe804b13d2cbcd26/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.15" author="MPL" time="2018-10-25T22:46:16Z">
<changelog><![CDATA[+ getKeysSortedByValue()]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/bd71763a1683eb2e822e04cdca41f4508a36da27/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.16" author="MPL" time="2018-10-28T14:01:58Z">
<changelog><![CDATA[+ BinaryToggle]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/384354653a16af070a9d3274c3de93f5dcee41ca/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.17" author="MPL" time="2018-11-02T23:59:29Z">
<changelog><![CDATA[+ VF_CheckReaperVrs()]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/fd959ed9b93a0194e05a7f144b82e536de9ae5bf/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.18" author="MPL" time="2018-11-07T19:41:38Z">
<changelog><![CDATA[+ VF_GetFormattedGrid]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/2aca37cebc9d3bec48e1bf01ec6c1c642ae2ab25/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.19" author="MPL" time="2018-11-12T21:35:49Z">
<changelog><![CDATA[+ VF_CheckReaperVrs]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.20" author="MPL" time="2018-12-09T08:09:29Z">
<changelog><![CDATA[+ VF_CalibrateFont by geraintluff https://forum.cockos.com/showpost.php?p=2066576&postcount=17]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c0636fcda1091cdd83236ec44ac2b9875f7e39a1/Functions/mpl_Various_functions.lua</source>
</version>
<version name="1.21" author="MPL" time="2018-12-15T07:38:31Z">
<changelog><![CDATA[# fix VF_CheckReaperVrs duplicate]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/ca1c4bc3e5fe916708c75d3a9ccacc4f38a837a7/Functions/mpl_Various_functions.lua</source>
</version>
</reapack>
</category>
<category name="FX">
<reapack name="mpl_Assign audio input parameter modulation with last touched parameter.lua" type="script" desc="Assign audio input parameter modulation with last touched parameter">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="mpl" time="2017-01-11T13:26:11Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f78e5d8d0926d804e4ce3b64ff5e067d7f7c4a99/FX/mpl_Assign%20audio%20input%20parameter%20modulation%20with%20last%20touched%20parameter.lua</source>
</version>
<version name="1.01" author="MPL" time="2017-05-09T11:47:11Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/3afc423d440339c2fe6294617f05cdd52c8c1180/FX/mpl_Assign%20audio%20input%20parameter%20modulation%20with%20last%20touched%20parameter.lua</source>
</version>
</reapack>
<reapack name="mpl_Bypass all FX except instruments on all tracks.lua" type="script" desc="Toggle bypass all FX except instruments on all tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.3" author="MPL" time="2018-03-08T04:31:22Z">
<changelog><![CDATA[# fix inversed state
# reverted native first(only) instrument check]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/9d54c63f3073a89758270e8f3ef570ab5f184baa/FX/mpl_Bypass%20all%20FX%20except%20instruments%20on%20all%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Bypass all FX except instruments on selected tracks.lua" type="script" desc="Toggle bypass all FX except instruments on selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-10-05T13:46:24Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cdfeba1af91ffa41680fbf24ed491b0df1222211/FX/mpl_Bypass%20all%20FX%20except%20instruments%20on%20selected%20tracks.lua</source>
</version>
<version name="1.1" author="MPL" time="2017-11-30T18:04:22Z">
<changelog><![CDATA[- bypass for all tracks removed from repository as obsolete
+ use programmatically changed ReaScript toggle state
+ remember bypass state of ALL plugins in project, state data stored/erased into extstate section of current RPP]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d144c59aeb7d5c4c2e1bcc17283e2da5b34e6604/FX/mpl_Bypass%20all%20FX%20except%20instruments%20on%20selected%20tracks.lua</source>
</version>
<version name="1.2" author="MPL" time="2017-12-09T08:31:48Z">
<changelog><![CDATA[# use string matching way for checking FX is instrument]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4597b2a39dc1be7b09cae2ff9c660918c46d0c00/FX/mpl_Bypass%20all%20FX%20except%20instruments%20on%20selected%20tracks.lua</source>
</version>
<version name="1.3" author="MPL" time="2017-12-26T17:06:00Z">
<changelog><![CDATA[# fix inversed state
# reverted native first(only) instrument check]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/74afb3e5c3832f1888b98a1fbcf9fe67eea8306c/FX/mpl_Bypass%20all%20FX%20except%20instruments%20on%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Copy Focused FX data.lua" type="script" desc="Copy Focused FX data">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="mpl" time="2017-01-11T12:56:19Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b14eb396eda3e6f8cad28fd0ba8934bed6130389/FX/mpl_Copy%20Focused%20FX%20data.lua</source>
</version>
<version name="1.01" author="MPL" time="2017-01-12T05:25:41Z">
<changelog><![CDATA[+ support parameters copypaste]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/FX/mpl_Copy%20Focused%20FX%20data.lua</source>
</version>
</reapack>
<reapack name="mpl_Copy LFO settings from last touched FX parameter.lua" type="script" desc="Copy LFO settings from last touched FX parameter">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.01" author="MPL" time="2017-08-03T17:42:23Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/9e4b05c4cffae26df6603e477c8df6a95d85ae11/FX/mpl_Copy%20LFO%20settings%20from%20last%20touched%20FX%20parameter.lua</source>
</version>
</reapack>
<reapack name="mpl_Create send from focused FX insert.lua" type="script" desc="Create send from focused FX insert">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2017-08-20T15:29:03Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4838e6246210c95b076f3c7017c2f7236dffb2ae/FX/mpl_Create%20send%20from%20focused%20FX%20insert.lua</source>
</version>
<version name="1.01" author="MPL" time="2017-09-13T05:17:56Z">
<changelog><![CDATA[# respect send parameters
# forum link]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/2734b65a041b97fcf9fe6b6918d548361764078a/FX/mpl_Create%20send%20from%20focused%20FX%20insert.lua</source>
</version>
</reapack>
<reapack name="mpl_Cubase AB floating FX make equal.lua" type="script" desc="AB floating FX parameters, make snapshots equal">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 implementation of "equal" button in Cubase 7+ plugin window\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Cubase%20AB%20floating%20FX%20make%20equal.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T14:57:42Z">
<changelog><![CDATA[# ReaPack header, name ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d02548590e8d84d292f139994ee8e9574c586e90/FX/mpl_Cubase%20AB%20floating%20FX%20make%20equal.lua</source>
</version>
</reapack>
<reapack name="mpl_Cubase AB floating FX.lua" type="script" desc="AB floating FX parameters">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 implementation of "AB" button in Cubase 7+ plugin window Instructions: float FX, changes params, run script, change params again and run script again. It will change plugin parameters beetween two states. Use mpl_Cubase AB floating FX make equal to make two states same.\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Cubase%20AB%20floating%20FX.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T14:57:42Z">
<changelog><![CDATA[# ReaPack header, name ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d02548590e8d84d292f139994ee8e9574c586e90/FX/mpl_Cubase%20AB%20floating%20FX.lua</source>
</version>
</reapack>
<reapack name="mpl_Delete all MIDI OSC learn from focused FX.lua" type="script" desc="Delete all MIDI OSC learn from focused FX">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Delete%20all%20MIDI%20OSC%20learn%20from%20focused%20FX.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T14:57:42Z">
<changelog><![CDATA[# ReaPack header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d02548590e8d84d292f139994ee8e9574c586e90/FX/mpl_Delete%20all%20MIDI%20OSC%20learn%20from%20focused%20FX.lua</source>
</version>
</reapack>
<reapack name="mpl_Delete all MIDI OSC learn from selected track.lua" type="script" desc="Delete all MIDI OSC learn from selected track">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Delete%20all%20MIDI%20OSC%20learn%20from%20selected%20track.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T14:57:42Z">
<changelog><![CDATA[# ReaPack header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/d02548590e8d84d292f139994ee8e9574c586e90/FX/mpl_Delete%20all%20MIDI%20OSC%20learn%20from%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="mpl_Delete bypassed fx from selected tracks.lua" type="script" desc="Delete bypassed fx from selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.13" author="MPL" time="2018-08-10T14:29:23Z">
<changelog><![CDATA[# recoded for using new API (REAPER 5.95+)]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f796fb7ee80aec7289d049eabde20aa2ffe11c25/FX/mpl_Delete%20bypassed%20fx%20from%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Delete offline fx from selected tracks.lua" type="script" desc="Delete offline fx from selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2018-08-10T14:29:23Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f796fb7ee80aec7289d049eabde20aa2ffe11c25/FX/mpl_Delete%20offline%20fx%20from%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Float instrument on selected track.lua" type="script" desc="Float instrument on selected track">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2018-06-11T15:21:49Z">
<changelog><![CDATA[# use Various_functions
# search instruments in tree
# search instruments in sends]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8415c0c10fbf47f0e4322a7f8ae348722de2b5f3/FX/mpl_Float%20instrument%20on%20selected%20track.lua</source>
</version>
<version name="1.03" author="MPL" time="2018-06-23T20:13:58Z">
<changelog><![CDATA[# fix checking Various_functions]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/71c0f6cd996b382f80fc85059201fb5fb06d6fbe/FX/mpl_Float%20instrument%20on%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="mpl_Float instrument on track under mouse cursor.lua" type="script" desc="Float instrument on track under mouse cursor">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2018-06-11T15:21:49Z">
<changelog><![CDATA[# use Various_functions
# search instruments in tree
# search instruments in sends]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8415c0c10fbf47f0e4322a7f8ae348722de2b5f3/FX/mpl_Float%20instrument%20on%20track%20under%20mouse%20cursor.lua</source>
</version>
<version name="1.03" author="MPL" time="2018-06-23T20:13:58Z">
<changelog><![CDATA[# fix check Various_functions]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/71c0f6cd996b382f80fc85059201fb5fb06d6fbe/FX/mpl_Float%20instrument%20on%20track%20under%20mouse%20cursor.lua</source>
</version>
</reapack>
<reapack name="mpl_Generate reabank from focused FX.lua" type="script" desc="Generate reabank from focused FX">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-08-03T12:57:15Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/FX/mpl_Generate%20reabank%20from%20focused%20FX.lua</source>
</version>
</reapack>
<reapack name="mpl_Insert focused FX to selected tracks, preserve parameters.lua" type="script" desc="Insert focused FX to selected tracks, preserve parameters">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-23T11:50:45Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1095681c7ed0b84ed51719a8656640784c30780a/FX/mpl_Insert%20focused%20FX%20to%20selected%20tracks,%20preserve%20parameters.lua</source>
</version>
</reapack>
<reapack name="mpl_Insert focused FX to selected tracks.lua" type="script" desc="Insert focused FX to selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-22T09:39:26Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/be2c444d577fea1b597def577887433883fcb9d3/FX/mpl_Insert%20focused%20FX%20to%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_LearnManager (background).lua" type="script" desc="LearnManager">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.10" author="MPL" time="2018-01-27T04:42:47Z">
<changelog><![CDATA[+ Add support for load/save custom mappings (4 slots)
+ Action: Show envelopes for mapped parameters (all in selected tracks)
+ Action: Hide envelopes for mapped parameters
+ Action: Remove parameter from mapping by ID
+ Action: Remove OSC mappings
+ Action: Remove MIDI mappings
+ Action: Clear mapping
+ Action: Change MIDI mappings to specific channel
+ Action: Build dummy mapping from TCP controls
+ Action: Build dummy mapping from FX envelopes
+ Action: Build mapping by incrementing OSC address
+ Action: Build mapping by incrementing MIDI CC
# highlight buttons
# fix update tracklist after showing envelopes
# fix replacing multiple empty lines in learn chunks]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/720dd322e25b6d383a245a3a4b7ec88c14625fca/FX/mpl_LearnManager%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_List all MIDI OSC learn for current project.lua" type="script" desc="List all MIDI OSC learn for current project">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2017-01-14T08:29:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/e521e77642292513c2f1087cca36080a410a1960/FX/mpl_List%20all%20MIDI%20OSC%20learn%20for%20current%20project.lua</source>
</version>
<version name="1.01" author="mpl" time="2017-01-14T09:02:18Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ec7292bcdb74c3383cc7f514b01fb9de3e7d264/FX/mpl_List%20all%20MIDI%20OSC%20learn%20for%20current%20project.lua</source>
</version>
<version name="1.02" author="mpl" time="2017-01-21T02:36:45Z">
<changelog><![CDATA[# fix potentioal bug at ItemFX learn search]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/efafe3a2f7f71daf16fdc0634ada70c2d9d46997/FX/mpl_List%20all%20MIDI%20OSC%20learn%20for%20current%20project.lua</source>
</version>
<version name="1.03" author="mpl" time="2017-01-21T12:58:11Z">
<changelog><![CDATA[# fix wrong decoding MIDI integer]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e83193612e64c8f288a61877c17964a9d8c7157/FX/mpl_List%20all%20MIDI%20OSC%20learn%20for%20current%20project.lua</source>
</version>
<version name="1.04" author="MPL" time="2017-10-28T06:11:37Z">
<changelog><![CDATA[# fix wrong decoding MIDI integer]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/e2c50c49e4cc8b63b82a2d96fee199fe0369bc8b/FX/mpl_List%20all%20MIDI%20OSC%20learn%20for%20current%20project.lua</source>
</version>
</reapack>
<reapack name="mpl_List all MIDI OSC learn from focused fx.lua" type="script" desc="List all MIDI OSC learn for focused FX">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2016-02-07T07:10:56Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/602859da73409c42347ed21b136e96f1690f464f/FX/mpl_List%20all%20MIDI%20OSC%20learn%20from%20focused%20fx.lua</source>
</version>
<version name="1.01" author="mpl" time="2017-01-21T12:59:36Z">
<changelog><![CDATA[# fix wrong decoding MIDI integer]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/313d01dc73bf932107f7938c6034c9bf0928a1a9/FX/mpl_List%20all%20MIDI%20OSC%20learn%20from%20focused%20fx.lua</source>
</version>
<version name="1.02" author="MPL" time="2017-10-28T06:11:37Z">
<changelog><![CDATA[# fix wrong decoding MIDI integer]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/e2c50c49e4cc8b63b82a2d96fee199fe0369bc8b/FX/mpl_List%20all%20MIDI%20OSC%20learn%20from%20focused%20fx.lua</source>
</version>
</reapack>
<reapack name="mpl_Move focused Track FX to screen center.lua" type="script" desc="Move focused Track FX to screen center">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2016-07-23T04:51:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/FX/mpl_Move%20focused%20Track%20FX%20to%20screen%20center.lua</source>
</version>
</reapack>
<reapack name="mpl_Offline bypassed fx on selected tracks.lua" type="script" desc="Offline bypassed fx on selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2018-08-10T14:29:23Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f796fb7ee80aec7289d049eabde20aa2ffe11c25/FX/mpl_Offline%20bypassed%20fx%20on%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Open FX browser and close FX browser when FX is inserted.lua" type="script" desc="Open FX browser and close FX browser when FX is inserted">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-03-11T01:55:07Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f75b24befef19252bb54e60a9c64891a7fdfd549/FX/mpl_Open%20FX%20browser%20and%20close%20FX%20browser%20when%20FX%20is%20inserted.lua</source>
</version>
<version name="1.1" author="MPL" time="2017-03-11T03:03:13Z">
<changelog><![CDATA[# fix adding by doubleclick]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/26630347833e54eb7e5601a67bb0d5c48e4bdfda/FX/mpl_Open%20FX%20browser%20and%20close%20FX%20browser%20when%20FX%20is%20inserted.lua</source>
</version>
<version name="1.2" author="MPL" time="2017-03-11T12:34:22Z">
<changelog><![CDATA[# fix proper loop exit]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/36318cfc0e80400347da972de15a7fb5fa9d4d31/FX/mpl_Open%20FX%20browser%20and%20close%20FX%20browser%20when%20FX%20is%20inserted.lua</source>
</version>
<version name="1.3" author="MPL" time="2017-03-11T13:10:32Z">
<changelog><![CDATA[# doubleclick on FX runs FX browser again]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/ceb519fb7919b20364f6c59b72af32cdcf8ff761/FX/mpl_Open%20FX%20browser%20and%20close%20FX%20browser%20when%20FX%20is%20inserted.lua</source>
</version>
</reapack>
<reapack name="mpl_Pan focused FX track 10% left.lua" type="script" desc="Pan focused FX track 10% left">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-19T18:59:41Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/44cf93fdbedc5a975f5abb4fc5e6ce28fa87a16c/FX/mpl_Pan%20focused%20FX%20track%2010%25%20left.lua</source>
</version>
</reapack>
<reapack name="mpl_Pan focused FX track 10% right.lua" type="script" desc="Pan focused FX track 10% right">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-19T19:00:27Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b0d0ac033d7c664eb329ca9c1a75ed44a26cf0fc/FX/mpl_Pan%20focused%20FX%20track%2010%25%20right.lua</source>
</version>
</reapack>
<reapack name="mpl_Pan focused FX track at center.lua" type="script" desc="Pan focused FX track at center">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-19T19:01:20Z">
<changelog><![CDATA[+ init ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b934e136c8319a80d71417a72aa4ace8336961f6/FX/mpl_Pan%20focused%20FX%20track%20at%20center.lua</source>
</version>
</reapack>
<reapack name="mpl_Parameter Modulation Viewer.lua" type="script" desc="MPL Parameter Modulation Viewer">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-07-30T01:24:07Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/aba62ceee636e97d2437a00ba90074f8e64df1c0/FX/mpl_Parameter%20Modulation%20Viewer.lua</source>
</version>
</reapack>
<reapack name="mpl_Paste Focused FX data.lua" type="script" desc="Paste Focused FX data">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="mpl" time="2017-01-11T12:57:14Z">
<changelog><![CDATA[+ init ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/ccb758fd1b7d0473b930c1007d30f0c645a914d1/FX/mpl_Paste%20Focused%20FX%20data.lua</source>
</version>
<version name="1.01" author="MPL" time="2017-01-12T05:24:04Z">
<changelog><![CDATA[+ support parameters copypaste]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/FX/mpl_Paste%20Focused%20FX%20data.lua</source>
</version>
</reapack>
<reapack name="mpl_Paste LFO settings for last touched FX parameter.lua" type="script" desc="Paste LFO settings for last touched FX parameter">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.01" author="MPL" time="2017-08-03T17:42:23Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/9e4b05c4cffae26df6603e477c8df6a95d85ae11/FX/mpl_Paste%20LFO%20settings%20for%20last%20touched%20FX%20parameter.lua</source>
</version>
</reapack>
<reapack name="mpl_Randomize Track FX parameters.lua" type="script">
<version name="1.0" author="mpl" time="2016-06-20T19:40:13Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/9afa9d94d8588573c58fc7bdba397b02f3a33f31/FX/mpl_Randomize%20Track%20FX%20parameters.lua</source>
</version>
<version name="1.01" author="mpl" time="2016-06-22T14:53:20Z">
<changelog><![CDATA[# limit parameters count to first 200 (ex. Spire with 754 params crash Reaper)]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/94615c8e4c5be5039f0465160cd9199a7c64cde3/FX/mpl_Randomize%20Track%20FX%20parameters.lua</source>
</version>
<version name="1.11" author="mpl" time="2016-07-18T12:14:26Z">
<changelog><![CDATA[# ReaPack verioning fix
+ Store only picked parameters
- Ignore protected table]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8be803e61a540a42bef17b8fc2e609386ddf2750/FX/mpl_Randomize%20Track%20FX%20parameters.lua</source>
</version>
<version name="1.20" author="MPL" time="2016-07-28T11:02:53Z">
<changelog><![CDATA[+ Add 'Get all parameters' button
+ Add 'Get all parameters except protected' button
+ Add 'render', "upsampl" to protected table]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/FX/mpl_Randomize%20Track%20FX%20parameters.lua</source>
</version>
</reapack>
<reapack name="mpl_Remove parameter modulation from focused FX.lua" type="script" desc="Remove parameter modulation from focused FX">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-08-03T16:27:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/2dad215a3f967d696f40570822a0b821ce104e2b/FX/mpl_Remove%20parameter%20modulation%20from%20focused%20FX.lua</source>
</version>
<version name="1.01" author="MPL" time="2017-08-03T17:52:51Z">
<changelog><![CDATA[+ init
# synthax fix]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/7c2559ffcceec3654bb74876798129379929801c/FX/mpl_Remove%20parameter%20modulation%20from%20focused%20FX.lua</source>
</version>
</reapack>
<reapack name="mpl_Remove parameter modulation from last touched FX parameter.lua" type="script" desc="Remove parameter modulation from last touched FX parameter">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-08-02T15:23:56Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/acc3103e5f367e8900c8c0e3f7c6421111f7384d/FX/mpl_Remove%20parameter%20modulation%20from%20last%20touched%20FX%20parameter.lua</source>
</version>
<version name="1.01" author="MPL" time="2017-08-03T16:27:59Z">
<changelog><![CDATA[- remove confirm dialog]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/2dad215a3f967d696f40570822a0b821ce104e2b/FX/mpl_Remove%20parameter%20modulation%20from%20last%20touched%20FX%20parameter.lua</source>
</version>
</reapack>
<reapack name="mpl_Remove parameter modulation from selected tracks.lua" type="script" desc="Remove parameter modulation from selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-08-03T16:27:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/2dad215a3f967d696f40570822a0b821ce104e2b/FX/mpl_Remove%20parameter%20modulation%20from%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Route FX chain followed by focused FX to 3-4 pair.lua" type="script" desc="Route FX chain followed by focused FX to 3-4 pair">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 http://forum.cockos.com/showpost.php?p=2009857&postcount=3\par}
}
]]></description>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2018-07-11T09:39:33Z">
<changelog><![CDATA[+ init
+ set track channels count to 4
+ route instrument to 1-4 channels
+ route plugins before focused FX to 1-2 pair
+ route plugins after focused FX to 3-4 pair
+ rename plugins after focused FX to 3-4 pair to "WET" (follow original request, can be disabled by change_name=0)
+ add loser`s 3-band joiner]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/8bfde64beb29b2a0f853e024e490c49c0fa724f1/FX/mpl_Route%20FX%20chain%20followed%20by%20focused%20FX%20to%203-4%20pair.lua</source>
</version>
</reapack>
<reapack name="mpl_Save all track FX chains.lua" type="script" desc="Save all track FX chains">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Save%20all%20track%20FX%20chains.lua</source>
</version>
<version name="1.01" author="mpl" time="2016-08-23T14:54:15Z">
<changelog><![CDATA[+ edit some tips]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/2fc6ace842b49c0b7b6d6951db27db55f2a6ff0c/FX/mpl_Save%20all%20track%20FX%20chains.lua</source>
</version>
<version name="1.02" author="MPL" time="2016-08-23T14:55:22Z">
<changelog><![CDATA[+ edit some tips]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/b346a1f11fd6b9887bf1b8e513aaa9ce25096efc/FX/mpl_Save%20all%20track%20FX%20chains.lua</source>
</version>
</reapack>
<reapack name="mpl_Set last touched parameter value (via deductive brutforce).lua" type="script" desc="Set last touched parameter value (via deductive brutforce)">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-08-14T20:25:55Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/ed177efd64b257d2670a94a94a6ebecd561adb7d/FX/mpl_Set%20last%20touched%20parameter%20value%20(via%20deductive%20brutforce).lua</source>
</version>
</reapack>
<reapack name="mpl_Show instrument in FX chain on selected track.lua" type="script" desc="Show instrument in FX chain on selected track">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Show%20instrument%20in%20FX%20chain%20on%20selected%20track.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T15:19:08Z">
<changelog><![CDATA[# ReaPack header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/3a2158fb623c3c6be3aa95aaa02cfdd9ff4ad854/FX/mpl_Show%20instrument%20in%20FX%20chain%20on%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="mpl_Show instrument in FX chain on track under mouse cursor.lua" type="script" desc="Show instrument in FX chain on track under mouse cursor">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2016-02-29T09:56:53Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/acc63acaffa51a079ee8c076cbe896501ffa582f/FX/mpl_Show%20instrument%20in%20FX%20chain%20on%20track%20under%20mouse%20cursor.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T15:19:08Z">
<changelog><![CDATA[# ReaPack header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/3a2158fb623c3c6be3aa95aaa02cfdd9ff4ad854/FX/mpl_Show%20instrument%20in%20FX%20chain%20on%20track%20under%20mouse%20cursor.lua</source>
</version>
</reapack>
<reapack name="mpl_Sort plugins by vendor.lua" type="script" desc="Sort plugins by vendor">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0alpha" author="MPL" time="2017-05-09T06:57:13Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/ad4efb93a01f1317690a1afcac50db2b2c0acc9c/FX/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
<version name="1.0" author="MPL" time="2017-05-09T11:35:07Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/58fe2d0219d426a643b3c2e1111d0d13dbe22f96/FX/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
<version name="1.1" author="MPL" time="2017-05-11T19:52:24Z">
<changelog><![CDATA[+ ask for open REAPER path after generating new list
+ add search for AU vendors
+ add JSFX bundled and ReaTeam filters/paths
+ list unknown vendor plugins in 'reaper-fxfolders_UNKNOWN.txt'
# fix reading vst64 list
# read vendor from last brackets for VST
# add some string conditions
# prevent adding waveshaper to Waves
- remove code for parsing VST name and creating backup]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/f64ddc570395ee3e55fd89fa20b62f5691c8f3ff/FX/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
<version name="1.2" author="MPL" time="2017-05-11T21:04:18Z">
<changelog><![CDATA[# fix crossmatching condition for AU/VST]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/94c4c6c142d0e01b82f592b3a9ad4e8a4594dee9/FX/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
<version name="1.21" author="MPL" time="2017-05-12T03:18:51Z">
<changelog><![CDATA[# fix nil on 33 line]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/e6ae18b105e1de715d82c36089cf20e119835623/FX/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
<version name="1.22" author="MPL" time="2017-05-12T03:20:31Z">
<changelog><![CDATA[# fix nil on 33 line]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4340e3750172edb9408bbff98fdd83d539903aed/FX/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle bypass all project FX with latency (PDC) higher than X samples.lua" type="script" desc="Toggle bypass all project FX with latency (PDC) higher than X samples">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=165672</link>
</metadata>
<version name="1.0" author="MPL" time="2018-11-12T21:35:49Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 256 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 512 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 1024 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 2048 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 4096 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 8192 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/cd616f518f8f3673a427d6a424b14a0cbb97f1c0/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-11-12T21:50:39Z">
<changelog><![CDATA[# fix parsing script name
# fix initial empty external state]]></changelog>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 256 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/5cc82c966dd7911b536f8669a76e16339668305b/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 512 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/5cc82c966dd7911b536f8669a76e16339668305b/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 1024 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/5cc82c966dd7911b536f8669a76e16339668305b/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 2048 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/5cc82c966dd7911b536f8669a76e16339668305b/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 4096 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/5cc82c966dd7911b536f8669a76e16339668305b/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 8192 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/5cc82c966dd7911b536f8669a76e16339668305b/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
</version>
<version name="1.02" author="MPL" time="2018-11-17T21:07:35Z">
<changelog><![CDATA[+ support master FX
+ support monitoring FX
+ support input FX
# fix VariousFunctions checking]]></changelog>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 256 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c8d3c1a706dfe7356d29a1a5af87b91f2f57372f/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 512 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c8d3c1a706dfe7356d29a1a5af87b91f2f57372f/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 1024 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c8d3c1a706dfe7356d29a1a5af87b91f2f57372f/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 2048 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c8d3c1a706dfe7356d29a1a5af87b91f2f57372f/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 4096 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c8d3c1a706dfe7356d29a1a5af87b91f2f57372f/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 8192 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/c8d3c1a706dfe7356d29a1a5af87b91f2f57372f/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
</version>
<version name="1.03" author="MPL" time="2018-11-20T06:08:47Z">
<changelog><![CDATA[# fix master check
+ Add PDC=64,128]]></changelog>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 64 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 128 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 256 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 512 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 1024 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 2048 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 4096 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle bypass all project FX with latency (PDC) higher than 8192 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1ed93bafee39c00221758d0988deab7d4b357dcd/FX/mpl_Toggle%20bypass%20all%20project%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle float instrument on track under mouse cursor.lua" type="script" desc="Toggle float instrument on track under mouse cursor">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="Michael Pilyavskiy (mpl)" time="2015-12-02T10:11:59Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/1b0ddb39acd4a2f7fc85317e482f1b6155f1b91c/FX/mpl_Toggle%20float%20instrument%20on%20track%20under%20mouse%20cursor.lua</source>
</version>
<version name="1.01" author="MPL" time="2018-03-08T15:19:08Z">
<changelog><![CDATA[# ReaPack header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScripts/raw/3a2158fb623c3c6be3aa95aaa02cfdd9ff4ad854/FX/mpl_Toggle%20float%20instrument%20on%20track%20under%20mouse%20cursor.lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than X samples.lua" type="script" desc="Toggle mute all tracks contain FX with latency (PDC) higher than X samples">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=165672</link>
</metadata>
<version name="1.0" author="MPL" time="2018-11-13T04:12:23Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main" file="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than 256 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e5c7be66bd1981d6f481cde279dd876da7adc43/FX/mpl_Toggle%20mute%20all%20tracks%20contain%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than 512 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e5c7be66bd1981d6f481cde279dd876da7adc43/FX/mpl_Toggle%20mute%20all%20tracks%20contain%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than 1024 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e5c7be66bd1981d6f481cde279dd876da7adc43/FX/mpl_Toggle%20mute%20all%20tracks%20contain%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than 2048 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e5c7be66bd1981d6f481cde279dd876da7adc43/FX/mpl_Toggle%20mute%20all%20tracks%20contain%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than 4096 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e5c7be66bd1981d6f481cde279dd876da7adc43/FX/mpl_Toggle%20mute%20all%20tracks%20contain%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
<source main="main" file="mpl_Toggle mute all tracks contain FX with latency (PDC) higher than 8192 samples.lua">https://github.com/MichaelPilyavskiy/ReaScripts/raw/4e5c7be66bd1981d6f481cde279dd876da7adc43/FX/mpl_Toggle%20mute%20all%20tracks%20contain%20FX%20with%20latency%20(PDC)%20higher%20than%20X%20samples.lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle mute focused FX track.lua" type="script" desc="Toggle mute focused FX track">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2017-01-19T18:53:43Z">