forked from X-Raym/REAPER-ReaScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
2507 lines (2506 loc) · 202 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="3eb81c7640b89172bd9c056d58f440c44e59bc03" name="X-Raym Scripts">
<category name="Color">
<reapack name="X-Raym_Display color of selected tracks items and takes in the console.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Color/X-Raym_Display%20color%20of%20selected%20tracks%20items%20and%20takes%20in%20the%20console.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Select items with same color as mouse context (or first selected item) on selected tracks.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# no console message]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Color/X-Raym_Select%20items%20with%20same%20color%20as%20mouse%20context%20(or%20first%20selected%20item)%20on%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected takes or items color from their visible color.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Color/X-Raym_Set%20selected%20takes%20or%20items%20color%20from%20their%20visible%20color.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected tracks and takes color from HEX value.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-12T13:46:13Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Color/X-Raym_Set%20selected%20tracks%20and%20takes%20color%20from%20HEX%20value.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2016-11-07T18:04:36Z">
<changelog><![CDATA[# MacOS color fixed]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/d7f55cedb426b45a5ff8aa9c1099f606960a84be/Color/X-Raym_Set%20selected%20tracks%20and%20takes%20color%20from%20HEX%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected tracks and takes color.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[+ Initial Release
+ Working with RGB]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Color/X-Raym_Set%20selected%20tracks%20and%20takes%20color.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected tracks items and takes color from mouse context.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# no console message]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Color/X-Raym_Set%20selected%20tracks%20items%20and%20takes%20color%20from%20mouse%20context.lua</source>
</version>
</reapack>
</category>
<category name="Cursor">
<reapack name="X-Raym_Go to start of next region.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Go%20to%20start%20of%20next%20region.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Go to start of previous region.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Go%20to%20start%20of%20previous%20region.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to end of region under play or edit cursor and play.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Move%20edit%20cursor%20to%20end%20of%20region%20under%20play%20or%20edit%20cursor%20and%20play.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to end of region under play or edit cursor.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Move%20edit%20cursor%20to%20end%20of%20region%20under%20play%20or%20edit%20cursor.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to first selected item snap offset.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Move%20edit%20cursor%20to%20first%20selected%20item%20snap%20offset.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to next frame.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-04T01:22:54Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Cursor/X-Raym_Move%20edit%20cursor%20to%20next%20frame.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to previous frame.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-04T01:22:54Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Cursor/X-Raym_Move%20edit%20cursor%20to%20previous%20frame.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to start of region under play or edit cursor and play.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Move%20edit%20cursor%20to%20start%20of%20region%20under%20play%20or%20edit%20cursor%20and%20play.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to start of region under play or edit cursor.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Cursor/X-Raym_Move%20edit%20cursor%20to%20start%20of%20region%20under%20play%20or%20edit%20cursor.eel</source>
</version>
</reapack>
</category>
<category name="Envelopes">
<reapack name="X-Raym_Fade out master envelope at each selected items end.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Optimization]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/X-Raym_Fade%20out%20master%20envelope%20at%20each%20selected%20items%20end.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Randomize selected envelope points value.lua" type="script">
<version name="1.0" time="2015-03-13T00:25:43Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Envelopes/X-Raym_Randomize%20selected%20envelope%20points%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Round selected envelope points value.eel" type="script">
<version name="1.1" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[+ Pitch envelope are rounded at 0.5
+ Mute envelope are rounded at 0 or 1]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Envelopes/X-Raym_Round%20selected%20envelope%20points%20value.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Set or Offset selected envelope points value.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-08T19:02:04Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/0aee1a81ae9f9b5196a31d46d9f224031f819790/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="1.6" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader-scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="1.7" author="X-Raym" time="2016-07-18T13:21:30Z">
<changelog><![CDATA[+ User config setting for deactivating the pop up]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/1bef7f9ab697f9700d8f134d07d9e99b4268b6c2/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/Across Tracks">
<reapack name="X-Raym_Copy visible armed envelope of last touched track and paste to selected tracks.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-04-03T19:26:05Z">
<changelog><![CDATA[+ Select new points
+ Redraw envelope value at cursor pos in TCP (thanks to HeDa!)]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fa81bae94b5d5760cde4b76eca42774381f470d3/Envelopes/Across%20Tracks/X-Raym_Copy%20visible%20armed%20envelope%20of%20last%20touched%20track%20and%20paste%20to%20selected%20tracks.lua</source>
</version>
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Propper send support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/Across%20Tracks/X-Raym_Copy%20visible%20armed%20envelope%20of%20last%20touched%20track%20and%20paste%20to%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Copy visible armed envelope points in time selection of last touched track and insert in selected tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-21T14:29:43Z">
<changelog><![CDATA[+ Initial release
+ Redraw envelope value at cursor pos in TCP (thanks to HeDa!)]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fa81bae94b5d5760cde4b76eca42774381f470d3/Envelopes/Across%20Tracks/X-Raym_Copy%20visible%20armed%20envelope%20points%20in%20time%20selection%20of%20last%20touched%20track%20and%20insert%20in%20selected%20tracks.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Time selection bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/Across%20Tracks/X-Raym_Copy%20visible%20armed%20envelope%20points%20in%20time%20selection%20of%20last%20touched%20track%20and%20insert%20in%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Merge visible armed envelopes of selected track to selected tracks VCA like).lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/Across%20Tracks/X-Raym_Merge%20visible%20armed%20envelopes%20of%20selected%20track%20to%20selected%20tracks%20VCA%20like).lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/On Tracks">
<reapack name="X-Raym_Add envelope point on next point position from previous point value.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:48:02Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20next%20point%20position%20from%20previous%20point%20value.lua</source>
</version>
<version name="1.1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20next%20point%20position%20from%20previous%20point%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope point on previous point position from next point value.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:48:02Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20previous%20point%20position%20from%20next%20point%20value.lua</source>
</version>
<version name="1.1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20previous%20point%20position%20from%20next%20point%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at regular interval and set all points to linear.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20regular%20interval%20and%20set%20all%20points%20to%20linear.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from center to center preserving edges.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20center%20to%20center%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from max to max preserving edges.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20max%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from max to min preserving edges.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/1a0d13ebcef3efe32f18ef213aa70673dc2d6bbe/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20min%20preserving%20edges.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-03-23T12:44:21Z">
<changelog><![CDATA[+ Clean inside area]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20min%20preserving%20edges.lua</source>
</version>
<version name="1.2.3" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20min%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from max to min.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/1a0d13ebcef3efe32f18ef213aa70673dc2d6bbe/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20min.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-03-23T12:44:21Z">
<changelog><![CDATA[+ Clean inside area]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20min.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from min to max preserving edges.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/1a0d13ebcef3efe32f18ef213aa70673dc2d6bbe/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20max%20preserving%20edges.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-03-23T12:44:21Z">
<changelog><![CDATA[+ Clean inside area]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20max%20preserving%20edges.lua</source>
</version>
<version name="1.2.3" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20max%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from min to max.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/1a0d13ebcef3efe32f18ef213aa70673dc2d6bbe/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20max.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-03-23T12:44:21Z">
<changelog><![CDATA[+ Clean inside area]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20max.lua</source>
</version>
<version name="1.1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Time selection bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20max.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from min to min preserving edges.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20min%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from X to Y preserving edges on choosen envelopes.lua" type="script">
<version name="1.5" author="X-Raym" time="2016-01-26T18:35:46Z">
<changelog><![CDATA[+ Multitracks presets support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/892d7607835837001757c4ffb16d2ef08bbda73c/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20X%20to%20Y%20preserving%20edges%20on%20choosen%20envelopes.lua</source>
</version>
<version name="1.6" author="X-Raym" time="2016-03-01T13:49:11Z">
<changelog><![CDATA[+ Independant "Inside" Parameter for X and Y (priority on X)
# When prompt defaut envelope name is selected envelope one, if any.]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/072e3648eb005aec4f38e77e14752377c52a628c/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20X%20to%20Y%20preserving%20edges%20on%20choosen%20envelopes.lua</source>
</version>
<version name="1.6.1" author="X-Raym" time="2016-03-02T01:11:41Z">
<changelog><![CDATA[# Delete points in area]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/eff158ce1b5e200156fc99af1ece3ed30453e58a/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20X%20to%20Y%20preserving%20edges%20on%20choosen%20envelopes.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from XdB to XdB preserving edges on Volume envelope.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-17T23:52:31Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/680319c08f8d084aa62d1f1ac6797f52390ec8ed/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20XdB%20to%20XdB%20preserving%20edges%20on%20Volume%20envelope.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add point on envelopes at edit cursor.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:48:02Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20point%20on%20envelopes%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add points before and after selected points.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20points%20before%20and%20after%20selected%20points.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add points on envelopes at regions.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Add%20points%20on%20envelopes%20at%20regions.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Clean inactive and hidden envelopes.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Clean%20inactive%20and%20hidden%20envelopes.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Copy envelope points in time selection and paste at edit cursor preserving destination edges.lua" type="script">
<version name="1.2" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected track]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Copy%20envelope%20points%20in%20time%20selection%20and%20paste%20at%20edit%20cursor%20preserving%20destination%20edges.lua</source>
</version>
<version name="1.2.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Time selection bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Copy%20envelope%20points%20in%20time%20selection%20and%20paste%20at%20edit%20cursor%20preserving%20destination%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Copy envelope points in time selection and paste at edit cursor.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[# Time selection bug fix
+ Select new points, unselect the other
+ Redraw envelope value at cursor pos in TCP (thanks to HeDa!)]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Copy%20envelope%20points%20in%20time%20selection%20and%20paste%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Copy envelope values at edit cursor and insert at time selection.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Copy%20envelope%20values%20at%20edit%20cursor%20and%20insert%20at%20time%20selection.lua</source>
</version>
<version name="1.1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Time selection bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Copy%20envelope%20values%20at%20edit%20cursor%20and%20insert%20at%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Copy envelope values at edit cursor and paste at time selection.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Copy%20envelope%20values%20at%20edit%20cursor%20and%20paste%20at%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete envelope points at cursor position.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Delete%20envelope%20points%20at%20cursor%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete envelope points below consecutive threshold (envelope smoother).lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/On%20Tracks/X-Raym_Delete%20envelope%20points%20below%20consecutive%20threshold%20(envelope%20smoother).lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete envelope points preserving edges if time selection.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks
+ Facultative time selection]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fa81bae94b5d5760cde4b76eca42774381f470d3/Envelopes/On%20Tracks/X-Raym_Delete%20envelope%20points%20preserving%20edges%20if%20time%20selection.lua</source>
</version>
<version name="1.2.3" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Delete%20envelope%20points%20preserving%20edges%20if%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete envelope points.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[# Time selection bug fix
+ Selected envelope overides armed and visible envelope on selected tracks
+ Facultative time selection]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Delete%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete selected points on selected tracks visible armed envelope.lua" type="script">
<version name="1.0.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Time selection bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/On%20Tracks/X-Raym_Delete%20selected%20points%20on%20selected%20tracks%20visible%20armed%20envelope.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Hide envelope and set it as inactive.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Hide%20envelope%20and%20set%20it%20as%20inactive.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Invert envelope points values preserving edges if time selection.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks
+ Facultative time selection]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Invert%20envelope%20points%20values%20preserving%20edges%20if%20time%20selection.lua</source>
</version>
<version name="1.5" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Invert%20envelope%20points%20values%20preserving%20edges%20if%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Invert envelope points values.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">
<changelog><![CDATA[+ Selected envelope overides armed and visible envelope on selected tracks
+ Facultative time selection]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fbe50479209d6569725213d0310541f2bccedac4/Envelopes/On%20Tracks/X-Raym_Invert%20envelope%20points%20values.lua</source>
</version>
<version name="1.4" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Invert%20envelope%20points%20values.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize envelope points.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Quantize%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Replace envelope points by linear points at regular interval.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Replace%20envelope%20points%20by%20linear%20points%20at%20regular%20interval.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset envelope with default value.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Reset%20envelope%20with%20default%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset envelope with value at edit cursor.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Reset%20envelope%20with%20value%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset envelope with value estimated by regular intervals.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Reset%20envelope%20with%20value%20estimated%20by%20regular%20intervals.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select envelope points in visible armed envelope of selected tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Select%20envelope%20points%20in%20visible%20armed%20envelope%20of%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select redundant envelope points.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Select%20redundant%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set envelope as active and armed.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Set%20envelope%20as%20active%20and%20armed.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set flat points value in time selection preserving edges if time selection.lua" type="script">
<version name="1.6" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/On%20Tracks/X-Raym_Set%20flat%20points%20value%20in%20time%20selection%20preserving%20edges%20if%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set flat points value in time selection.lua" type="script">
<version name="1.6" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/On%20Tracks/X-Raym_Set%20flat%20points%20value%20in%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set or Offset envelope points preserving edges if time selection.lua" type="script">
<version name="1.6" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/On%20Tracks/X-Raym_Set%20or%20Offset%20envelope%20points%20preserving%20edges%20if%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set or Offset envelope points value.lua" type="script">
<version name="1.6" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader-scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/On%20Tracks/X-Raym_Set%20or%20Offset%20envelope%20points%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected tracks parameters values with envelopes values at edit cursor.lua" type="script">
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Set%20selected%20tracks%20parameters%20values%20with%20envelopes%20values%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Toggle certain envelopes properties.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-05-04T14:20:21Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/a2e5b83412df799806d7642928ad9b476d8cc480/Envelopes/On%20Tracks/X-Raym_Toggle%20certain%20envelopes%20properties.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Toggle envelope fader scaling.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Toggle%20envelope%20fader%20scaling.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Toggle envelopes active state property.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-05-04T14:06:19Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/160124aabc025c8a469201efe40da4b03c3d1f57/Envelopes/On%20Tracks/X-Raym_Toggle%20envelopes%20active%20state%20property.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Trim selected tracks parameters values with envelopes values at edit cursor.lua" type="script">
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Envelopes/On%20Tracks/X-Raym_Trim%20selected%20tracks%20parameters%20values%20with%20envelopes%20values%20at%20edit%20cursor.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/Takes">
<reapack name="spk77_Create take pan envelope from take pan.eel" type="script">
<version name="0.2014.11.20" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/Takes/spk77_Create%20take%20pan%20envelope%20from%20take%20pan.eel</source>
</version>
</reapack>
<reapack name="spk77_Pan active takes randomly (normal distribution) with GUI.eel" type="script">
<version name="0.2014.11.23" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/Takes/spk77_Pan%20active%20takes%20randomly%20(normal%20distribution)%20with%20GUI.eel</source>
</version>
</reapack>
<reapack name="spk77_Pan active takes randomly (normal distribution).eel" type="script">
<version name="0.2014.11.20" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/Takes/spk77_Pan%20active%20takes%20randomly%20(normal%20distribution).eel</source>
</version>
</reapack>
<reapack name="X-Raym_Create take pitch envelope (random points - with GUI).eel" type="script">
<version name="0.2014.11.23" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/Takes/X-Raym_Create%20take%20pitch%20envelope%20(random%20points%20-%20with%20GUI).eel</source>
</version>
</reapack>
<reapack name="X-Raym_Pan active takes randomly (normal distribution) with GUI - OneSeed.eel" type="script">
<version name="0.2014.11.23" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/Takes/X-Raym_Pan%20active%20takes%20randomly%20(normal%20distribution)%20with%20GUI%20-%20OneSeed.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Pan active takes randomly (normal distribution)_OneSeed.eel" type="script">
<version name="0.2014.11.20" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/Takes/X-Raym_Pan%20active%20takes%20randomly%20(normal%20distribution)_OneSeed.eel</source>
</version>
</reapack>
</category>
<category name="Functions">
<reapack name="spk77_Button colors.lua" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/spk77_Button%20colors.lua</source>
</version>
</reapack>
<reapack name="spk77_class.lua" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/spk77_class.lua</source>
</version>
</reapack>
<reapack name="spk77_Get max peak val and pos from take_function.lua" type="script">
<version name="1.0" time="2016-02-17T00:57:18Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/fd87147195f732f9af4e2e32eae610cc8d4f1a9f/Functions/spk77_Get%20max%20peak%20val%20and%20pos%20from%20take_function.lua</source>
</version>
</reapack>
<reapack name="spk77_Get take RMS.lua" type="script">
<version name="1.0" time="2016-02-17T00:57:18Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/d4f4563f691c3b235c2802f2f95d72d9dc59f044/Functions/spk77_Get%20take%20RMS.lua</source>
</version>
</reapack>
<reapack name="spk77_Save table to file and load table from file_functions.lua" type="script">
<version name="1.0" time="2016-06-07T10:58:21Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/e7e04539f9408f52107bdb5976532ffb469bb1a4/Functions/spk77_Save%20table%20to%20file%20and%20load%20table%20from%20file_functions.lua</source>
</version>
</reapack>
<reapack name="spk77_slider class.lua" type="script">
<version name="0.1" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/spk77_slider%20class.lua</source>
</version>
</reapack>
<reapack name="spk_slider_class.eel" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Mod by X-Raym]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/spk_slider_class.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Functions - console debug messages.eel" type="script">
<version name="1.7" author="X-Raym" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/X-Raym_Functions%20-%20console%20debug%20messages.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Functions - console debug messages.lua" type="script">
<version name="1.7" author="X-Raym" time="2015-03-02T21:55:54Z">
<changelog><![CDATA[# Lua conversion. Since this point, the EEL and LUA version of the script will evolves together. Many thanks to Heda for string.len!]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Functions/X-Raym_Functions%20-%20console%20debug%20messages.lua</source>
</version>
</reapack>
</category>
<category name="FX">
<reapack name="X-Raym_Insert FX.lua" type="script" desc="Insert FX">
<version name="1.0" author="X-Raym" time="2015-12-24T16:51:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/df11abb2149f9df1875a3a4a2e4a365593270b26/FX/X-Raym_Insert%20FX.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Leave open only focused FX and minimize the others.lua" type="script" desc="Leave open only focused FX and minimize the others">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/FX/X-Raym_Leave%20open%20only%20focused%20FX%20and%20minimize%20the%20others.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2016-07-16T14:32:20Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/4cde8cbd1d9f870cff255f333ce5095af0d0fe35/FX/X-Raym_Leave%20open%20only%20focused%20FX%20and%20minimize%20the%20others.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected tracks FX parameter value from last focused FX last touch parameter.lua" type="script" desc="Set selected tracks FX parameter value from last focused FX last touch parameter">
<metadata>
<link rel="screenshot">http://i.giphy.com/3oEdv7plpUl2dmlOcU.gif</link>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/FX/X-Raym_Set%20selected%20tracks%20FX%20parameter%20value%20from%20last%20focused%20FX%20last%20touch%20parameter.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2016-07-16T14:32:20Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/4cde8cbd1d9f870cff255f333ce5095af0d0fe35/FX/X-Raym_Set%20selected%20tracks%20FX%20parameter%20value%20from%20last%20focused%20FX%20last%20touch%20parameter.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected tracks FX parameters values from last focused FX.lua" type="script" desc="Set selected tracks FX parameters values from last focused FX">
<metadata>
<link rel="screenshot">http://i.giphy.com/l41lY1RKDcgF7ibkY.gif</link>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/FX/X-Raym_Set%20selected%20tracks%20FX%20parameters%20values%20from%20last%20focused%20FX.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2016-07-16T14:32:20Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/4cde8cbd1d9f870cff255f333ce5095af0d0fe35/FX/X-Raym_Set%20selected%20tracks%20FX%20parameters%20values%20from%20last%20focused%20FX.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Toggle all FX except those with (ON) and (OFF) suffixes.eel" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/FX/X-Raym_Toggle%20all%20FX%20except%20those%20with%20(ON)%20and%20(OFF)%20suffixes.eel</source>
</version>
</reapack>
</category>
<category name="Items Editing">
<reapack name="spk77_Glue selected items preserving names.eel" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/spk77_Glue%20selected%20items%20preserving%20names.eel</source>
</version>
</reapack>
<reapack name="spk77_Quantize items to grid using item snap offset.eel" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/spk77_Quantize%20items%20to%20grid%20using%20item%20snap%20offset.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Align selected items across tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Align%20selected%20items%20across%20tracks.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-12-28T17:39:15Z">
<changelog><![CDATA[+ Track under mouse as reference]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/ef759f5e865c835723680b3eda42e82a6b787c94/Items%20Editing/X-Raym_Align%20selected%20items%20across%20tracks.lua</source>
</version>
<version name="1.2" author="X-Raym" time="2016-01-06T00:28:57Z">
<changelog><![CDATA[+ Preserve grouping if groups active. Treat first selected item (in position) in each group as group leader (other are ignored during the alignement).]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Align%20selected%20items%20across%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Convert selected looped items into independent items.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Convert%20selected%20looped%20items%20into%20independent%20items.eel</source>
</version>
<version name="1.1" author="X-Raym" time="2016-11-19T12:12:15Z">
<changelog><![CDATA[# Remove dependency and debug infos]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/4131c5a97d6fb22f43518e9f46e8087c007f6641/Items%20Editing/X-Raym_Convert%20selected%20looped%20items%20into%20independent%20items.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Convert selected looped items into items and pooled midi.eel" type="script">
<version name="0.8" author="X-Raym" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Convert%20selected%20looped%20items%20into%20items%20and%20pooled%20midi.eel</source>
</version>
<version name="1.1" author="X-Raym" time="2016-11-19T12:12:15Z">
<changelog><![CDATA[# Remove dependency and debug infos]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/4131c5a97d6fb22f43518e9f46e8087c007f6641/Items%20Editing/X-Raym_Convert%20selected%20looped%20items%20into%20items%20and%20pooled%20midi.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Copy selected items and paste at mouse position.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Snap]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Copy%20selected%20items%20and%20paste%20at%20mouse%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Create seamless loops from selected items sections inside time selection.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-04-01T16:09:06Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/f0f1244b2902726a4f0d1b628d0848d59311ac8f/Items%20Editing/X-Raym_Create%20seamless%20loops%20from%20selected%20items%20sections%20inside%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete selected items and ripple edit adjacent items.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Delete%20selected%20items%20and%20ripple%20edit%20adjacent%20items.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Delete selected items sections in time selection if cursor enter time selection and ripple new items.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Delete%20selected%20items%20sections%20in%20time%20selection%20if%20cursor%20enter%20time%20selection%20and%20ripple%20new%20items.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Expand first selected item per track to end of last selected ones and delete inbetween ones.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Expand%20first%20selected%20item%20per%20track%20to%20end%20of%20last%20selected%20ones%20and%20delete%20inbetween%20ones.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Expand first selected item to next item end.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Expand%20first%20selected%20item%20to%20next%20item%20end.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Expand item under mouse to next item end.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Expand%20item%20under%20mouse%20to%20next%20item%20end.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Expand left edge of item under mouse to edit cursor keeping snap offset position and apply to other selected items.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-23T12:38:07Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Items%20Editing/X-Raym_Expand%20left%20edge%20of%20item%20under%20mouse%20to%20edit%20cursor%20keeping%20snap%20offset%20position%20and%20apply%20to%20other%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Expand selected items length to start and end of their source.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Expand%20selected%20items%20length%20to%20start%20and%20end%20of%20their%20source.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Expand selected items length to the next item position if close enough.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Expand%20selected%20items%20length%20to%20the%20next%20item%20position%20if%20close%20enough.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Explode multi channel items on two tracks without render (stereo).lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Better restorations]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Explode%20multi%20channel%20items%20on%20two%20tracks%20without%20render%20(stereo).lua</source>
</version>
</reapack>
<reapack name="X-Raym_Glue selected items independently.eel" type="script">
<version name="0.9" author="X-Raym" time="2015-12-24T16:57:47Z">
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Glue%20selected%20items%20independently.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move item position of item under mouse to edit cursor according to ripple state preserving end.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20item%20position%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state%20preserving%20end.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move item position of item under mouse to edit cursor according to ripple state.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20item%20position%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move items to start preserving groups timing relative positions.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-11T14:55:43Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/5cedb72dcf0a16ff52ea96c6dbdae82bc713eb0d/Items%20Editing/X-Raym_Move%20items%20to%20start%20preserving%20groups%20timing%20relative%20positions.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move left edge and content of item under mouse to edit cursor according to ripple state.eel" type="script">
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Better ripple]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20left%20edge%20and%20content%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move left edge of item under mouse to edit cursor according to ripple state.eel" type="script">
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Better ripple]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20left%20edge%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move right edge and content of item under mouse to edit cursor according to ripple state.eel" type="script">
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Better ripple]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20right%20edge%20and%20content%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move right edge of item under mouse to edit cursor according to ripple state.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-24T00:00:58Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/3a040756d0e35ea0781036b70189d68276bf94c0/Items%20Editing/X-Raym_Move%20right%20edge%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state.eel</source>
</version>
<version name="1.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Better ripple]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20right%20edge%20of%20item%20under%20mouse%20to%20edit%20cursor%20according%20to%20ripple%20state.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Move selected items position left according to their snap offset.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Move%20selected%20items%20position%20left%20according%20to%20their%20snap%20offset.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move selected items to end of previous items on all visible tracks.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Limit with marker name "LIMIT"]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Move%20selected%20items%20to%20end%20of%20previous%20items%20on%20all%20visible%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move selected items to next item on all visible tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Move%20selected%20items%20to%20next%20item%20on%20all%20visible%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move selected items to next item on their track.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Move%20selected%20items%20to%20next%20item%20on%20their%20track.lua</source>
</version>
</reapack>
<reapack name="X-Raym_mpl_Expand selected takes length and rate to edit cursor and propagate to other item in selection.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_mpl_Expand%20selected%20takes%20length%20and%20rate%20to%20edit%20cursor%20and%20propagate%20to%20other%20item%20in%20selection.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Multiply selected items length by two avoiding overlapping with next item.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-04-06T21:06:33Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/2a42303362aadeb4b5c89f36e6fc1780854b32a2/Items%20Editing/X-Raym_Multiply%20selected%20items%20length%20by%20two%20avoiding%20overlapping%20with%20next%20item.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize selected items start and end to closest frame inside them.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Quantize%20selected%20items%20start%20and%20end%20to%20closest%20frame%20inside%20them.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize selected items start and end to closest frame.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Quantize%20selected%20items%20start%20and%20end%20to%20closest%20frame.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize selected items to closest marker position.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T01:40:30Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/d95052d2ce9b8a71d65b49278277ca831957e71b/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20closest%20marker%20position.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-12-30T16:57:32Z">
<changelog><![CDATA[+ Preserve relative position of items in groups (considering min pos of selected items in groups as referance, and propagate offset on al items in groups, even non selected ones.]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20closest%20marker%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize selected items to closest region start.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T01:36:25Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/a8380797f68c98305479d5e05a49d3a91e7477c2/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20closest%20region%20start.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2015-12-30T16:50:27Z">
<changelog><![CDATA[+ Preserve relative position of items in groups (considering min pos of selected items in groups as referance, and propagate offset on al items in groups, even non selected ones.]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20closest%20region%20start.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize selected items to next marker position.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-13T23:55:07Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20next%20marker%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Quantize selected items to previous marker position.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-13T23:55:07Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20previous%20marker%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Replace similar MIDI takes by pools.lua" type="script" desc="Replace similar MIDI Takes by pools">
<metadata>
<link rel="screenshot">http://i.imgur.com/N2fcs9k.gifv</link>
</metadata>
<version name="1.0" author="X-Raym" time="2017-02-07T16:05:36Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/3eb81c7640b89172bd9c056d58f440c44e59bc03/Items%20Editing/X-Raym_Replace%20similar%20MIDI%20takes%20by%20pools.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set item under mouse start and end to items selection.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-04-01T16:09:06Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/f0f1244b2902726a4f0d1b628d0848d59311ac8f/Items%20Editing/X-Raym_Set%20item%20under%20mouse%20start%20and%20end%20to%20items%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected takes playrate keeping snap offset position and adjusting length.lua" type="script" desc="Set selected takes playrate keeping snap offset position and adjusting length">
<metadata>
<link rel="screenshot">http://i.imgur.com/O02MKFr.gifv</link>
</metadata>
<version name="1.0" author="X-Raym" time="2017-01-25T23:55:35Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/458b49c024d33ba5bbcb6b5bcad6db6a03d0011c/Items%20Editing/X-Raym_Set%20selected%20takes%20playrate%20keeping%20snap%20offset%20position%20and%20adjusting%20length.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Shuffle order of selected items columns keeping snap offset positions and parent tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Shuffle%20order%20of%20selected%20items%20columns%20keeping%20snap%20offset%20positions%20and%20parent%20tracks.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2016-01-11T14:55:43Z">
<changelog><![CDATA[+ Preserve grouping if groups active. Treat first selected item (in position) in each group as group leader (other are ignored during the alignement).]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Shuffle%20order%20of%20selected%20items%20columns%20keeping%20snap%20offset%20positions%20and%20parent%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Shuffle order of selected items keeping snap offset positions and parent tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Shuffle%20order%20of%20selected%20items%20keeping%20snap%20offset%20positions%20and%20parent%20tracks.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2016-01-11T15:17:19Z">
<changelog><![CDATA[+ Preserve grouping if groups active. Treat first selected item (in position) in each group as group leader (other are ignored during the alignement).]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Shuffle%20order%20of%20selected%20items%20keeping%20snap%20offset%20positions%20and%20parent%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Snap selected items to region or marker with same name as their active take.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Snap%20selected%20items%20to%20region%20or%20marker%20with%20same%20name%20as%20their%20active%20take.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Snap selected items to the previous item end on their track.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Snap%20selected%20items%20to%20the%20previous%20item%20end%20on%20their%20track.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Sort selected items columns order by item names alphabetically keeping snap offset positions per track.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Sort%20selected%20items%20columns%20order%20by%20item%20names%20alphabetically%20keeping%20snap%20offset%20positions%20per%20track.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Sort selected items columns order by item notes alphabetically keeping snap offset positions per tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Sort%20selected%20items%20columns%20order%20by%20item%20notes%20alphabetically%20keeping%20snap%20offset%20positions%20per%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Sort selected items order by item notes alphabetically keeping snap offset positions per tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Sort%20selected%20items%20order%20by%20item%20notes%20alphabetically%20keeping%20snap%20offset%20positions%20per%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Sort selected items order by takes names alphabetically keeping snap offset positions per tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Sort%20selected%20items%20order%20by%20takes%20names%20alphabetically%20keeping%20snap%20offset%20positions%20per%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Split selected items according to items on first selected track and keep new items at spaces.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Works on selected multiple items]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/05876b1a4b12a54eadf98e1a05d7875071de7dde/Items%20Editing/X-Raym_Split%20selected%20items%20according%20to%20items%20on%20first%20selected%20track%20and%20keep%20new%20items%20at%20spaces.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Split selected items according to items on selected tracks.lua" type="script">
<version name="1.1" author="X-Raym" time="2016-04-19T14:36:32Z">
<changelog><![CDATA[+ Works with multiple tracks selected
# Refactoring]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/1f28f486d6fb8b71aac4de1ac830ee51f04cd21d/Items%20Editing/X-Raym_Split%20selected%20items%20according%20to%20items%20on%20selected%20tracks.lua</source>
</version>
<version name="1.1.1" author="X-Raym" time="2016-05-11T22:41:19Z">
<changelog><![CDATA[+ Bug fix]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/8c4644d4edf7a29c611fd7573816431f651b3850/Items%20Editing/X-Raym_Split%20selected%20items%20according%20to%20items%20on%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Split selected items every X seconds intervals.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-19T13:24:13Z">
<changelog><![CDATA[(2015-12-19)
+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/28523299ecadb248aab268ba2883e7904662828a/Items%20Editing/X-Raym_Split%20selected%20items%20every%20X%20seconds%20intervals.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Stretch selected items with new length.lua" type="script" desc="Stretch selected items with new length">
<metadata>
<link rel="screenshot">http://i.imgur.com/39zHx2j.gifv</link>
</metadata>
<version name="1.0" author="X-Raym" time="2016-11-26T14:15:18Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/6b732070713b06a1601e03c3d19a96bfe1e0a50f/Items%20Editing/X-Raym_Stretch%20selected%20items%20with%20new%20length.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Stutter edit selected media items.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-02-29T23:09:52Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/X-Raym/REAPER-ReaScripts/raw/02706a9a8e02085650cb6cf761ed66e2b015a350/Items%20Editing/X-Raym_Stutter%20edit%20selected%20media%20items.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Trim items by common time section in selection columns.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>