-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.xml
1655 lines (1642 loc) · 126 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<index version="1" name="MPL_Additional" commit="93c126544b673cd3909703663fb044426caca7f6">
<category name="CustomDevelopment">
<reapack name="mpl_Conditional bounce-in-place.lua" type="script" desc="Conditional bounce-in-place">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.03" author="MPL" time="2024-09-01T05:38:16Z">
<changelog><![CDATA[# crop to active take on source item]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/a581fac161bb9f31cccd821ada0a5f5503269a74/CustomDevelopment/mpl_Conditional%20bounce-in-place.lua</source>
</version>
</reapack>
<reapack name="mpl_Create FX send from selected tracks (custom).lua" type="script" desc="Create FX send from selected tracks (custom)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2024-03-31T06:51:49Z">
<changelog><![CDATA[# if bus FX, move before first selected track]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/5c59842a18011069aa1b30adc3e61611946929af/CustomDevelopment/mpl_Create%20FX%20send%20from%20selected%20tracks%20(custom).lua</source>
</version>
</reapack>
<reapack name="mpl_Glue selected items by custom defined counts.lua" type="script" desc="Glue selected items by custom defined counts">
<version name="1.0" author="MPL" time="2023-04-02T10:13:49Z">
<changelog><![CDATA[init ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/CustomDevelopment/mpl_Glue%20selected%20items%20by%20custom%20defined%20counts.lua</source>
</version>
</reapack>
<reapack name="mpl_Set selected items offset by custom defined shifts.lua" type="script" desc="Set selected items offset by custom defined shifts">
<version name="1.0" author="MPL" time="2023-04-02T10:13:49Z">
<changelog><![CDATA[init ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/CustomDevelopment/mpl_Set%20selected%20items%20offset%20by%20custom%20defined%20shifts.lua</source>
</version>
</reapack>
<reapack name="mpl_Split selected item at waveform rise above zero.lua" type="script" desc="Split selected item at waveform rise above zero">
<version name="1.02" author="MPL" time="2023-04-02T10:13:49Z">
<changelog><![CDATA[# fix name and direction]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/CustomDevelopment/mpl_Split%20selected%20item%20at%20waveform%20rise%20above%20zero.lua</source>
</version>
</reapack>
</category>
<category name="CustomDevelopment/subt">
<reapack name="Generate bypass envelope from item selection.lua" type="script" desc="Generate bypass envelope from item selection">
<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 Script for showing instruments in currently opened REAPER project\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=165672</link>
</metadata>
<version name="1.02" author="MPL" time="2025-01-04T21:12:19Z">
<changelog><![CDATA[# fix boundaries]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/59e2698575e0f36510cf0712910030e08da5c634/CustomDevelopment/subt/Generate%20bypass%20envelope%20from%20item%20selection.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 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Functions used by MPL scripts.\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="3.65" author="MPL" time="2025-01-08T20:38:07Z">
<changelog><![CDATA[# fix VF_GetFXByGUID]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Functions/mpl_Various_functions.lua</source>
<source file="mpl_Various_functions_v1.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Functions/mpl_Various_functions_v1.lua</source>
<source file="mpl_Various_functions_v3.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Functions/mpl_Various_functions_v3.lua</source>
<source file="mpl_Various_functions_GUI.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Functions/mpl_Various_functions_GUI.lua</source>
<source file="mpl_Various_functions_MOUSE.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Functions/mpl_Various_functions_MOUSE.lua</source>
<source file="mpl_Various_functions_Pers.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Functions/mpl_Various_functions_Pers.lua</source>
</version>
</reapack>
</category>
<category name="JS API dependent/JS_Dialog_BrowseForSaveFile">
<reapack name="mpl_Generate CUE from project markers.lua" type="script" desc="Generate CUE from project markers">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.07" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# 1-based markers count
# exculde number sign from marker name]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/JS%20API%20dependent/JS_Dialog_BrowseForSaveFile/mpl_Generate%20CUE%20from%20project%20markers.lua</source>
</version>
</reapack>
</category>
<category name="Not finished">
<reapack name="mpl_SessionView.lua" type="script" desc="Session view">
<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 Basic ableton session view port. Limitation: clip is hard snapped into scene by its length, so it is not completely free-running - it will be cut off by scene boundaries and triggerring clip triggers it from closer clip boundary, not the closest beat. Clips can`t be triggerer at exact same time.\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0alpha2" author="MPL" time="2023-04-10T19:22:46Z">
<changelog><![CDATA[+ HW feedback/Launchpad MK2: map Launchpad MK2]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/2e8a01f9fee74dcd4df093d1f934e1769c38d039/Not%20finished/mpl_SessionView.lua</source>
</version>
</reapack>
</category>
<category name="Outdated JSFX">
<reapack name="POOL FX slave.jsfx" type="effect" desc="POOL FX slave">
<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 do nothing, just an mark for mpl_Pooled fx tools.lua package\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[init]]></changelog>
<source>https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20JSFX/POOL%20FX%20slave.jsfx</source>
</version>
</reapack>
<reapack name="RS5K_Manager_tracker.jsfx" type="effect" desc="RS5K_Manager_tracker">
<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 Tracking MIDI NoteOn messages for further passing them into mpl_RS5k manager GUI\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.05" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[disable choke support using gmem directly
choke using up to 8 choke pairs
add control for timefall showing last note]]></changelog>
<source>https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20JSFX/RS5K_Manager_tracker.jsfx</source>
</version>
</reapack>
<reapack name="SysEx_Tracker.jsfx" type="effect" desc="SysEx_Tracker">
<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 Tracking MIDI data for further passing to the related scripts for storing SysEx data into project file\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[+ initial state]]></changelog>
<source>https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20JSFX/SysEx_Tracker.jsfx</source>
</version>
</reapack>
</category>
<category name="Outdated unsupported">
<reapack name="mpl_Add note beetween two selected.lua" type="script" desc="Add note beetween two selected">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Add%20note%20beetween%20two%20selected.lua</source>
</version>
</reapack>
<reapack name="mpl_Add receive track from selected tracks.lua" type="script" desc="Add receive track from selected tracks">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# change name]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Add%20receive%20track%20from%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="mpl_Add receive tracks to selected tracks respectively.lua" type="script" desc="Add receive tracks to selected tracks respectively">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# change name]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Add%20receive%20tracks%20to%20selected%20tracks%20respectively.lua</source>
</version>
</reapack>
<reapack name="mpl_Add to render queue selected tracks with their parents.lua" type="script" desc="Add to render queue selected tracks with their parents">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.01" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# fix check for external package]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Add%20to%20render%20queue%20selected%20tracks%20with%20their%20parents.lua</source>
</version>
</reapack>
<reapack name="mpl_Add to render queue selected tracks with their sends.lua" type="script" desc="Add to render queue selected tracks with their sends">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# fix check for external package]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Add%20to%20render%20queue%20selected%20tracks%20with%20their%20sends.lua</source>
</version>
</reapack>
<reapack name="mpl_Align selected track items vertically (free positioned mode).lua" type="script" desc="Align selected track items vertically (free positioned mode)">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2024-09-01T05:38:16Z">
<changelog><![CDATA[# remove SWS dependency]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/a581fac161bb9f31cccd821ada0a5f5503269a74/Outdated%20unsupported/mpl_Align%20selected%20track%20items%20vertically%20(free%20positioned%20mode).lua</source>
</version>
</reapack>
<reapack name="mpl_Comb-filtering check selected items.lua" type="script" desc="Comb-filtering check selected items">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.05" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[+ GUI
+ Splitted selection reference take and dub takes]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Comb-filtering%20check%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="mpl_Convert Ribs playhead envelope dropouts into ADSR.lua" type="script" desc="Convert Ribs playhead envelope dropouts into ADSR">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T16:02:46Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Convert%20Ribs%20playhead%20envelope%20dropouts%20into%20ADSR.lua</source>
</version>
</reapack>
<reapack name="mpl_Copy MIDI notes from selected item.lua" type="script" desc="Copy MIDI notes from selected item">
<version name="1.0" author="MPL" time="2023-04-02T20:21:34Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Copy%20MIDI%20notes%20from%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="mpl_Copy selection area of active take to new track.lua" type="script" desc="Copy selection area of active take to new track">
<version name="1.0" author="MPL" time="2023-04-02T21:23:41Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Copy%20selection%20area%20of%20active%20take%20to%20new%20track.lua</source>
</version>
</reapack>
<reapack name="mpl_Copy selection area of take under mouse cursor to new track.lua" type="script" desc="Copy selection area of take under mouse cursor to new track">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# update for use with REAPER 5.981+]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Copy%20selection%20area%20of%20take%20under%20mouse%20cursor%20to%20new%20track.lua</source>
</version>
</reapack>
<reapack name="mpl_Delete take number x from selected items.lua" type="script" desc="Delete take number x from selected items">
<version name="1.0" author="MPL" time="2023-04-02T21:23:41Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Delete%20take%20number%20x%20from%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="mpl_Generate JSFX skin.lua" type="script" desc="Generate JSFX skin">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=233358</link>
</metadata>
<version name="0.01" author="MPL" time="2023-04-01T20:36:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/1288ec341487910a5d275b2b0e7f5a68c6ecb7b0/Outdated%20unsupported/mpl_Generate%20JSFX%20skin.lua</source>
</version>
</reapack>
<reapack name="mpl_Generate MIDICC from audio take.lua" type="script" desc="Generate MIDICC from audio take">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.01" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[# fix ReaPack header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Generate%20MIDICC%20from%20audio%20take.lua</source>
</version>
</reapack>
<reapack name="mpl_Input audio check selected track.lua" type="script" desc="Input audio check selected track">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2025-01-06T16:04:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/7ac60d4392de399f3ec959929aa78e12245c4eb4/Outdated%20unsupported/mpl_Input%20audio%20check%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="mpl_Item spacer.lua" type="script" desc="Item spacer">
<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 Audiobook tool for spacing dialogg with the ability to set minimum items distance\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2025-01-08T19:05:00Z">
<changelog><![CDATA[+ Init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/fd518b660e27cef337801fea0f284e0a65fe77ba/Outdated%20unsupported/mpl_Item%20spacer.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="2023-04-01T20:35:33Z">
<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/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_LearnManager%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Monitor selected track with track 1.lua" type="script" desc="Monitor selected track with track 1">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.01" author="MPL" time="2024-09-01T07:50:53Z">
<changelog><![CDATA[# remove SWS dependency
# cleanup]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/6a9b481c216456dc8c38599a3be292d3f87f7f8b/Outdated%20unsupported/mpl_Monitor%20selected%20track%20with%20track%201.lua</source>
</version>
</reapack>
<reapack name="mpl_Morph sends.lua" type="script" desc="test_Morph Sends">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Morph%20sends.lua</source>
</version>
</reapack>
<reapack name="mpl_Move sample selection for focused RS5k (MIDI, OSC, Mousewheel).lua" type="script" desc="Move sample selection for focused RS5k (MIDI, OSC, Mousewheel)">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2024-08-18T20:08:20Z">
<changelog><![CDATA[#header]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/e5b78a0d510a97af949cd354f891bacf2a5a457e/Outdated%20unsupported/mpl_Move%20sample%20selection%20for%20focused%20RS5k%20(MIDI,%20OSC,%20Mousewheel).lua</source>
</version>
</reapack>
<reapack name="mpl_Open and Close Media Explorer when single item is inserted, export chromatically to RS5k (background).lua" type="script" desc="Open and Close Media Explorer when single item is inserted, export chromatically to RS5k">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2024-08-18T20:08:20Z">
<changelog><![CDATA[# use VF version check]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/e5b78a0d510a97af949cd354f891bacf2a5a457e/Outdated%20unsupported/mpl_Open%20and%20Close%20Media%20Explorer%20when%20single%20item%20is%20inserted,%20export%20chromatically%20to%20RS5k%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Open and Close Media Explorer when single item is inserted, export it to RS5k (background).lua" type="script" desc="Open and Close Media Explorer when single item is inserted, export it to RS5k">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.05" author="MPL" time="2024-08-18T20:08:20Z">
<changelog><![CDATA[# use VF version check]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/e5b78a0d510a97af949cd354f891bacf2a5a457e/Outdated%20unsupported/mpl_Open%20and%20Close%20Media%20Explorer%20when%20single%20item%20is%20inserted,%20export%20it%20to%20RS5k%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Paste MIDI notes to selected item.lua" type="script" desc="Paste MIDI notes to selected item">
<version name="1.0" author="MPL" time="2023-04-02T20:21:34Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Paste%20MIDI%20notes%20to%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="mpl_Pooled FX tools.lua" type="script" desc="Pooled FX tools">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.04" author="MPL" time="2022-10-04T20:02:47Z">
<changelog><![CDATA[#fix Propagate last touched pooled FX parameters to all pooled FX in group]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools.lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Set selected track as pooled fx master (group 1).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Set%20selected%20track%20as%20pooled%20fx%20master%20(group%201).lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Add pooled fx slave JSFX to selected tracks at chain end.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Add%20pooled%20fx%20slave%20JSFX%20to%20selected%20tracks%20at%20chain%20end.lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Add pooled fx slave JSFX to selected tracks at chain start.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Add%20pooled%20fx%20slave%20JSFX%20to%20selected%20tracks%20at%20chain%20start.lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Propagate pooled FX (group 1).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Propagate%20pooled%20FX%20(group%201).lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Propagate last touched parameter to all pooled FX parameters.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Propagate%20last%20touched%20parameter%20to%20all%20pooled%20FX%20parameters.lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Propagate pooled FX master parameters to all slaves (group 1).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Propagate%20pooled%20FX%20master%20parameters%20to%20all%20slaves%20(group%201).lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Propagate pooled FX master bypass states to all slaves (group 1).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Propagate%20pooled%20FX%20master%20bypass%20states%20to%20all%20slaves%20(group%201).lua</source>
<source main="main" file="mpl_Pooled FX tools/mpl_Propagate last touched pooled FX parameters to all pooled FX in group (group 1).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_Pooled%20FX%20tools/mpl_Propagate%20last%20touched%20pooled%20FX%20parameters%20to%20all%20pooled%20FX%20in%20group%20(group%201).lua</source>
</version>
</reapack>
<reapack name="mpl_Random velocity from 60 to 100 for selected MIDI notes.lua" type="script" desc="test_Random velocity from 60 to 100 for selected MIDI notes">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Random%20velocity%20from%2060%20to%20100%20for%20selected%20MIDI%20notes.lua</source>
</version>
</reapack>
<reapack name="mpl_Record take (prompt for filename).lua" type="script" desc="test_Record take (prompt for filename)">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Record%20take%20(prompt%20for%20filename).lua</source>
</version>
</reapack>
<reapack name="mpl_Region chord editor.lua" type="script" desc="Region chord editor">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=165672</link>
</metadata>
<version name="1.04" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[+ use existed regions color map, otherwise on cropping current region use previous color
# disable text wrap
# set edit cursor to start of newly added region
# dark/ignore regions contain @ character]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_Region%20chord%20editor.lua</source>
</version>
</reapack>
<reapack name="mpl_RegionManager.lua" type="script" desc="RegionManager">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.10" author="MPL" time="2023-04-02T21:23:41Z">
<changelog><![CDATA[# fix Clear button]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_RegionManager.lua</source>
<source file="mpl_RegionManager_functions/mpl_RegionManager_GUI.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_RegionManager_functions/mpl_RegionManager_GUI.lua</source>
<source file="mpl_RegionManager_functions/mpl_RegionManager_MOUSE.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_RegionManager_functions/mpl_RegionManager_MOUSE.lua</source>
<source file="mpl_RegionManager_functions/mpl_RegionManager_data.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_RegionManager_functions/mpl_RegionManager_data.lua</source>
<source file="mpl_RegionManager_functions/mpl_RegionManager_obj.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/762cf20b8488f72da8e65684929cdce77c1993c2/Outdated%20unsupported/mpl_RegionManager_functions/mpl_RegionManager_obj.lua</source>
</version>
</reapack>
<reapack name="mpl_Restore focused FX parent track bypass states.lua" type="script" desc="Restore focused FX parent track bypass states">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.01" author="MPL" time="2024-08-18T11:13:09Z">
<changelog><![CDATA[# VF independent]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/5c901c4b84638cfe03b6fa4fa8f0085818d34bae/Outdated%20unsupported/mpl_Restore%20focused%20FX%20parent%20track%20bypass%20states.lua</source>
</version>
</reapack>
<reapack name="mpl_Retrospective record of focused FX parameter tweaks - dump.lua" type="script" desc="Retrospective record of focused FX parameter tweaks - dump">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2024-08-18T11:13:09Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/5c901c4b84638cfe03b6fa4fa8f0085818d34bae/Outdated%20unsupported/mpl_Retrospective%20record%20of%20focused%20FX%20parameter%20tweaks%20-%20dump.lua</source>
</version>
</reapack>
<reapack name="mpl_Retrospective record of focused FX parameter tweaks - log (background).lua" type="script" desc="Retrospective record of focused FX parameter tweaks - log (background)">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2024-08-18T11:13:09Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/5c901c4b84638cfe03b6fa4fa8f0085818d34bae/Outdated%20unsupported/mpl_Retrospective%20record%20of%20focused%20FX%20parameter%20tweaks%20-%20log%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Save focused FX parent track bypass states.lua" type="script" desc="Save focused FX parent track bypass states">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2024-08-18T11:13:09Z">
<changelog><![CDATA[+ init ]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/5c901c4b84638cfe03b6fa4fa8f0085818d34bae/Outdated%20unsupported/mpl_Save%20focused%20FX%20parent%20track%20bypass%20states.lua</source>
</version>
</reapack>
<reapack name="mpl_Search ReaControlMIDI bank.lua" type="script" desc="Search ReaControlMIDI bank">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0alpha" author="MPL" time="2023-04-02T16:02:46Z">
<changelog><![CDATA[+ Alpha release, it loops through all possible combinations (even if their real count not too much), so it FREEZE app for 5-20 seconds.
+ This behaviour can be changed if devs implement API to get current opened reabank or ins file.]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Search%20ReaControlMIDI%20bank.lua</source>
</version>
</reapack>
<reapack name="mpl_Set default mouse modifier action for media item left click to [Split item at mouse cursor].lua" type="script" desc="Set default mouse modifier action for "Media item left click" to "Split item at mouse cursor"">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[+ init release]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Set%20default%20mouse%20modifier%20action%20for%20media%20item%20left%20click%20to%20%5BSplit%20item%20at%20mouse%20cursor%5D.lua</source>
</version>
</reapack>
<reapack name="mpl_Show project linked SysEx data.lua" type="script" desc="Show project linked SysEx data">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-02T16:02:46Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Show%20project%20linked%20SysEx%20data.lua</source>
</version>
</reapack>
<reapack name="mpl_Show selected MIDI item data.lua" type="script" desc="Show selected MIDI item data">
<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 Dev purposes. Returns MIDI take data\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.02" author="MPL" time="2023-04-02T20:21:34Z">
<changelog><![CDATA[# cleanup]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b07b32563d529a1a4851af513b9b1171a6e9aefb/Outdated%20unsupported/mpl_Show%20selected%20MIDI%20item%20data.lua</source>
</version>
</reapack>
<reapack name="mpl_Smooth toggle X pair for ix_Mixer_8xS-1xS (background).lua" type="script" desc="Smooth toggle X pair for ix_Mixer_8xS-1xS">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.02" author="MPL" time="2023-04-02T16:02:46Z">
<changelog><![CDATA[+ metadata parser fix, removing difference condition]]></changelog>
<source main="main" file="mpl_Smooth toggle 3-4 pair for ix_Mixer_8xS-1xS.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Smooth%20toggle%20X%20pair%20for%20ix_Mixer_8xS-1xS%20(background).lua</source>
<source main="main" file="mpl_Smooth toggle 5-6 pair for ix_Mixer_8xS-1xS.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Smooth%20toggle%20X%20pair%20for%20ix_Mixer_8xS-1xS%20(background).lua</source>
<source main="main" file="mpl_Smooth toggle 7-8 pair for ix_Mixer_8xS-1xS.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Smooth%20toggle%20X%20pair%20for%20ix_Mixer_8xS-1xS%20(background).lua</source>
<source main="main" file="mpl_Smooth toggle 9-10 pair for ix_Mixer_8xS-1xS.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Smooth%20toggle%20X%20pair%20for%20ix_Mixer_8xS-1xS%20(background).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.22" author="MPL" time="2023-04-02T10:13:49Z">
<changelog><![CDATA[# fix nil on 33 line]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/Outdated%20unsupported/mpl_Sort%20plugins%20by%20vendor.lua</source>
</version>
</reapack>
<reapack name="mpl_Sort project folder garbage.lua" type="script" desc="test_Sort project folder garbage">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Sort%20project%20folder%20garbage.lua</source>
</version>
</reapack>
<reapack name="mpl_Sort tracks in user defined order.lua" type="script" desc="test_Sort tracks in user defined order">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Sort%20tracks%20in%20user%20defined%20order.lua</source>
</version>
</reapack>
<reapack name="mpl_Spectral search.lua" type="script" desc="Spectral search">
<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 Script allows to search audio data spectrum match based on given piece of other audio data\par}
}
]]></description>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2025-01-08T20:38:07Z">
<changelog><![CDATA[+ initial release
+ Get source: take spectral print of selected track - item - take as matching source
+ Get destination: take spectral print of selected track - item - take as matching destination
+ Preset/Action: Share points to destination track as razor edits
+ Preset: allow to clear razor edits before sharing
+ Preset: Spectrum settings
+ Preset/Spectrum settings: FFT size
+ Preset/Spectrum settings: window, independent from FFT size, can overlap or be inside [0.5 x FFT size / Sample rate]
+ Preset/PointsDetectionAlgorithm: allow to limit source length
+ Preset/PointsDetectionAlgorithm: allow to set threshold for minimum difference betweeen src and dest
+ Preset/Initialization: various init options
+ GUI: show source
+ GUI/Difference graph: show difference graph
+ GUI/Difference graph: show points detection threshold]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/93c126544b673cd3909703663fb044426caca7f6/Outdated%20unsupported/mpl_Spectral%20search.lua</source>
</version>
</reapack>
<reapack name="mpl_Store incoming SysEx into current project (background).lua" type="script" desc="Store incoming SysEx into current project (background)">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-03-06T19:55:59Z">
<changelog><![CDATA[+ init, mpl_SysEx_Tracker.jsfx must be installed]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/6596123b03316c657165500509f8ec4a9cf26cfe/Outdated%20unsupported/mpl_Store%20incoming%20SysEx%20into%20current%20project%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Store incoming SysEx to the 1st track 1st MIDI item, no prompt (background).lua" type="script" desc="Store incoming SysEx to the 1st track 1st MIDI item, no prompt (background)">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-03-06T19:55:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/6596123b03316c657165500509f8ec4a9cf26cfe/Outdated%20unsupported/mpl_Store%20incoming%20SysEx%20to%20the%201st%20track%201st%20MIDI%20item,%20no%20prompt%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Store project linked SysEx data to SYX file into project folder.lua" type="script" desc="Store project linked SysEx data to SYX file into project folder">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-03-06T19:55:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/6596123b03316c657165500509f8ec4a9cf26cfe/Outdated%20unsupported/mpl_Store%20project%20linked%20SysEx%20data%20to%20SYX%20file%20into%20project%20folder.lua</source>
</version>
</reapack>
<reapack name="mpl_Store project linked SysEx data to the 1st track 1st MIDI item.lua" type="script" desc="Store project linked SysEx data to the 1st track 1st MIDI item">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.0" author="MPL" time="2023-03-06T19:55:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/6596123b03316c657165500509f8ec4a9cf26cfe/Outdated%20unsupported/mpl_Store%20project%20linked%20SysEx%20data%20to%20the%201st%20track%201st%20MIDI%20item.lua</source>
</version>
</reapack>
<reapack name="mpl_Swap source of selected take and take under mouse.lua" type="script" desc="test_Swap source of selected take and take under mouse">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Swap%20source%20of%20selected%20take%20and%20take%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="mpl_Swap source of selected takes.lua" type="script" desc="test_Swap source of selected takes">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Swap%20source%20of%20selected%20takes.lua</source>
</version>
</reapack>
<reapack name="mpl_TalkBack Track 1 (MIDI CC and OSC only).lua" type="script" desc="TalkBack Track 1 (MIDI CC and OSC only)">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=165672</link>
</metadata>
<version name="1.0" author="MPL" time="2024-09-01T07:50:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/6a9b481c216456dc8c38599a3be292d3f87f7f8b/Outdated%20unsupported/mpl_TalkBack%20Track%201%20(MIDI%20CC%20and%20OSC%20only).lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle stretch selected items positions (background).lua" type="script" desc="Toggle stretch selected items positions">
<version name="1.0" author="MPL" time="2023-04-02T16:02:46Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Toggle%20stretch%20selected%20items%20positions%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_Toggle stretch selected items positions grid relative (background).lua" type="script" desc="Toggle stretch selected items positions grid relative">
<version name="1.0" author="MPL" time="2023-04-02T16:02:46Z">
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/b256cc8ea0acad447ae60410e945c9ee54aa3c42/Outdated%20unsupported/mpl_Toggle%20stretch%20selected%20items%20positions%20grid%20relative%20(background).lua</source>
</version>
</reapack>
<reapack name="mpl_TouchScr GUI for selected item.lua" type="script" desc="test_touchscr GUI for sel item">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_TouchScr%20GUI%20%20for%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="mpl_TS and tempo randomizer.lua" type="script" desc="test_TS and tempo randomizer">
<metadata>
<link rel="website">http://forum.cockos.com/member.php?u=70694</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ test]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_TS%20and%20tempo%20randomizer.lua</source>
</version>
</reapack>
<reapack name="mpl_VCV Rack tools.lua" type="script" desc="VCV Rack tools">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.08" author="MPL" time="2022-10-04T20:02:47Z">
<changelog><![CDATA[# fix mpl_Randomize VCVRack wire colors by source module.lua src dest invertion]]></changelog>
<source>https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Generate clock for last touched VCVRack bridge CC.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Generate%20clock%20for%20last%20touched%20VCVRack%20bridge%20CC.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Generate clock reset for last touched VCVRack bridge CC.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Generate%20clock%20reset%20for%20last%20touched%20VCVRack%20bridge%20CC.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Randomize VCVRack wire colors by destination module.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Randomize%20VCVRack%20wire%20colors%20by%20destination%20module.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Randomize VCVRack wire colors by source module.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Randomize%20VCVRack%20wire%20colors%20by%20source%20module.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Generate pitch CV for last touched VCVRack bridge CC from selected MIDI take.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Generate%20pitch%20CV%20for%20last%20touched%20VCVRack%20bridge%20CC%20from%20selected%20MIDI%20take.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Generate random impulses for last touched VCVRack bridge CC.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Generate%20random%20impulses%20for%20last%20touched%20VCVRack%20bridge%20CC.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Randomize VCVRack wire colors by source module row.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Randomize%20VCVRack%20wire%20colors%20by%20source%20module%20row.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Randomize VCVRack wire colors by destination module row.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Randomize%20VCVRack%20wire%20colors%20by%20destination%20module%20row.lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Randomize VCVRack module parameters (except Core).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Randomize%20VCVRack%20module%20parameters%20(except%20Core).lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Randomize VCVRack module parameters by 0.05V (except Core).lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Randomize%20VCVRack%20module%20parameters%20by%200.05V%20(except%20Core).lua</source>
<source main="main" file="mpl_VCV Rack tools/mpl_Generate random VCV patch from Fundamental modules.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/mpl_Generate%20random%20VCV%20patch%20from%20Fundamental%20modules.lua</source>
<source file="mpl_VCV Rack tools/json2lua.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/9f8784844c1cf8312ad34ef97dc5e4b1e071c9c2/Outdated%20unsupported/mpl_VCV%20Rack%20tools/json2lua.lua</source>
</version>
</reapack>
<reapack name="mpl_Warp grid to selected item stretch markers.lua" type="script" desc="test_Warp grid to selected item stretch markers">
<metadata>
<link rel="website">http://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.01" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ denominator ratio]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_Warp%20grid%20to%20selected%20item%20stretch%20markers.lua</source>
</version>
</reapack>
<reapack name="mpl_WiredChain (background).lua" type="script" desc="WiredChain">
<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 Script for handling FX chain data on selected track\par}
}
]]></description>
<link rel="website">https://forum.cockos.com/showthread.php?t=188335</link>
</metadata>
<version name="1.22" author="MPL" time="2023-04-02T10:13:49Z">
<changelog><![CDATA[# fix FX list matching pattern]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/Outdated%20unsupported/mpl_WiredChain%20(background).lua</source>
<source file="mpl_WiredChain_functions/mpl_WiredChain_GUI.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/Outdated%20unsupported/mpl_WiredChain_functions/mpl_WiredChain_GUI.lua</source>
<source file="mpl_WiredChain_functions/mpl_WiredChain_MOUSE.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/Outdated%20unsupported/mpl_WiredChain_functions/mpl_WiredChain_MOUSE.lua</source>
<source file="mpl_WiredChain_functions/mpl_WiredChain_data.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/Outdated%20unsupported/mpl_WiredChain_functions/mpl_WiredChain_data.lua</source>
<source file="mpl_WiredChain_functions/mpl_WiredChain_obj.lua">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/19252cffa1580a02c1268bb1e1ec47a825cf35ea/Outdated%20unsupported/mpl_WiredChain_functions/mpl_WiredChain_obj.lua</source>
</version>
</reapack>
</category>
<category name="Outdated unsupported/mpl_RS5k_manager_control">
<reapack name="mpl_Decrement 1 unit maximum Velocity (RS5k manager).lua" type="script" desc="Decrement 1 unit maximum Velocity (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%201%20unit%20maximum%20Velocity%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 1 unit minimum Velocity (RS5k manager).lua" type="script" desc="Decrement 1 unit minimum Velocity (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%201%20unit%20minimum%20Velocity%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 10ms attack (RS5k manager).lua" type="script" desc="Decrement 10ms attack (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%2010ms%20attack%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 10ms decay (RS5k manager).lua" type="script" desc="Decrement 10ms decay (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%2010ms%20decay%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 10ms loop start offset (RS5k manager).lua" type="script" desc="Decrement 10ms loop start offset (RS5k manager).lua">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%2010ms%20loop%20start%20offset%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 10ms noteoff release override (RS5k manager).lua" type="script" desc="Decrement 10ms noteoff release override (RS5k manager).lua">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%2010ms%20noteoff%20release%20override%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 10ms release (RS5k manager).lua" type="script" desc="Decrement 10ms release (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%2010ms%20release%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 10ms xfade (RS5k manager).lua" type="script" desc="Decrement 10ms xfade (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%2010ms%20xfade%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 1ms attack (RS5k manager).lua" type="script" desc="Decrement 1ms attack (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%201ms%20attack%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 1ms decay (RS5k manager).lua" type="script" desc="Decrement 1ms decay (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%201ms%20decay%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 1ms release (RS5k manager).lua" type="script" desc="Decrement 1ms release (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%201ms%20release%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement 1ms xfade (RS5k manager) .lua" type="script" desc="Decrement 1ms xfade (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%201ms%20xfade%20(RS5k%20manager)%20.lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement sample end offset (RS5k manager).lua" type="script" desc="Decrement sample end offset (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%20sample%20end%20offset%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement sample start offset (RS5k manager).lua" type="script" desc="Decrement sample start offset (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%20sample%20start%20offset%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Decrement sustain (RS5k manager).lua" type="script" desc="Decrement sustain (RS5k manager).lua">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Decrement%20sustain%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 1 unit maximum Velocity (RS5k manager).lua" type="script" desc="Increment 1 unit maximum Velocity (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%201%20unit%20maximum%20Velocity%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 1 unit minimum Velocity (RS5k manager).lua" type="script" desc="Increment 1 unit minimum Velocity (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%201%20unit%20minimum%20Velocity%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 10ms attack (RS5k manager).lua" type="script" desc="Increment 10ms attack (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%2010ms%20attack%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 10ms decay (RS5k manager).lua" type="script" desc="Increment 10ms decay (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%2010ms%20decay%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 10ms loop start offset (RS5k manager).lua" type="script" desc="Increment 10ms loop start offset (RS5k manager).lua">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%2010ms%20loop%20start%20offset%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 10ms noteoff release override (RS5k manager).lua" type="script" desc="Increment 10ms noteoff release override (RS5k manager).lua">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%2010ms%20noteoff%20release%20override%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 10ms release (RS5k manager).lua" type="script" desc="Increment 10ms release (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%2010ms%20release%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 10ms xfade (RS5k manager).lua" type="script" desc="Increment 10ms xfade (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%2010ms%20xfade%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 1ms attack (RS5k manager).lua" type="script" desc="Increment 1ms attack (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%201ms%20attack%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 1ms decay (RS5k manager).lua" type="script" desc="Increment 1ms decay (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%201ms%20decay%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 1ms release (RS5k manager).lua" type="script" desc="Increment 1ms release (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%201ms%20release%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment 1ms xfade (RS5k manager).lua" type="script" desc="Increment 1ms xfade (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%201ms%20xfade%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment sample end offset (RS5k manager).lua" type="script" desc="Increment sample end offset (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%20sample%20end%20offset%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment sample start offset (RS5k manager).lua" type="script" desc="Increment sample start offset (RS5k manager)">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%20sample%20start%20offset%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Increment sustain (RS5k manager).lua" type="script" desc="Increment sustain (RS5k manager).lua">
<metadata>
<link rel="website">https://forum.cockos.com/showthread.php?t=207971</link>
</metadata>
<version name="1.0" author="MPL" time="2023-04-01T20:35:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/MichaelPilyavskiy/ReaScript_Additional/raw/d3ab99aebc2bbae8b893cf20a225c54dd205170e/Outdated%20unsupported/mpl_RS5k_manager_control/mpl_Increment%20sustain%20(RS5k%20manager).lua</source>
</version>
</reapack>
<reapack name="mpl_Pan 1% left (RS5k manager).lua" type="script" desc="Pan 1% left (RS5k manager)">