forked from X-Raym/REAPER-ReaScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
2547 lines (2546 loc) · 183 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="02706a9a8e02085650cb6cf761ed66e2b015a350">
<category name="Functions">
<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[(2015-02-24)
# 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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/223c042d491a56d32c0c38627c7f8cfca14ca1f9/Functions/X-Raym_Functions%20-%20console%20debug%20messages.lua</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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/X-Raym_Functions%20-%20console%20debug%20messages.eel</source>
</version>
</reapack>
<reapack name="spk77_Button colors.lua" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-03-03)
+ Initial release]]></changelog>
<source platform="all">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[(2015-03-03)
+ Initial release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/spk77_class.lua</source>
</version>
</reapack>
<reapack name="spk77_slider class.lua" type="script">
<version name="0.1" time="2015-12-24T16:57:47Z">
<source platform="all">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[(2015-03-03)
+ Mod by X-Raym]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Functions/spk_slider_class.eel</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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/d4f4563f691c3b235c2802f2f95d72d9dc59f044/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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/d4f4563f691c3b235c2802f2f95d72d9dc59f044/Functions/spk77_Get%20take%20RMS.lua</source>
</version>
</reapack>
</category>
<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[(2015-15-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Color/X-Raym_Display%20color%20of%20selected%20tracks%20items%20and%20takes%20in%20the%20console.eel</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[(2015-15-02)
+ Initial Release
+ Working with RGB]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Color/X-Raym_Set%20selected%20tracks%20and%20takes%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[(2015-03-12)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/e7adfcade0bc55be77558dc7e1bf24905c727658/Color/X-Raym_Set%20selected%20tracks%20and%20takes%20color%20from%20HEX%20value.lua</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[(2015-04-13)
# no console message]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-04-05)
+ Initial Release]]></changelog>
<source platform="all">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 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[(2015-04-13)
# no console message]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Color/X-Raym_Set%20selected%20tracks%20items%20and%20takes%20color%20from%20mouse%20context.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes">
<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[(2015-02-26)
+ Pitch envelope are rounded at 0.5
+ Mute envelope are rounded at 0 or 1]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/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[(2015-03-08)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/d918c860221ec1c6fc460719e9f55ee9c4cfad79/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[(2015-09-09)
+ Fader-scaling support]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/a2b1e53b87b733c5f99574a2fdb052dbdb8e168c/Envelopes/X-Raym_Randomize%20selected%20envelope%20points%20value.lua</source>
</version>
</reapack>
<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[(2015-06-24)
# Optimization]]></changelog>
<source platform="all">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>
</category>
<category name="Items Editing">
<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[(2013-03-23)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/7d65f79bd3d59ab7e567c9b6c0e870b8bb6d8009/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_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[(2013-03-23)
+ Initial Release]]></changelog>
<source platform="all">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[(2015-03-25)
# Better ripple]]></changelog>
<source platform="all">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_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[(2015-03-14)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/03eea462b498d2203caaf8f10dbe0927410321c9/Items%20Editing/X-Raym_Multiply%20selected%20items%20length%20by%20two%20avoiding%20overlapping%20with%20next%20item.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Expand selected items length to the next item position.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-05-25T12:39:24Z">
<changelog><![CDATA[(2015-03-20)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/d83037c95bd662d8d3eb0750c71f4c242ea67ba8/Items%20Editing/X-Raym_Expand%20selected%20items%20length%20to%20the%20next%20item%20position.eel</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-19-12)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/36447db404f03d0525658889fc1fcd75d744e48d/Items%20Editing/X-Raym_Split%20selected%20items%20every%20X%20seconds%20intervals.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[(2015-12-24)
+ Initial release]]></changelog>
<source platform="all">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[(2015-12-24)
+ 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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/f1ea204d7ed2b56a2e9065622613cfc672151aaf/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20closest%20region%20start.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[(2015-12-24)
+ Initial release]]></changelog>
<source platform="all">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[(2015-12-24)
+ 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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/ed63cb3061e62c533fa558070c19f6603f9acddb/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20closest%20marker%20position.lua</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[(2015-05-19)
+ Initial Release]]></changelog>
<source platform="all">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">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/7fd1f935477df186998d853cca1f58212b280ef7/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[(2016-01-05)
+ 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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/8b3629982daa4c3c1fc957c85a368028e7c82b89/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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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 platform="all">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>
</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[(2015-05-08)
+ Snap]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Copy%20selected%20items%20and%20paste%20at%20mouse%20position.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[(2015-12-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-12-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-25-06)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-31-07)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-31-07)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Expand%20item%20under%20mouse%20to%20next%20item%20end.lua</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[(2015-04-11)
+ Initial Release]]></changelog>
<source platform="all">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[(2015-08-23)
+ Initial Release]]></changelog>
<source platform="all">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[(2015-05-08)
# Better restorations]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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 platform="all">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[(2013-03-25)
+ Initial Release]]></changelog>
<source platform="all">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[(2013-03-25)
+ Initial Release]]></changelog>
<source platform="all">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 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[(2015-03-25)
# Better ripple]]></changelog>
<source platform="all">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[(2015-03-25)
# Better ripple]]></changelog>
<source platform="all">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[(2015-03-25)
# Better ripple]]></changelog>
<source platform="all">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 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[(2015-12-14)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-09-10)
+ Limit with marker name "LIMIT"]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-09-09)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-09-09)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Move%20selected%20items%20to%20next%20item%20on%20their%20track.lua</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[(2015-05-28)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-05-28)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Quantize%20selected%20items%20start%20and%20end%20to%20closest%20frame.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[(2015-06-09)
+ Initial Release]]></changelog>
<source platform="all">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[(2016-01-07)
+ 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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/a6aebe5e749936cd83445b76a870229282b67f45/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[(2015-05-11)
+ Initial Release]]></changelog>
<source platform="all">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[(2016-01-07)
+ 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 platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/2eef7e3700f8cd197dbb05ce50235277c81ef417/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[(2015-09-13)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-03-29)
+ Initial Release]]></changelog>
<source platform="all">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[(2015-06-09)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-06-09)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-05-29)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-05-29)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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[(2015-04-01)
+ Works on selected multiple items]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/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_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[(2015-10-20)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Trim%20items%20by%20common%20time%20section%20in%20selection%20columns.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Trim left edge of item under mouse or the next one without changing fade-in end.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-08-11)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Trim%20left%20edge%20of%20item%20under%20mouse%20or%20the%20next%20one%20without%20changing%20fade-in%20end.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Trim left edge of item under mouse to edit cursor without changing fade-in end.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-16)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Trim%20left%20edge%20of%20item%20under%20mouse%20to%20edit%20cursor%20without%20changing%20fade-in%20end.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Trim right edge of item under mouse to edit cursor without changing fade-out start.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-16)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Editing/X-Raym_Trim%20right%20edge%20of%20item%20under%20mouse%20to%20edit%20cursor%20without%20changing%20fade-out%20start.eel</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[(2015-29-05)
+ Initial Release]]></changelog>
<source platform="all">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="spk77_Glue selected items preserving names.eel" type="script">
<version name="1.0" author="spk77" time="2015-12-24T16:57:47Z">
<source platform="all">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[(2015-02-10)
+ Initial release]]></changelog>
<source platform="all">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_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[(2016-01-11)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/a6aebe5e749936cd83445b76a870229282b67f45/Items%20Editing/X-Raym_Move%20items%20to%20start%20preserving%20groups%20timing%20relative%20positions.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[(2016-01-14)
+ Initial release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/26fbe2feb20984a52e41c1cd8c18227228c12a61/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[(2016-01-14)
+ Initial release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/26fbe2feb20984a52e41c1cd8c18227228c12a61/Items%20Editing/X-Raym_Quantize%20selected%20items%20to%20previous%20marker%20position.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[(2016-02-29)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/b75bad270621c7f302c7de566b7b27fc27dadb6f/Items%20Editing/X-Raym_Stutter%20edit%20selected%20media%20items.lua</source>
</version>
</reapack>
</category>
<category name="Items Properties">
<reapack name="X-Raym_Pan selected takes from -x to +x.eel" type="script">
<version name="1.1" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[(2015-02-25)
# Overlaping values corrected]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Items%20Properties/X-Raym_Pan%20selected%20takes%20from%20-x%20to%20+x.eel</source>
</version>
<version name="1.2" author="X-Raym" time="2015-03-03T21:47:53Z">
<changelog><![CDATA[(2015-03-03)
# Now in real time, thanks to HeDa!]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/08fe4d4a4f85f65036b1f483dd37f0e700cc82fe/Items%20Properties/X-Raym_Pan%20selected%20takes%20from%20-x%20to%20+x.eel</source>
</version>
<version name="1.2.1" author="X-Raym" time="2015-03-04T14:12:21Z">
<changelog><![CDATA[(2015-03-04)
# Mac OS display bugfix
# Sliders alignement based on center 0]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bb1c0d4606827c2194cf7f6aaa0c6bb9c28bae10/Items%20Properties/X-Raym_Pan%20selected%20takes%20from%20-x%20to%20+x.eel</source>
</version>
<version name="1.2.2" author="X-Raym" time="2015-03-11T13:25:06Z">
<changelog><![CDATA[(2015-03-11)
# Bug fix]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/175224f73717d3d30bbf9f19b995db6ebfe0b5a5/Items%20Properties/X-Raym_Pan%20selected%20takes%20from%20-x%20to%20+x.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Pan selected takes from left to right.eel" type="script">
<version name="1.1" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[(2015-02-20)
+ Pan to left if one item is selected only]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Items%20Properties/X-Raym_Pan%20selected%20takes%20from%20left%20to%20right.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Pan selected takes from right to left.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[(2015-02-20)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Items%20Properties/X-Raym_Pan%20selected%20takes%20from%20right%20to%20left.eel</source>
</version>
</reapack>
<reapack name="Viente_X-Raym_BPM Converter.lua" type="script">
<version name="1.0.6" author="Viente, X-Raym" time="2015-12-24T16:51:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/df11abb2149f9df1875a3a4a2e4a365593270b26/Items%20Properties/Viente_X-Raym_BPM%20Converter.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add stretch markers to selected items at grid divisions.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-11-26)
+ Initial release. ]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Add%20stretch%20markers%20to%20selected%20items%20at%20grid%20divisions.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Add stretch markers to selected items at tempo markers.eel" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2014-04-16)
# Work with all takes. ]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Add%20stretch%20markers%20to%20selected%20items%20at%20tempo%20markers.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Apply volume of previous item on track to selected items.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-10-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Apply%20volume%20of%20previous%20item%20on%20track%20to%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Display TagLib metadatas of first selected item active take.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-12)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Display%20TagLib%20metadatas%20of%20first%20selected%20item%20active%20take.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Exclude items with or without fades from selection.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-07-04)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Exclude%20items%20with%20or%20without%20fades%20from%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Group selected items according to their order in selection per track.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-26)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Group%20selected%20items%20according%20to%20their%20order%20in%20selection%20per%20track.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Keep selected items with X channels only.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-25)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Keep%20selected%20items%20with%20X%20channels%20only.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Keep selected only X items randomly.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Keep%20selected%20only%20X%20items%20randomly.lua</source>
</version>
</reapack>
<reapack name="X-Raym_List all audio takes paths in the console.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-12-16)
+ Minimalist report
+ Possibility to delete duplicates sources
+ User Config Area
# All items real support (1.0 had a 250 items limitations)]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_List%20all%20audio%20takes%20paths%20in%20the%20console.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move selected items snap offset to next cue.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-09)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Move%20selected%20items%20snap%20offset%20to%20next%20cue.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move selected items snap offset to previous cue.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-09)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Move%20selected%20items%20snap%20offset%20to%20previous%20cue.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Multiply selected items rate by X and adjust length.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-11-25)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Multiply%20selected%20items%20rate%20by%20X%20and%20adjust%20length.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Nudge active takes volume randomly (normal distribution) with GUI.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Nudge%20active%20takes%20volume%20randomly%20(normal%20distribution)%20with%20GUI.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Nudge selected items volume +0.1db.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Nudge%20selected%20items%20volume%20+0.1db.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Nudge selected items volume +0.5db.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Nudge%20selected%20items%20volume%20+0.5db.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Nudge selected items volume -0.1db.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Nudge%20selected%20items%20volume%20-0.1db.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Nudge selected items volume -0.5db.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Nudge%20selected%20items%20volume%20-0.5db.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Propagate items selection to all similary-named active takes on track.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-22)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Propagate%20items%20selection%20to%20all%20similary-named%20active%20takes%20on%20track.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Propagate selected items FX to all items with same active take name.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-22)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Propagate%20selected%20items%20FX%20to%20all%20items%20with%20same%20active%20take%20name.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Randomize take pitch (normal distribution with GUI).eel" type="script">
<version name="0.2014.11.23" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Randomize%20take%20pitch%20(normal%20distribution%20with%20GUI).eel</source>
</version>
</reapack>
<reapack name="X-Raym_Randomize take playback rate (normal distribution).eel" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-12)
+ Randomize from snap offset position
+ Support for fades]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Randomize%20take%20playback%20rate%20(normal%20distribution).eel</source>
</version>
</reapack>
<reapack name="X-Raym_Randomize take playback rate.eel" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-12)
+ Randomize from snap offset position
+ Support for fades]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Randomize%20take%20playback%20rate.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Rename selected items active takes from REAPER MIDI notes to Kontakt notes.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-10-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Rename%20selected%20items%20active%20takes%20from%20REAPER%20MIDI%20notes%20to%20Kontakt%20notes.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset item snap offset.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Reset%20item%20snap%20offset.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Reset selected items active take stretch markers position.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-08-31)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Reset%20selected%20items%20active%20take%20stretch%20markers%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset selected items auto-fades.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-29)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Reset%20selected%20items%20auto-fades.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset stretch marker under mouse position.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-01)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Reset%20stretch%20marker%20under%20mouse%20position.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2016-01-11T11:56:23Z">
<changelog><![CDATA[(2016-01-11)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/5f8681d32b6e9dd8fe59cd078ed07913f86333cc/Items%20Properties/X-Raym_Reset%20stretch%20marker%20under%20mouse%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Reset take playback rate from snap offset.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-12)
+ Randomize from snap offset position
+ Support for fades]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Reset%20take%20playback%20rate%20from%20snap%20offset.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Round selected items volume - one decimal.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Round%20selected%20items%20volume%20-%20one%20decimal.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Search and replace in selected active takes names.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-12-10)
+ User Config Area]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Search%20and%20replace%20in%20selected%20active%20takes%20names.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select all items below length threshold on selected tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-11-25)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Select%20all%20items%20below%20length%20threshold%20on%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select items with same source as first selected item.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-08-14)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Select%20items%20with%20same%20source%20as%20first%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set item under mouse snap offset at mouse cursor position.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-24-06)
+ Snap to stretch marker if mouse over it]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Set%20item%20under%20mouse%20snap%20offset%20at%20mouse%20cursor%20position.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set or offset selected takes pan.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-12-07)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Set%20or%20offset%20selected%20takes%20pan.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected items fade-in fade-out length.lua" type="script">
<version name="1.3.2" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-07-07)
# translations/typos fixes thanks to daxliniere]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Set%20selected%20items%20fade-in%20fade-out%20length.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected items fade-in to snap offset.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-26)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Set%20selected%20items%20fade-in%20to%20snap%20offset.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected items fade-out to snap offset.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-26)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Set%20selected%20items%20fade-out%20to%20snap%20offset.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected items sources TagLib metadatas.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-13)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Set%20selected%20items%20sources%20TagLib%20metadatas.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Snap stretch marker under mouse to closest grid line.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-23)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Snap%20stretch%20marker%20under%20mouse%20to%20closest%20grid%20line.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2016-01-11T11:39:21Z">
<changelog><![CDATA[(2016-01-11)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/7bb2e180ffc4e66894c874ea26bf6c6b88e29a65/Items%20Properties/X-Raym_Snap%20stretch%20marker%20under%20mouse%20to%20closest%20grid%20line.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Toggle selected active takes reverse arround their snap offset.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-26)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Toggle%20selected%20active%20takes%20reverse%20arround%20their%20snap%20offset.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Toggle selected active takes reverse preserving snap offset.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-20)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/X-Raym_Toggle%20selected%20active%20takes%20reverse%20preserving%20snap%20offset.lua</source>
</version>
</reapack>
<reapack name="mpl_X-Raym_Unlock selected items for 5 seconds.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-06-15)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/mpl_X-Raym_Unlock%20selected%20items%20for%205%20seconds.lua</source>
</version>
</reapack>
<reapack name="tritonality_X-Raym_Cubase_Style_SelectTrack_On_ItemSelect.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-10-04)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Items%20Properties/tritonality_X-Raym_Cubase_Style_SelectTrack_On_ItemSelect.lua</source>
</version>
</reapack>
<reapack name="timatkins_Set selected items active take according to take under mouse colour.lua" type="script">
<version name="1.0" author="timatkins & X-Raym" time="2016-01-04T16:05:53Z">
<changelog><![CDATA[(2016-01-04)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/f1ca68fc5f899fc2f7450e9b1ded68d1c25897e2/Items%20Properties/timatkins_Set%20selected%20items%20active%20take%20according%20to%20take%20under%20mouse%20colour.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add all items on selected track into item selection.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-01-11T11:48:18Z">
<changelog><![CDATA[(2015-02-27)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/2caf31f834b0cc1deba0f612773392ae9d7947b5/Items%20Properties/X-Raym_Add%20all%20items%20on%20selected%20track%20into%20item%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected audio takes gain by columns according to takes average RMS.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-02-17T00:57:18Z">
<changelog><![CDATA[(2015-12-30)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/d4f4563f691c3b235c2802f2f95d72d9dc59f044/Items%20Properties/X-Raym_Set%20selected%20audio%20takes%20gain%20by%20columns%20according%20to%20takes%20average%20RMS.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected audio takes gain by columns according to takes max peak.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-02-17T00:57:18Z">
<changelog><![CDATA[(2015-12-30)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/d4f4563f691c3b235c2802f2f95d72d9dc59f044/Items%20Properties/X-Raym_Set%20selected%20audio%20takes%20gain%20by%20columns%20according%20to%20takes%20max%20peak.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Rename selected takes from CSV input.lua" type="script">
<version name="1.0" author="X-Raym" time="2016-02-26T15:55:29Z">
<changelog><![CDATA[(2016-02-29)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/f9d2dc13753bf12e9eb3a5ec5ae98c0d614935e4/Items%20Properties/X-Raym_Rename%20selected%20takes%20from%20CSV%20input.lua</source>
</version>
</reapack>
</category>
<category name="Track Properties">
<reapack name="X-Raym_Display selected track pan compensated by width.eel" type="script">
<version name="0.9" author="X-Raym" time="2015-03-03T13:52:58Z">
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Track%20Properties/X-Raym_Display%20selected%20track%20pan%20compensated%20by%20width.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Invert selected tracks pan.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[(2015-02-17)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Track%20Properties/X-Raym_Invert%20selected%20tracks%20pan.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Round selected tracks pan.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-03T13:52:58Z">
<changelog><![CDATA[(2015-02-17)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/358a9a096ea07fea26310229623e112cc790c312/Track%20Properties/X-Raym_Round%20selected%20tracks%20pan.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Select all rec armed tracks and unselect the others.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-03-19T14:29:24Z">
<changelog><![CDATA[(2015-03-19)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/6f0d00efb05af682bd5a59e8903e6dc24b03d90d/Track%20Properties/X-Raym_Select%20all%20rec%20armed%20tracks%20and%20unselect%20the%20others.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Import tracks from file.lua" type="script">
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-08-27)
# Track order]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Import%20tracks%20from%20file.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Insert one new child track for each selected tracks.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-04-02)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Insert%20one%20new%20child%20track%20for%20each%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Invert master track stereo left right width.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-30)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Invert%20master%20track%20stereo%20left%20right%20width.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Invert selected tracks stereo left right width.eel" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-05-29)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Invert%20selected%20tracks%20stereo%20left%20right%20width.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Rename and recolor tracks created by Vordio from a Premiere Pro XML export.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-07-01)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Rename%20and%20recolor%20tracks%20created%20by%20Vordio%20from%20a%20Premiere%20Pro%20XML%20export.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Rename tracks with first VSTi and its preset name.lua" type="script">
<version name="1.1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-07-25)
# Space in name]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Rename%20tracks%20with%20first%20VSTi%20and%20its%20preset%20name.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Search and replace in selected tracks names.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-10-08)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Search%20and%20replace%20in%20selected%20tracks%20names.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select next visible track only with conditional solo exclusive.eel" type="script">
<version name="1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-04-18)
+ Initial release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Select%20next%20visible%20track%20only%20with%20conditional%20solo%20exclusive.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Select only tracks of selected items.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-07-28)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Select%20only%20tracks%20of%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select only tracks with Latch automation mode.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-07)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Select%20only%20tracks%20with%20Latch%20automation%20mode.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select only tracks with Read automation mode.lua" type="script">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[(2015-09-07)
+ Initial Release]]></changelog>
<source platform="all">https://github.com/X-Raym/REAPER-ReaScripts/raw/bd5f5f3d1dfc49e6e9756fd7a4b086794abb6e78/Track%20Properties/X-Raym_Select%20only%20tracks%20with%20Read%20automation%20mode.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select only tracks with Touch automation mode.lua" type="script">