-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
index.xml
9318 lines (9019 loc) · 697 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="9fd4a6549171c73b17a98ffdad3400e8afc0ffe9" 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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Select items with same color as mouse context (or first selected item) on selected tracks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to select items based on color sample.\par}
}
]]></description>
</metadata>
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# no console message]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Set selected tracks and takes color from HEX value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Set selected tracks and takes color from HEX value. Use # or not. If no takes (aka, if Text items selected), it will work anyway.\par}
}
]]></description>
</metadata>
<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>
<version name="1.1.1" author="X-Raym" time="2020-07-18T00:09:15Z">
<changelog><![CDATA[# Bug fix (thx Buy-One !)
# minor optimization]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Set selected tracks, items and takes color from mouse context">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy paste color value bewteen elements.\par}
}
]]></description>
</metadata>
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# no console message]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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_Automatically set edit cursor pos at mouse position if mouse over ruler.lua" type="script" desc="Automatically set edit cursor pos at mouse position if mouse over ruler">
<metadata>
<link rel="screenshot">https://i.imgur.com/UUECQNl.gifv</link>
</metadata>
<version name="1.0" author="X-Raym" time="2020-01-31T14:29:58Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/fe19da18bed7c81b32eca95926a6ede6ffc950fb/Cursor/X-Raym_Automatically%20set%20edit%20cursor%20pos%20at%20mouse%20position%20if%20mouse%20over%20ruler.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Go to start of next region.lua" type="script" desc="Go to start of next region">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Move edit or play cursor to next region. Move view and seek play.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Cursor/X-Raym_Go%20to%20start%20of%20next%20region.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Go to start of previous region (strict).lua" type="script" desc="Go to start of previous region (strict)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Move edit or play cursor to previous region. Move view and seek play.\par}
}
]]></description>
<link rel="screenshot">https://i.imgur.com/VFhTQ3F.gifv</link>
</metadata>
<version name="1.0" author="X-Raym" time="2018-09-04T18:10:53Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Cursor/X-Raym_Go%20to%20start%20of%20previous%20region%20(strict).lua</source>
</version>
</reapack>
<reapack name="X-Raym_Go to start of previous region.lua" type="script" desc="Go to start of previous region">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Move edit or play cursor to previous region. Move view and seek play.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Move edit cursor to end of region under play or edit cursor and play">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Move edit cursor to end of region under play or edit cursor">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Move edit cursor to first selected item snap offset">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Move edit or play cursor to next region. Move view and seek play.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Move edit cursor to next frame">
<version name="1.0" author="X-Raym" time="2016-01-04T01:22:54Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Cursor/X-Raym_Move%20edit%20cursor%20to%20next%20frame.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2022-08-23T00:55:33Z">
<changelog><![CDATA[# Fix rounding issue]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/014e522512e3b6738fa32ee13461b6b6265dcfb0/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" desc="Move edit cursor to previous frame">
<version name="1.0" author="X-Raym" time="2016-01-04T01:22:54Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Cursor/X-Raym_Move%20edit%20cursor%20to%20previous%20frame.lua</source>
</version>
<version name="1.1" author="X-Raym" time="2022-08-23T00:55:33Z">
<changelog><![CDATA[# Fix rounding issue]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/014e522512e3b6738fa32ee13461b6b6265dcfb0/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" desc="Move edit cursor to start of region under play or edit cursor and play">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Move edit cursor to start of region under play or edit cursor">
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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_Clear all track automation envelope latches (background).lua" type="script" desc="Clear all track automation envelope latches (background)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Workarround for JSFX not writting value if track is in Touch mode and play is stopped\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2023-12-13T19:12:11Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/9e3f077f9616940bec3624cb6acf916c36cd7de2/Envelopes/X-Raym_Clear%20all%20track%20automation%20envelope%20latches%20(background).lua</source>
</version>
</reapack>
<reapack name="X-Raym_Fade out master envelope at each selected items end.lua" type="script" desc="Fade out master envelope at each selected items end">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Create points at selected items position, end and end minus offset. Original value are keept except for the last one which goes -inf.\par}
}
]]></description>
</metadata>
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[# Optimization]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/X-Raym_Fade%20out%20master%20envelope%20at%20each%20selected%20items%20end.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to next envelope point.lua" type="script" desc="Move edit cursor to next envelope point">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Like SWS/BR: Move edit cursor to next envelope point but without take bug and with moveview and seekplay variables\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2022-07-19T13:22:41Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/54aa1459fea1b86dcfe5ff32f6cdee2d75de66db/Envelopes/X-Raym_Move%20edit%20cursor%20to%20next%20envelope%20point.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Move edit cursor to previous envelope point.lua" type="script" desc="Move edit cursor to previous envelope point">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Like SWS/BR: Move edit cursor to previous envelope point but without take bug and with moveview and seekplay variables\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2022-07-19T13:22:41Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/54aa1459fea1b86dcfe5ff32f6cdee2d75de66db/Envelopes/X-Raym_Move%20edit%20cursor%20to%20previous%20envelope%20point.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Randomize selected envelope points value.lua" type="script" desc="Randomize selected envelope points value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 This script will help you randomize envelope point value.\par}
}
]]></description>
</metadata>
<version name="1.0" time="2015-03-13T00:25:43Z">
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/964740fc3aab427b6d16790357f1d77f27fb062b/Envelopes/X-Raym_Randomize%20selected%20envelope%20points%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Round selected envelope points value.eel" type="script" desc="Round selected envelope points value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 It will behave differently, depending on the encelope type.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/X-Raym_Round%20selected%20envelope%20points%20value.eel</source>
</version>
</reapack>
<reapack name="X-Raym_Select envelope point at edit cursor.lua" type="script" desc="Select envelope point at edit cursor">
<version name="1.0" author="X-Raym" time="2022-07-19T17:56:52Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/9df47de5ee3c1df4a0ff6d201cfbadd4a81f47c9/Envelopes/X-Raym_Select%20envelope%20point%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set or Offset selected envelope points value.lua" type="script" desc="Set or Offset selected envelope point value in selected envelope">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A pop up to let you put offset vals for selected item points. Write vals you want. Use "+" sign for relative val (the val is added to the original), no sign for absolute Exemple: -6 is absolute, or +-6 is relative. Don't use percentage. Example: writte "60" for 60%. You can customize default behavior (relative or absolute mod and prefix character) in the User Area of this script.\par}
}
]]></description>
</metadata>
<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>
<version name="1.8" author="X-Raym" time="2020-01-07T17:30:46Z">
<changelog><![CDATA[+ Tempo marker support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/9bb9109bca4b9c7836a215e737cc63be8faf40d8/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="1.8.1" author="X-Raym" time="2020-01-07T17:34:17Z">
<changelog><![CDATA[# No debug]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/e0ac0fbe072d3dc6f69c7964274aa2c2133cce8e/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="2.0" author="X-Raym" time="2021-03-23T16:47:00Z">
<changelog><![CDATA[+ new core
+ Automation items support
+ Save/restore last input
+ preset file support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/074823f237ea4d041ef3d20b7b1251bab230fd6c/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="2.0.1" author="X-Raym" time="2021-03-23T21:55:56Z">
<changelog><![CDATA[# Trim envelope support. Thx @daniboyle!
+ -inf, min, max keywords
+ comma decimal support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/658395b680640dd9aec94c8994a4444b907f003e/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="2.0.2" author="X-Raym" time="2021-03-30T18:32:09Z">
<changelog><![CDATA[# Fix fader scaling
# Keep point selected]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/fe19da18bed7c81b32eca95926a6ede6ffc950fb/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
<version name="2.0.3" author="X-Raym" time="2022-08-09T12:52:50Z">
<changelog><![CDATA[# Playrate envelope unit]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/3eaf3a75f84d92ef7d0219cda4399f74387d3e89/Envelopes/X-Raym_Set%20or%20Offset%20selected%20envelope%20points%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Set selected envelope points value from value at edit cursor.lua" type="script" desc="Set selected envelope points value from value at edit cursor">
<version name="1.0" author="X-Raym" time="2021-05-30T21:21:31Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/fe19da18bed7c81b32eca95926a6ede6ffc950fb/Envelopes/X-Raym_Set%20selected%20envelope%20points%20value%20from%20value%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Unselect envelope point at edit cursor.lua" type="script" desc="Unselect envelope point at edit cursor">
<version name="1.0" author="X-Raym" time="2022-07-19T13:22:41Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/54aa1459fea1b86dcfe5ff32f6cdee2d75de66db/Envelopes/X-Raym_Unselect%20envelope%20point%20at%20edit%20cursor.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" desc="Copy visible armed envelope of last touched tracks and paste to selected tracks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy paste envelopes across tracks.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Copy visible armed envelope points in time selection of last touched track and insert in selected tracks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy paste envelope sections across tracks.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Merge visible armed envelopes of selected track to selected tracks VCA like)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy paste envelopes across tracks.\par}
}
]]></description>
</metadata>
<version name="1.1" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Fader scaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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/Automation Items">
<reapack name="X-Raym_Delete automation items in time selection.lua" type="script" desc="Delete automation items in time selection">
<version name="1.0" author="X-Raym" time="2021-01-29T18:27:53Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/fe19da18bed7c81b32eca95926a6ede6ffc950fb/Envelopes/Automation%20Items/X-Raym_Delete%20automation%20items%20in%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Select all automation items below length threshold on selected tracks.lua" type="script" desc="Select all automation items below length threshold on selected tracks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Use this in a custom action to delete selected items, for eg.\par}
}
]]></description>
<link rel="screenshot">http://i.giphy.com/3o6QKX2WdiZllRt5e0.gif</link>
</metadata>
<version name="1.0" author="X-Raym" time="2020-08-12T16:34:48Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/Automation%20Items/X-Raym_Select%20all%20automation%20items%20below%20length%20threshold%20on%20selected%20tracks.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/On Tracks">
<reapack name="X-Raym_Add envelope point on edit cursor position from next point value.lua" type="script" desc="Add envelope point on edit cursor position from next point value">
<metadata>
<link rel="screenshot">https://i.imgur.com/qIqelYP.gif</link>
</metadata>
<version name="1.0" author="X-Raym" time="2020-10-27T22:44:27Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20edit%20cursor%20position%20from%20next%20point%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope point on edit cursor position from previous point value.lua" type="script" desc="Add envelope point on edit cursor position from previous point value">
<metadata>
<link rel="screenshot">https://i.imgur.com/qIqelYP.gif</link>
</metadata>
<version name="1.0" author="X-Raym" time="2020-10-27T22:44:27Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/6c5dd704d9e168342b5974f6151347b14c106edf/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20edit%20cursor%20position%20from%20previous%20point%20value.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2020-10-29T12:24:07Z">
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20point%20on%20edit%20cursor%20position%20from%20previous%20point%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope point on next point position from previous point value.lua" type="script" desc="Add point on next visible armed envelope point position from previous point value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Take previous (from cursor position) point value, and insert a new point with that value under the next point. Works on selected tracks, with visble and armed envelope.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="X-Raym_Add envelope point on previous point position from next point value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Take next (from cursor position) point value, and insert a new point with that value under the previous point. Works on selected tracks, with visble and armed envelope.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at regular interval and set all points to linear">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to delete multiple points across different envelopes and tracks.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at time selection edges from center to center preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</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/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20center%20to%20center%20preserving%20edges.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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 center to max preserving edges.lua" type="script" desc="Add envelope points at time selection edges from center to max preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20center%20to%20max%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from center to max.lua" type="script" desc="Add envelope points at time selection edges from center to max">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20center%20to%20max.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from center to min preserving edges.lua" type="script" desc="Add envelope points at time selection edges from center to min preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20center%20to%20min%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from center to min.lua" type="script" desc="Add envelope points at time selection edges from center to min">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20center%20to%20min.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from max to center preserving edges.lua" type="script" desc="Add envelope points at time selection edges from max to center preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20center%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from max to center.lua" type="script" desc="Add envelope points at time selection edges from max to center">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20center.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from max to max preserving edges.lua" type="script" desc="Add envelope points at time selection edges from max to max preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</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/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20max%20to%20max%20preserving%20edges.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at time selection edges from max to min preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<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>
<version name="1.2.4" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at time selection edges from max to min">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<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>
<version name="1.1.1" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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 center preserving edges.lua" type="script" desc="Add envelope points at time selection edges from min to center preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20center%20preserving%20edges.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from min to center.lua" type="script" desc="Add envelope points at time selection edges from min to center">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20center.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add envelope points at time selection edges from min to max preserving edges.lua" type="script" desc="Add envelope points at time selection edges from min to max preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<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>
<version name="1.2.4" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at time selection edges from min to max">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</metadata>
<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>
<version name="1.1.2" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at time selection edges from min to min preserving edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges.\par}
}
]]></description>
</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/Envelopes/On%20Tracks/X-Raym_Add%20envelope%20points%20at%20time%20selection%20edges%20from%20min%20to%20min%20preserving%20edges.lua</source>
</version>
<version name="1.0.1" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add envelope points at time selection edges from X to Y preserving edges on choosen envelopes">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges. You can deactivate the pop up window within the script.\u8721 ?\par}
}
]]></description>
<link rel="screenshot">http://i.giphy.com/l0K7o2JPg4cpLr2Jq.gif</link>
</metadata>
<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>
<version name="1.6.2" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/afe83e5ab86a74a8740b7eb748bd547fc7b0d4fb/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.3" author="X-Raym" time="2020-04-01T11:02:45Z">
<changelog><![CDATA[# FaderScaling fixes]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/fe19da18bed7c81b32eca95926a6ede6ffc950fb/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.4" author="X-Raym" time="2024-10-19T00:14:54Z">
<changelog><![CDATA[# No name match if envelope selected
# If no prompt, works only on selected envelope (with one insertion block)
# Clear console
]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b08ae7d2edc5503dcc34d53b6b115725bb0896cc/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" desc="Add envelope points at time selection edges from XdB to XdB preserving edges on Volume envelope">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Insert points at time selection edges. You can deactivate the pop up window within the script.\par}
}
]]></description>
</metadata>
<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>
<version name="1.0.1" author="X-Raym" time="2018-04-10T15:19:20Z">
<changelog><![CDATA[# FaderScaling support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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 with center value.lua" type="script" desc="Add point on envelopes at edit cursor with center value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy insert point on several tracks envelopes at one time.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20point%20on%20envelopes%20at%20edit%20cursor%20with%20center%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add point on envelopes at edit cursor with max value.lua" type="script" desc="Add point on envelopes at edit cursor with max value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy insert point on several tracks envelopes at one time.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20point%20on%20envelopes%20at%20edit%20cursor%20with%20max%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add point on envelopes at edit cursor with min value.lua" type="script" desc="Add point on envelopes at edit cursor with min value">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy insert point on several tracks envelopes at one time.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2019-01-05T18:54:15Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20point%20on%20envelopes%20at%20edit%20cursor%20with%20min%20value.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add point on envelopes at edit cursor.lua" type="script" desc="Add point on visible armed envelopes of selected tracks at edit cursor">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy insert point on several tracks envelopes at one time.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Add points before and after selected points">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy insert point on several tracks envelopes at one time.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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 markers.lua" type="script" desc="Add points on envelopes at markers">
<version name="1.1" author="X-Raym" time="2021-05-18T23:06:49Z">
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/32c3351e043fe3504b351993b9825beddba5c110/Envelopes/On%20Tracks/X-Raym_Add%20points%20on%20envelopes%20at%20markers.lua</source>
</version>
<version name="1.1.1" author="X-Raym" time="2021-05-18T23:07:42Z">
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20points%20on%20envelopes%20at%20markers.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add points on envelopes at regions start.lua" type="script" desc="Add points on envelopes at regions start">
<version name="1.0" author="X-Raym" time="2023-09-12T19:10:42Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/20091907746d9ac01fc0c6b12c611fb7be770bdd/Envelopes/On%20Tracks/X-Raym_Add%20points%20on%20envelopes%20at%20regions%20start.lua</source>
</version>
</reapack>
<reapack name="X-Raym_Add points on envelopes at regions.lua" type="script" desc="Add points on envelopes at regions">
<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>
<version name="1.1" author="X-Raym" time="2021-05-18T23:06:49Z">
<changelog><![CDATA[# Preserve ramps]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/Envelopes/On%20Tracks/X-Raym_Add%20points%20on%20envelopes%20at%20regions.lua</source>
</version>
<version name="1.2" author="X-Raym" time="2023-09-12T19:10:42Z">
<changelog><![CDATA[+ Preset script support]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/20091907746d9ac01fc0c6b12c611fb7be770bdd/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" desc="Clean inactive and hidden envelopes">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to reset clean envelopes.\par}
}
]]></description>
</metadata>
<version name="1.0" author="X-Raym" time="2015-12-24T16:57:47Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Copy envelope points in time selection and paste at edit cursor preserving destination edges">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy paste multiple points envelope from the same track. Preserve original time selected envelope area. In only works with visible armed tracks.\par}
}
]]></description>
</metadata>
<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="main">https://github.com/X-Raym/REAPER-ReaScripts/raw/b5a1cae8185f739e631c15ca844ec9a1c6460a13/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" desc="Copy envelope points in time selection and paste at edit cursor">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 A way to copy paste multiple points envelope from the same track. Preserve original time selected envelope area. In only works with visible armed tracks.\par}
}
]]></description>
</metadata>
<version name="1.1" author="X-Raym" time="2015-03-21T14:29:35Z">