forked from ReaTeam/ReaScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
1975 lines (1958 loc) · 166 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="f8ed84d6c557fe584f9d9dfb3b2f4250bb163dff" name="ReaTeam Scripts">
<category name="Cursor">
<reapack name="spk77_Move edit cursor back by 1 frame (or 1 beat).eel" type="script" desc="Move edit cursor back by 1 frame (or 1 beat)">
<version name="0.2014.9.10" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20back%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20back%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor forward by 1 frame (or 1 beat).eel" type="script" desc="Move edit cursor forward by 1 frame (or 1 beat)">
<version name="0.2014.9.10" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20forward%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20forward%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor to start of current measure.eel" type="script" desc="Move edit cursor to start of current measure">
<version name="0.2014.9.26" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20current%20measure.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20current%20measure.eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor to start of next note + preview.eel" type="script" desc="Move edit cursor to start of next note + preview">
<version name="0.2014.9.6" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20next%20note%20+%20preview.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20next%20note%20+%20preview.eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor to start of next note.eel" type="script" desc="Move edit cursor to start of next note">
<version name="0.2014.9.5" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20next%20note.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20next%20note.eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor to start of previous measure.eel" type="script" desc="Move edit cursor to start of previous measure">
<version name="0.2014.9.26" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20previous%20measure.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20previous%20measure.eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor to start of previous note.eel" type="script" desc="Move edit cursor to start of previous note">
<version name="0.2014.9.5" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20previous%20note.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20previous%20note.eel</source>
</version>
</reapack>
</category>
<category name="Envelopes">
<reapack name="js_Envelope LFO generator and shaper.lua" type="script" desc="js_Envelope LFO generator and shaper.lua">
<version name="0.99" author="Xenakios (modded by juliansader)" time="2016-05-29T18:25:17Z">
<changelog><![CDATA[+ The MIDI editor version now available!!
+ Envelope area now resizeable (allowing finer resolution).
+ Alt-drag for quick delete of multiple nodes.
+ Accurate interpolation of Fast start, Fast end shapes.
+ Curve named "default" will be loaded on startup.]]
-- USER AREA:
--[[
Colors are defined as {red, green, blue, alpha}
(Values are between 0 and 1)
Default colors are:
backgroundColor = {0.15, 0.15, 0.15, 1}
foregroundColor = {0.75, 0.29, 0, 0.8}
textColor = {1, 1, 1, 0.7}
buttonColor = {1, 0, 0, 1}
hotbuttonColor = {0, 1, 0, 1}
shadows = true]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/c8dca777afc4f23262f8ebc0b7ee1a4d8536eaf9/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.996" author="Xenakios (modded by juliansader)" time="2016-06-13T01:42:41Z">
<changelog><![CDATA[+ Mousewheel can be used for super fine adjustment of node values.
+ Rightclick in envelope area to set the LFO period to precise note lengths.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/99112cd9af039463a53ef98e1cd87a4ed4c986fd/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.997" author="Xenakios (modded by juliansader)" time="2016-06-13T06:33:53Z">
<changelog><![CDATA[+ Mousewheel can be used for super fine adjustment of node values.
+ Rightclick in envelope area to set the LFO period to precise note lengths.
+ Envelope value displayed above hotpoint.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/0ea56d55801e226433412cf016b5b4371f89bf59/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.998" author="Xenakios (modded by juliansader)" time="2016-06-13T17:13:26Z">
<changelog><![CDATA[+ Changed interpolation between nodes from linear to parabolic.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/25650c7887a8db20706f2431e2bf9e9def87e96d/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.999" author="Xenakios / juliansader" time="2016-06-13T19:00:18Z">
<changelog><![CDATA[+ Changed Rate interpolation between nodes from linear to parabolic.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/daf6f357dcdfe89e80b76d4c5329fd3535964584/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.9999" author="Xenakios / juliansader" time="2016-06-15T22:00:34Z">
<changelog><![CDATA[+ Timebase: Beats option]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/934edcd1b8a8363a534bbb473015d94432480257/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.0" author="Xenakios / juliansader" time="2016-06-16T18:26:58Z">
<changelog><![CDATA[+ Points at edges of time selection will be preserved, to avoid affecting envelope outside time selection.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/f0a190014eebd9927abcb10718cee011c4f043e5/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.01" author="Xenakios / juliansader" time="2016-06-16T20:50:44Z">
<changelog><![CDATA[+ Fixed regression in handling of take envelopes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/d7af60aabe5a56230171f0c7ee333c4407c534c9/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.02" author="Xenakios / juliansader" time="2016-06-17T01:06:53Z">
<changelog><![CDATA[+ Envelope outside time selection will be preserved by default, even if no points at edges of time selection.
+ Leftclick only adds a single node point; Shift + Left-drag to add multiple points.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/ead20b3c3d8a4e0b7201b87c98d2deecd1bf1ad7/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.03" author="Xenakios / juliansader" time="2016-06-18T07:21:14Z">
<changelog><![CDATA[+ Fixed regression in fade out.
+ Added "Reset curve" option in Save/Load menu.
+ Added optional display of hotpoint time position (in any of REAPER's time formats).
+ Improved sensitivity of nodes at edges of envelope drawing area.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/9bf463249430e8bc1b7e880dd40f5176c1707eae/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.04" author="Xenakios / juliansader" time="2016-06-23T10:21:13Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/5a28621e99fbe2164dd0fd90cc8397d2c576457d/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
</reapack>
<reapack name="spk77_Adjust volume envelope point at mouse cursor via mousewheel.lua" type="script" desc="Adjust volume envelope point at mouse cursor via mousewheel">
<version name="0.2015.9.2" time="2015-12-02T21:24:29Z">
<changelog><![CDATA[2-Sep-2015
added support for all track envelopes]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Envelopes/spk77_Adjust%20volume%20envelope%20point%20at%20mouse%20cursor%20via%20mousewheel.lua</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Envelopes/spk77_Adjust%20volume%20envelope%20point%20at%20mouse%20cursor%20via%20mousewheel.lua</source>
</version>
</reapack>
<reapack name="spk77_Compress or expand selected envelope points.lua" type="script" desc="Compress or expand selected envelope points">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Envelopes/spk77_Compress%20or%20expand%20selected%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="spk77_Create envelope points from FX param values.lua" type="script" desc="Create envelope points from FX parameter values">
<version name="0.1" author="spk77" time="2016-06-19T17:19:04Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/97cbac48ac6f15eca18ea12244e1d3743a5725a9/Envelopes/spk77_Create%20envelope%20points%20from%20FX%20param%20values.lua</source>
</version>
</reapack>
<reapack name="spk77_Delete track FX envelope points in time selection (last focused FX) .lua" type="script" desc="Delete track FX envelope points in time selection (for last focused FX)">
<version name="0.1" author="spk77" time="2016-07-03T19:31:41Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/9b64d41c72485b67611c467e205450befa9f4ec8/Envelopes/spk77_Delete%20track%20FX%20envelope%20points%20in%20time%20selection%20(last%20focused%20FX)%20.lua</source>
</version>
<version name="0.2" author="spk77" time="2016-07-03T19:49:38Z">
<changelog><![CDATA[+ fixed function name]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/5436bdbf286281e918f7853902212f128d2e57c9/Envelopes/spk77_Delete%20track%20FX%20envelope%20points%20in%20time%20selection%20(last%20focused%20FX)%20.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/Takes">
<reapack name="spk77_Copy take mute envelope from selected take to other takes in same group.lua" type="script" desc="Copy take mute envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20mute%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy take pan envelope from selected take to other takes in same group.lua" type="script" desc="Copy take pan envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20pan%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy take pitch envelope from selected take to other takes in same group.lua" type="script" desc="Copy take pitch envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20pitch%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy take volume envelope from selected take to other takes in same group.lua" type="script" desc="Copy take volume envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20volume%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Create take mute envelope from active take to other takes in item.eel" type="script" desc="Create take mute envelope from active take to other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20mute%20envelope%20from%20active%20take%20to%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take pan envelope from active take to other takes in item.eel" type="script" desc="Create take pan envelope from active take to other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20pan%20envelope%20from%20active%20take%20to%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take pan envelope from take pan.eel" type="script" desc="Create take pan envelope from take pan">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20pan%20envelope%20from%20take%20pan.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take pitch envelope from active take in other takes in item.eel" type="script" desc="Create take pitch envelope from active take in other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20pitch%20envelope%20from%20active%20take%20in%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take volume envelope from active take to other takes in item.eel" type="script" desc="Create take volume envelope from active take to other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20volume%20envelope%20from%20active%20take%20to%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take mute envelope source to active takes in same group.eel" type="script" desc="Paste stored take mute envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20mute%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take mute envelope source to active takes in selected items.eel" type="script" desc="Paste stored take mute envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20mute%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pan envelope source to active takes in same group.eel" type="script" desc="Paste stored take pan envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pan%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pan envelope source to active takes in selected items.eel" type="script" desc="Paste stored take pan envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pan%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pitch envelope source to active takes in same group.eel" type="script" desc="Paste stored take pitch envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pitch%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pitch envelope source to active takes in selected items.eel" type="script" desc="Paste stored take pitch envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pitch%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take vol envelope source to active takes in same group.eel" type="script" desc="Paste stored take vol envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T07:26:58Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/404c44c76bc65a1951d7f6fc773ab8c136c71bfe/Envelopes/Takes/spk77_Paste%20stored%20take%20vol%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take vol envelope source to active takes in selected items.eel" type="script" desc="Paste stored take vol envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T07:26:58Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/404c44c76bc65a1951d7f6fc773ab8c136c71bfe/Envelopes/Takes/spk77_Paste%20stored%20take%20vol%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste take envelopes from active take to other takes.eel" type="script" desc="Paste take envelopes from active take to other takes">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20take%20envelopes%20from%20active%20take%20to%20other%20takes.eel</source>
</version>
</reapack>
<reapack name="spk77_Store take envelope source.eel" type="script" desc="Store take envelope source">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Store%20take%20envelope%20source.eel</source>
</version>
</reapack>
</category>
<category name="Items Editing">
<reapack name="Argitoth_Select items with color of selected items.eel" type="script" desc="Select items with color of selected items">
<version name="1.0" author="Elan Hickler (Argitoth)" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/Argitoth_Select%20items%20with%20color%20of%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="Breeder_spk77_GlueTools.lua" type="script" desc="spk77_GlueTools">
<version name="1.0" author="Breeder" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/Breeder_spk77_GlueTools.lua</source>
</version>
</reapack>
<reapack name="js_Remove all CCs, pitch, channel pressure and program change events from all tracks.lua" type="script" desc="js_Remove all CCs, pitch, channel pressure and program change events from all tracks.lua">
<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 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Removes all CCs, pitch, channel pressure and program change events from all takes and all tracks in project.\par}
}
]]></description>
</metadata>
<version name="1.00" author="juliansader" time="2016-09-12T22:52:02Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/83a2b6b55fcb551ee47a054a61644b15161de868/Items%20Editing/js_Remove%20all%20CCs,%20pitch,%20channel%20pressure%20and%20program%20change%20events%20from%20all%20tracks.lua</source>
</version>
</reapack>
<reapack name="Mordi_spk77_Sort items by length.lua" type="script" desc="Sort selected items by length (ascending)">
<version name="1.0" author="Mordi & spk77" time="2016-06-26T17:32:59Z">
<changelog><![CDATA[+ Changed script to only work on selected items.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/c2dbb59ba8a7a4bfaf0499a944b9bf1e3bdc40e3/Items%20Editing/Mordi_spk77_Sort%20items%20by%20length.lua</source>
</version>
</reapack>
<reapack name="nofish_Delete muted items from item selection.lua" type="script" desc="Delete muted items from item selection">
<version name="1.0" time="2015-12-02T21:24:29Z" author="nofish">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/nofish_Delete%20muted%20items%20from%20item%20selection.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy items and store positions.eel" type="script" desc="Copy items and store positions">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Copy%20items%20and%20store%20positions.eel</source>
</version>
</reapack>
<reapack name="spk77_Glue selected items preserving names.eel" type="script" desc="Glue selected items preserving names">
<version name="1.0" author="spk77" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Glue%20selected%20items%20preserving%20names.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste items and recall positions.eel" type="script" desc="Paste items and recall positions">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Paste%20items%20and%20recall%20positions.eel</source>
</version>
</reapack>
<reapack name="spk77_Remove contents of time sel (from selected items).eel" type="script" desc="Remove contents of time sel (from selected items)">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Remove%20contents%20of%20time%20sel%20(from%20selected%20items).eel</source>
</version>
</reapack>
<reapack name="spk77_Replace selected items with item under mouse cursor.lua" type="script" desc="Replace selected items with item under mouse cursor">
<version name="1.0" author="spk77" time="2015-12-17T18:49:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bcb74d80bd35a872be3133300717aee9af9d53ea/Items%20Editing/spk77_Replace%20selected%20items%20with%20item%20under%20mouse%20cursor.lua</source>
</version>
</reapack>
<reapack name="spk77_Select every N-th item within time selection.eel" type="script" desc="Select every N-th item within time selection">
<version name="0.2014.8.23" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Items%20Editing/spk77_Select%20every%20N-th%20item%20within%20time%20selection.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Select%20every%20N-th%20item%20within%20time%20selection.eel</source>
</version>
</reapack>
<reapack name="spk77_Select items within time selection on selected tracks.eel" type="script" desc="Select items within time selection on selected tracks">
<version name="0.2014.7.24" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Items%20Editing/spk77_Select%20items%20within%20time%20selection%20on%20selected%20tracks.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Select%20items%20within%20time%20selection%20on%20selected%20tracks.eel</source>
</version>
</reapack>
<reapack name="spk77_Split all items at edit cursor.lua" type="script" desc="Split all items at edit cursor">
<version name="1.0" author="spk77" time="2016-05-29T16:30:30Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/206110bba7a6f2873207212ff73340e7e69f9396/Items%20Editing/spk77_Split%20all%20items%20at%20edit%20cursor.lua</source>
</version>
<version name="1.1" author="spk77" time="2016-07-07T17:32:53Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/5228233b118927e8496aa31c0ee37f7da253ba3a/Items%20Editing/spk77_Split%20all%20items%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="spk77_Split all non-locked audio items at edit cursor.lua" type="script" desc="Split all non-locked audio items at edit cursor">
<version name="0.1" author="spk77" time="2016-07-07T17:32:53Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/5228233b118927e8496aa31c0ee37f7da253ba3a/Items%20Editing/spk77_Split%20all%20non-locked%20audio%20items%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="spk77_Split all non-locked MIDI items at edit cursor.lua" type="script" desc="Split all non-locked MIDI items at edit cursor">
<version name="0.1" author="spk77" time="2016-07-07T17:32:53Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/5228233b118927e8496aa31c0ee37f7da253ba3a/Items%20Editing/spk77_Split%20all%20non-locked%20MIDI%20items%20at%20edit%20cursor.lua</source>
</version>
</reapack>
<reapack name="spk77_Split and implode items across tracks into takes.eel" type="script" desc="Split and implode items across tracks into takes">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Editing/spk77_Split%20and%20implode%20items%20across%20tracks%20into%20takes.eel</source>
</version>
</reapack>
</category>
<category name="Items Properties">
<reapack name="spk77_Breeder_PL9_Copy paste item properties (incl BWF).eel" type="script" desc="Copy paste item properties (incl BWF)">
<version name="0.2015.7.5" time="2015-12-02T21:24:29Z">
<changelog><![CDATA[(Bug fix) fade-in/fade-out curves weren't copied properly (5-July-15)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Items%20Properties/spk77_Breeder_PL9_Copy%20paste%20item%20properties%20(incl%20BWF).eel</source>
</version>
<version name="1.0" author="spk77, Breeder, PL9" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Properties/spk77_Breeder_PL9_Copy%20paste%20item%20properties%20(incl%20BWF).eel</source>
</version>
</reapack>
<reapack name="spk77_Export item names and time stamps to text file.lua" type="script" desc="Export item names and time stamps to a text file">
<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 \b \fs36 Export item names and time stamps to a text file\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script creates a text file from selected items.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Main Features\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab "exports" item names and positions\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab new file is created into script folder\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab created file name is "Exported item list.txt"\sa180\par}
}
]]></description>
</metadata>
<version name="0.1" author="spk77" time="2016-08-07T16:35:40Z">
<changelog><![CDATA[initial release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/236b858e6d4d55b197ddb462f7849a384074f072/Items%20Properties/spk77_Export%20item%20names%20and%20time%20stamps%20to%20text%20file.lua</source>
</version>
</reapack>
<reapack name="spk77_Normalize selected items to given range.eel" type="script" desc="Normalize selected items to given range">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Properties/spk77_Normalize%20selected%20items%20to%20given%20range.eel</source>
</version>
</reapack>
<reapack name="spk77_Rename items to track name.eel" type="script" desc="Rename items to track name">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Properties/spk77_Rename%20items%20to%20track%20name.eel</source>
</version>
</reapack>
<reapack name="spk77_Trim item volumes.eel" type="script" desc="Trim item volumes">
<version name="0.2015.5.5" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Items%20Properties/spk77_Trim%20item%20volumes.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Items%20Properties/spk77_Trim%20item%20volumes.eel</source>
</version>
</reapack>
</category>
<category name="Markers">
<reapack name="daxliniere_Live recording take commenter.lua" type="script" desc="Live recording take commenter">
<metadata>
<link rel="screenshot">https://www.dropbox.com/s/kp329zcy6jhrumf/TakeCommenterDemo1.gif?dl=1</link>
</metadata>
<version name="1.0" author="Daxliniere, Heda, Eugen2777, spk77" time="2016-05-24T09:23:18Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b0b2b0387ec43b2ca14220347678c695ffc85b41/Markers/daxliniere_Live%20recording%20take%20commenter.lua</source>
</version>
</reapack>
<reapack name="spk77_Duplicate previous marker.lua" type="script" desc="Duplicate previous marker">
<version name="1.0" author="spk77" time="2016-05-31T16:36:39Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/05739117d82f530e929777caee204e5d5ab3f7f0/Markers/spk77_Duplicate%20previous%20marker.lua</source>
</version>
</reapack>
<reapack name="spk77_Move nearest marker to edit cursor.eel" type="script" desc="Move nearest marker to edit cursor">
<version name="0.2014.9.2" time="2015-12-02T21:24:29Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Markers/spk77_Move%20nearest%20marker%20to%20edit%20cursor.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Markers/spk77_Move%20nearest%20marker%20to%20edit%20cursor.eel</source>
</version>
</reapack>
</category>
<category name="MIDI Editor">
<reapack name="cfillion_Toggle MIDI Preview on Transport Change.lua" type="script">
<version name="1.1" author="cfillion" time="2016-06-05T01:28:45Z">
<changelog><![CDATA[Fixed preview toggling when reopening the midi editor]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/473915a806cd9cb6e9e5ad075c8ba9f1b54fea7c/MIDI%20Editor/cfillion_Toggle%20MIDI%20Preview%20on%20Transport%20Change.lua</source>
</version>
</reapack>
<reapack name="gofer_spk77_Smooth CCs.eel" type="script" desc="Smooth CCs">
<version name="1.0" author="spk77" time="2016-05-17T20:11:42Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/6b374be1f3351f081ab153b6e65ab85f3f371b6a/MIDI%20Editor/gofer_spk77_Smooth%20CCs.eel</source>
</version>
</reapack>
<reapack name="js_1-sided warp (accelerate) selected events in lane under mouse.lua" type="script" desc="js_1-sided warp (accelerate) selected events in lane under mouse.lua">
<version name="1.1" author="juliansader" time="2016-05-25T09:24:15Z">
<changelog><![CDATA[+ Added compatibility with SWS versions other than 2.8.3 (still compatible with v2.8.3)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/0937755929d71fe678018c4f57815104097c7325/MIDI%20Editor/js_1-sided%20warp%20(accelerate)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-05-29T12:59:10Z">
<changelog><![CDATA[+ If linked to a menu button, script will toggle button state to indicate activation/termination]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b8f7337d8ecdd6cccde000576a7512b88e29baad/MIDI%20Editor/js_1-sided%20warp%20(accelerate)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.12" author="juliansader" time="2016-06-18T15:24:04Z">
<changelog><![CDATA[+ Added a warning about overlapping notes in the instructions, as well as a safety check in the code.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/0176323bd12e757641f954de65135a8026b1122e/MIDI%20Editor/js_1-sided%20warp%20(accelerate)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/af56041410fe409f7c5e732ea34c646f69cf90ee/MIDI%20Editor/js_1-sided%20warp%20(accelerate)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="js_2-sided warp (and stretch) selected events in lane under mouse.lua" type="script" desc="js_2-sided warp (and stretch) selected events in lane under mouse.lua">
<version name="1.1" author="juliansader" time="2016-05-25T09:25:40Z">
<changelog><![CDATA[+ Added compatibility with SWS versions other than 2.8.3 (still compatible with v2.8.3)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/6796fb90c30a273877d3b45b0e55ec9cf17b898b/MIDI%20Editor/js_2-sided%20warp%20(and%20stretch)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-05-29T12:59:56Z">
<changelog><![CDATA[+ If linked to a menu button, script will toggle button state to indicate activation/termination]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/d05beb2899d074eccb25f1aa824b03ecbb8e40ec/MIDI%20Editor/js_2-sided%20warp%20(and%20stretch)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.12" author="juliansader" time="2016-06-18T15:24:04Z">
<changelog><![CDATA[+ Added a warning about overlapping notes in the instructions, as well as a safety check in the code.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/0176323bd12e757641f954de65135a8026b1122e/MIDI%20Editor/js_2-sided%20warp%20(and%20stretch)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/ebd6894720af0446dcb26d8e9b8bf39d90f0ae10/MIDI%20Editor/js_2-sided%20warp%20(and%20stretch)%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="js_Arch selected events in lane under mouse with linear or power curve.lua" type="script" desc="js_Arch selected events in lane under mouse with linear or power curve.lua">
<version name="1.0" author="juliansader" time="2016-07-08T14:20:18Z">
<changelog><![CDATA[+ Initial Release
+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/98657af61600ff600a4508574d62cb2b2bc7faf6/MIDI%20Editor/js_Arch%20selected%20events%20in%20lane%20under%20mouse%20with%20linear%20or%20power%20curve.lua</source>
</version>
</reapack>
<reapack name="js_Arch selected events in lane under mouse with sine curve.lua" type="script" desc="js_Arch selected events in lane under mouse with sine curve.lua">
<version name="1.0" author="juliansader" time="2016-07-08T14:20:18Z">
<changelog><![CDATA[+ Initial Release
+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/98657af61600ff600a4508574d62cb2b2bc7faf6/MIDI%20Editor/js_Arch%20selected%20events%20in%20lane%20under%20mouse%20with%20sine%20curve.lua</source>
</version>
</reapack>
<reapack name="js_Compress or expand selected CC or velocity events using mousewheel.lua" type="script" desc="js_Compress or expand selected CC or velocity events using mousewheel.lua">
<version name="1.1" author="juliansader" time="2016-05-25T09:26:45Z">
<changelog><![CDATA[+ Added compatibility with SWS versions other than 2.8.3 (still compatible with v2.8.3)
+ Added an optional "compressResolution" user-defined variable]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/91242b4531d2277a1dee9b8aa100c421300f5a3a/MIDI%20Editor/js_Compress%20or%20expand%20selected%20CC%20or%20velocity%20events%20using%20mousewheel.lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-05-29T13:00:33Z">
<changelog><![CDATA[+ If linked to a menu button, script will toggle button state to indicate activation/termination]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/2250728cabb45ebf6110879f236389c5adba396e/MIDI%20Editor/js_Compress%20or%20expand%20selected%20CC%20or%20velocity%20events%20using%20mousewheel.lua</source>
</version>
<version name="1.12" author="juliansader" time="2016-06-26T12:28:00Z">
<changelog><![CDATA[+ Script will not run if all selected events fall on the same time position]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/37ae73fa03af930aa2242fc645cd4bfb3ada1474/MIDI%20Editor/js_Compress%20or%20expand%20selected%20CC%20or%20velocity%20events%20using%20mousewheel.lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Compress%20or%20expand%20selected%20CC%20or%20velocity%20events%20using%20mousewheel.lua</source>
</version>
<version name="2.01" author="juliansader" time="2016-07-05T14:27:45Z">
<changelog><![CDATA[+ Fixed mousewheel bug.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/f7f3655008736b226e57dc813cc36b7f10776eec/MIDI%20Editor/js_Compress%20or%20expand%20selected%20CC%20or%20velocity%20events%20using%20mousewheel.lua</source>
</version>
<version name="2.02" author="juliansader" time="2016-07-08T13:25:54Z">
<changelog><![CDATA[+ Tweaked resolution/speed of compression.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/3384fc7e9548b15362adadcfe79f2b3ffa81a50e/MIDI%20Editor/js_Compress%20or%20expand%20selected%20CC%20or%20velocity%20events%20using%20mousewheel.lua</source>
</version>
</reapack>
<reapack name="js_Deselect all events outside time selection (from all tracks).lua" type="script" desc="js_Deselect all MIDI events outside time selection (from all tracks).lua">
<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 \b \fs36 Website\par}
{\pard \ql \f0 \sa180 \li0 \fi0 http://forum.cockos.com/showthread.php?t=176878\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Screenshot\par}
{\pard \ql \f0 \sa180 \li0 \fi0 http://stash.reaper.fm/27595/Deselect%20all%20MIDI%20events%20outside%20time%20selection%20%28from%20all%20tracks%29%20-%20Copy.gif\par}
}
]]></description>
</metadata>
<version name="1.0" author="juliansader" time="2016-05-25T09:27:26Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/4bc8f3c2d8d4ba4ff74c7ae0d01853a60c46cfdf/MIDI%20Editor/js_Deselect%20all%20events%20outside%20time%20selection%20(from%20all%20tracks).lua</source>
</version>
<version name="1.01" author="juliansader" time="2016-06-07T11:50:56Z">
<changelog><![CDATA[+ CC events at rightmost PPQ of time selection are deselected]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/9c93670e93836044d657ae2ba5ecde5854ee67f0/MIDI%20Editor/js_Deselect%20all%20events%20outside%20time%20selection%20(from%20all%20tracks).lua</source>
</version>
<version name="1.10" author="juliansader" time="2016-08-14T20:20:49Z">
<changelog><![CDATA[+ Header compatible with ReaPack 1.1]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/14a417de7bff5b4c32c8c2b37f2b2390ae1d5cca/MIDI%20Editor/js_Deselect%20all%20events%20outside%20time%20selection%20(from%20all%20tracks).lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-08-15T05:56:48Z">
<changelog><![CDATA[+ Trying to create header that is compatible with ReaPack 1.1]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/221d4280fbd29f2756fbdf6b03abb4fe048fa979/MIDI%20Editor/js_Deselect%20all%20events%20outside%20time%20selection%20(from%20all%20tracks).lua</source>
</version>
</reapack>
<reapack name="js_Draw linear or curved ramps in real time, chasing start values.lua" type="script" desc="js_Draw linear or curved ramps in real time, chasing start values.lua">
<version name="1.11" author="juliansader" time="2016-05-29T18:38:36Z">
<changelog><![CDATA[+ Script does not fail when "Zoom dependent" CC density is selected in Preferences
+ If linked to a menu button, script will toggle button state to indicate activation/termination]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/e1b100d1e14aa0e9a6e2022434b50cfb054a604e/MIDI%20Editor/js_Draw%20linear%20or%20curved%20ramps%20in%20real%20time,%20chasing%20start%20values.lua</source>
</version>
<version name="1.12" author="juliansader" time="2016-06-04T12:07:06Z">
<changelog><![CDATA[+ Few tweaks to improve appearance of real-time ramp when using very low CC density]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/eb53a3b4333a396c4349608f59f30f2d6a4f287b/MIDI%20Editor/js_Draw%20linear%20or%20curved%20ramps%20in%20real%20time,%20chasing%20start%20values.lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Draw%20linear%20or%20curved%20ramps%20in%20real%20time,%20chasing%20start%20values.lua</source>
</version>
</reapack>
<reapack name="js_Draw linear or curved ramps in real time.lua" type="script" desc="js_Draw linear or curved ramps in real time.lua">
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Draw%20linear%20or%20curved%20ramps%20in%20real%20time.lua</source>
</version>
</reapack>
<reapack name="js_Draw sine curve in real time, chasing start values.lua" type="script" desc="js_Draw sine curve in real time, chasing start values.lua">
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Draw%20sine%20curve%20in%20real%20time,%20chasing%20start%20values.lua</source>
</version>
</reapack>
<reapack name="js_Draw sine curve in real time.lua" type="script" desc="js_Draw sine curve in real time.lua">
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Draw%20sine%20curve%20in%20real%20time.lua</source>
</version>
</reapack>
<reapack name="js_Fit all selected events to time selection.lua" type="script" desc="Fit all selected events to time selection">
<version name="1.0" author="juliansader" time="2016-06-11T20:38:14Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/86dc4e5cf513484de5d162808e0d070693860d3d/MIDI%20Editor/js_Fit%20all%20selected%20events%20to%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="js_Fit selected events to time selection in lane under mouse.lua" type="script" desc="Fit selected events in lane under mouse to time selection">
<version name="1.0" author="juliansader" time="2016-06-11T14:08:04Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/d93b36a6d5aff4ec0534e93ca4c26d5d5f2c6012/MIDI%20Editor/js_Fit%20selected%20events%20to%20time%20selection%20in%20lane%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="js_Fit selected events to time selection in last clicked lane.lua" type="script" desc="Fit selected events in last clicked lane to time selection">
<version name="1.0" author="juliansader" time="2016-06-11T14:08:04Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/d93b36a6d5aff4ec0534e93ca4c26d5d5f2c6012/MIDI%20Editor/js_Fit%20selected%20events%20to%20time%20selection%20in%20last%20clicked%20lane.lua</source>
</version>
</reapack>
<reapack name="js_Insert CC or pitch at mouse position, leaving other selected.lua" type="script" desc="js_Insert CC or pitch at mouse position, leaving other selected.lua">
<version name="1.1" author="juliansader" time="2016-05-25T09:28:20Z">
<changelog><![CDATA[+ Added compatibility with SWS versions other than 2.8.3 (still compatible with v2.8.3) ]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/6a21218ba0570c5714d0545019ea2cb3950991e4/MIDI%20Editor/js_Insert%20CC%20or%20pitch%20at%20mouse%20position,%20leaving%20other%20selected.lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Insert%20CC%20or%20pitch%20at%20mouse%20position,%20leaving%20other%20selected.lua</source>
</version>
</reapack>
<reapack name="js_Insert linear or shaped ramps between selected CCs or pitches in lane under mouse.lua" type="script" desc="js_Insert linear or shaped ramps between selected CCs or pitches in lane under mouse.lua">
<version name="1.1" author="juliansader" time="2016-05-25T09:30:26Z">
<changelog><![CDATA[+ Added compatibility with SWS versions other than 2.8.3 (still compatible with v2.8.3)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/14ad9e2c8158e9f7e9d537a072e383d93bdf1764/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-05-29T13:03:30Z">
<changelog><![CDATA[+ Script does not fail when "Zoom dependent" CC density is selected in Preferences]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/53559a80d633845b1c3b4a672fd4b261e7a0a306/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.12" author="juliansader" time="2016-06-08T21:47:58Z">
<changelog><![CDATA[+ New options in USER AREA to define default shape and/or to skip dialog box.
+ More extensive error messages.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/040b530f3f090a97fbf99ff2458ceb500caea1e8/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.13" author="juliansader" time="2016-06-13T09:10:13Z">
<changelog><![CDATA[+ New shape, "sine".]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/40ef49a5504a5548f8717e425970d09741ea331a/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.13b" author="juliansader" time="2016-06-13T10:20:52Z">
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/423057b1d063e5bafdbf75aa307f2280d67d35fa/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="1.14" author="juliansader" time="2016-06-13T18:53:13Z">
<changelog><![CDATA[+ Fixed deletion bug when inserting 14bit CC ramps.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/c1360a7cb4eacf4dc76786ca010c723942372c8b/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Insert%20linear%20or%20shaped%20ramps%20between%20selected%20CCs%20or%20pitches%20in%20lane%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="js_LFO Tool (MIDI editor version, insert CCs in time selection in lane under mouse).lua" type="script" desc="js_LFO Tool (MIDI editor version, insert CCs in time selection in lane under mouse).lua">
<version name="1.04" author="Xenakios / juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_LFO%20Tool%20(MIDI%20editor%20version,%20insert%20CCs%20in%20time%20selection%20in%20lane%20under%20mouse).lua</source>
</version>
</reapack>
<reapack name="js_LFO Tool (MIDI editor version, insert CCs in time selection in last clicked lane).lua" type="script" desc="js_LFO Tool (MIDI editor version, insert CCs in time selection in last clicked lane).lua">
<version name="1.04" author="Xenakios / juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_LFO%20Tool%20(MIDI%20editor%20version,%20insert%20CCs%20in%20time%20selection%20in%20last%20clicked%20lane).lua</source>
</version>
</reapack>
<reapack name="js_LFO Tool (MIDI editor version, insert CCs under selected notes in lane under mouse).lua" type="script" desc="js_LFO Tool (MIDI editor version, insert CCs under selected notes in lane under mouse).lua">
<version name="1.04" author="Xenakios / juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_LFO%20Tool%20(MIDI%20editor%20version,%20insert%20CCs%20under%20selected%20notes%20in%20lane%20under%20mouse).lua</source>
</version>
</reapack>
<reapack name="js_LFO Tool (MIDI editor version, insert CCs under selected notes in last clicked lane).lua" type="script" desc="js_LFO Tool (MIDI editor version, insert CCs under selected notes in last clicked lane).lua">
<version name="1.04" author="Xenakios / juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_LFO%20Tool%20(MIDI%20editor%20version,%20insert%20CCs%20under%20selected%20notes%20in%20last%20clicked%20lane).lua</source>
</version>
</reapack>
<reapack name="js_MIDI editor LFO generator and shaper.lua" type="script" desc="js_MIDI editor LFO generator and shaper.lua">
<version name="0.991" author="Xenakios (modded by juliansader)" time="2016-05-29T18:37:54Z">
<changelog><![CDATA[+ Script does not fail when "Zoom dependent" CC density is selected in Preferences]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/4bb3ac2dba0f9d66f85638c4227e5b9f877e8bb6/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.995" author="Xenakios (modded by juliansader)" time="2016-06-07T12:07:18Z">
<changelog><![CDATA[+ New option to draw LFO underneath selected notes, instead of in time selection.
+ New option to draw LFO in CC lane under mouse, instead of last clicked CC lane.
+ Esc closes GUI.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/c97f0001f7a10abc758530e74295c06dfc829982/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.996" author="Xenakios (modded by juliansader)" time="2016-06-13T01:41:18Z">
<changelog><![CDATA[+ Mousewheel can be used for super fine adjustment of node values.
+ Rightclick in envelope area to set the LFO period to precise note lengths.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/4b582fb429f4eae1648801e927efd4c04bf29ba9/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.997" author="Xenakios (modded by juliansader)" time="2016-06-13T06:33:57Z">
<changelog><![CDATA[+ Mousewheel can be used for super fine adjustment of node values.
+ Rightclick in envelope area to set the LFO period to precise note lengths.
+ Envelope value displayed above hotpoint.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/cd4f143bd7580f9a94341e51ad26ffb207783d25/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.998" author="Xenakios (modded by juliansader)" time="2016-06-13T17:13:21Z">
<changelog><![CDATA[+ Changed interpolation between nodes from linear to parabolic.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/345eea82a70bb13b12e5ce4a524a28925d8324df/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.999" author="Xenakios / juliansader" time="2016-06-13T19:00:13Z">
<changelog><![CDATA[+ Changed Rate interpolation between nodes from linear to parabolic.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/e3f555d0f14482a1d89d39fdb3d9dcbbd08838e5/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.9999" author="Xenakios / juliansader" time="2016-06-15T22:00:39Z">
<changelog><![CDATA[+ Timebase: Beats option]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/85712e09f412121c9ad8885a28ff335da58db513/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.03" author="Xenakios / juliansader" time="2016-06-18T08:26:33Z">
<changelog><![CDATA[+ Fixed regression in fade out.
+ Added "Reset curve" option in Save/Load menu.
+ Added optional display of hotpoint time position (in any of REAPER's time formats).
+ Improved sensitivity of nodes at edges of envelope drawing area.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/6a3adc893012b06712932021f6c1407d840aad43/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.04" author="Xenakios / juliansader" time="2016-06-23T10:21:09Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/f514afed9317362b86b4e351a16ea3f194b68ebe/MIDI%20Editor/js_MIDI%20editor%20LFO%20generator%20and%20shaper.lua</source>
</version>
</reapack>
<reapack name="js_MIDI Inspector.lua" type="script" desc="js_MIDI Inspector.lua">
<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 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script opens a GUI that shows important information about the active MIDI take, selected notes, and selected CCs.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The script improves on REAPER's native Properties windows in several ways:\par}
{\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab The GUI is continuously updated and does not interfere with MIDI editing.\par}
{\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab If multiple events are selected, value ranges are shown.\par}
{\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Note, CC and take information are all shown simultaneously.\par}
{\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Note and CC positions can be displayed in any of REAPER's time formats.\par}
{\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab In Measure:Beat:Ticks format, script can display fractional tick values.\par}
{\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab The GUI can be docked.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 In addition, the script clearly shows the take's default insert channel, and allows the user to change the channel. (From REAPER v2.54 onward, this crucial setting will also be available by default in the MIDI editor itself.)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Instructions\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Click on any of the highlighted values to open a Properties window or a dropdown menu in which the values can be changed.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The default colors of the GUI, as well as the default size, can be customized in the script's USER AREA.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 WARNING!\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Prior to REAPER v5.24, the actions for changing the default channel for new events ("Set channel for new events to 1 [...16]") are buggy and may inappropriately activate the MIDI editor's event filter (as set in the Filter window). Changing the default channel via this script (or by running the actions directly) may therefore make some notes of CCs invisible.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Website\par}
{\pard \ql \f0 \sa180 \li0 \fi0 http://forum.cockos.com/showthread.php?t=176878\par}
}
]]></description>
<link rel="screenshot">http://stash.reaper.fm/28295/js_MIDI%20Inspector.jpeg</link>
</metadata>
<version name="0.90" author="juliansader" time="2016-08-20T11:15:03Z">
<changelog><![CDATA[+ Initial beta release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/a98cbbc55b8ed997999825fbd1323c9340ec0ec4/MIDI%20Editor/js_MIDI%20Inspector.lua</source>
</version>
<version name="0.91" author="juliansader" time="2016-08-20T12:17:53Z">
<changelog><![CDATA[+ Improved header info]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/e998740fa319e33def0844bb38e8d5f49c32af3e/MIDI%20Editor/js_MIDI%20Inspector.lua</source>
</version>
<version name="0.92" author="juliansader" time="2016-08-20T12:36:48Z">
<changelog><![CDATA[+ When default channel is changed, GUI will immediately update
+ WARNING: In REAPER v5.2x, the actions for changing the default channel for new events
("Set channel for new events to 1 [...16]") are buggy and may inappropriately activate
the MIDI editor's event filter (as set in the Filter window). Changing the default
channel via this script (or by running the actions directly) may therefore make
some notes of CCs invisible.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/f97bfe2843ff917df7be11e80e3277d1c25cb31d/MIDI%20Editor/js_MIDI%20Inspector.lua</source>
</version>
<version name="0.93" author="juliansader" time="2016-08-26T04:03:47Z">
<changelog><![CDATA[+ In REAPER itself, the aforementioned bug (setting channel for new events activates
event filter) has been fixed in v2.54.
+ In the MIDI Inspector, the GUI will immediately update if the channel for new events
is changed via the action list or via the MIDI editor's own new channel features. ]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/fd1434aee6978a42a41d05cda454dbc4b35b0243/MIDI%20Editor/js_MIDI%20Inspector.lua</source>
</version>
<version name="0.94" author="juliansader" time="2016-09-10T08:49:16Z">
<changelog><![CDATA[+ If user clicks in CC area, the script will ask whether all notes, text and sysex events
should deselected before opening REAPER's Event Properties, to avoid opening the
Note Properties or Text/Sysex windows instead.
+ New position formats: Ticks, and Measure:Beat:Ticks
(the latter is similar to how the MIDI editor's Event Properties displays position).]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bbb3706f930e7fec4b8ae5f6cc5686cae9339a49/MIDI%20Editor/js_MIDI%20Inspector.lua</source>
</version>
<version name="0.95" author="juliansader" time="2016-09-12T22:28:26Z">
<changelog><![CDATA[+ In Measure:Beat:Ticks format, script will display fractional tick values if the MIDI item's
ticks are not precisely aligned with the project beats. (As discussed in t=181211.)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/84d29a8660e0b8043747d07bd13f69593fbef125/MIDI%20Editor/js_MIDI%20Inspector.lua</source>
</version>
</reapack>
<reapack name="js_Notation - Select all notes that have customized display lengths or positions.lua" type="script" desc="js_Notation - Select all notes that have customized display lengths or positions.lua">
<version name="1.0" author="juliansader" time="2016-08-14T20:59:35Z">
<changelog><![CDATA[+ Initial beta release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/65913073c76a21ece09685bcd492e953e5c3b1db/MIDI%20Editor/js_Notation%20-%20Select%20all%20notes%20that%20have%20customized%20display%20lengths%20or%20positions.lua</source>
</version>
</reapack>
<reapack name="js_Notation - Set beaming of selected notes to custom rhythm.lua" type="script" desc="js_Notation - Set beaming of selected notes to custom rhythm (using grid as margin).lua">
<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 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script allows the user to easily change the beaming of syncopated measures where the rhythm does not follow the prevailing time signature.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Instructions\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The script can correctly beam notes that are played slightly ahead of the beat. To do so, the user should set the MIDI editor's grid to reflect the amount of leeway: A note that starts within one grid length ahead of the next beat will be beamed together with the next beat -- but only if the larger part of the note's length falls in the next beat.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 NOTE: To properly format the notes, the user may to wish run the "Minimize ties" action after this script.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 WARNING\par}
{\pard \ql \f0 \sa180 \li0 \fi0 REAPER versions prior to 5.24 have a bug in the "Beam notes together" action, which fails if notes in both staves of the Grand staff are selected.\par}
}
]]></description>
</metadata>
<version name="1.0" author="juliansader" time="2016-08-20T18:22:19Z">
<changelog><![CDATA[+ Initial beta release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bcc6916b38bd291fa675960b805ba2f120129f08/MIDI%20Editor/js_Notation%20-%20Set%20beaming%20of%20selected%20notes%20to%20custom%20rhythm.lua</source>
</version>
<version name="1.01" author="juliansader" time="2016-09-04T19:42:59Z">
<changelog><![CDATA[+ Added "using grid as margin" in title to inform users of this option
+ (More details can be found in the script itself.)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bbf2d4df0c9d094d7c7f1ccc11688695ef9b63cc/MIDI%20Editor/js_Notation%20-%20Set%20beaming%20of%20selected%20notes%20to%20custom%20rhythm.lua</source>
</version>
</reapack>
<reapack name="js_Notation - Set display length of selected notes to double and add staccato articulation.lua" type="script" desc="js_Notation - Set display length of selected notes to double and add staccato articulation.lua">
<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 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script sets the notation displayed lengths of selected notes to double their MIDI lengths, and then adds staccato articulations.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The script is intended to help solve the problem of short notes (such as staccato or muted guitar notes) that are notated with extraneous rests in-between.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Simply increasing the displayed length of the notes (by using the built-in action "Nudge length display offset right", for example) will remove the rests, but then the displayed lengths will not accurately reflect the lengths of the underlying MIDI notes.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script therefore adds staccato articulations to indicate that the underlying MIDI notes are actually shorter. (The standard interpretation of staccato articulations is to halve the length of a note.)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Forum thread\par}
{\pard \ql \f0 \sa180 \li0 \fi0 http://forum.cockos.com/showthread.php?t=172782&page=25\par}
}
]]></description>
</metadata>
<version name="1.2" author="juliansader" time="2016-08-15T06:09:31Z">
<changelog><![CDATA[+ Bug fix for compatibility with takes that do not start at 0.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/f46f012b6cad130e69226bb627b6319336deee39/MIDI%20Editor/js_Notation%20-%20Set%20display%20length%20of%20selected%20notes%20to%20double%20and%20add%20staccato%20articulation.lua</source>
</version>
</reapack>
<reapack name="js_Notation - Set display length of selected notes to quadruple and add staccatissimo articulation.lua" type="script" desc="js_Notation - Set display length of selected notes to quadruple and add staccatissimo articulation.lua">
<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 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script sets the notation displayed lengths of selected notes to four times their MIDI lengths, and then adds staccatissimo articulations.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The script is intended to help solve the problem of short notes (such as staccato or muted guitar notes) that are notated with extraneous rests in-between.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Simply increasing the displayed length of the notes (by using the built-in action "Nudge length display offset right", for example) will remove the rests, but then the displayed lengths will not accurately reflect the lengths of the underlying MIDI notes.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script therefore adds staccatissimo articulations to indicate that the lengths of the underlying MIDI notes are actually a fourth of the displayed length. (The standard interpretation of staccatissimo articulations is to shorten notes to approximately one fourth of the original lengths.)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Forum thread\par}
{\pard \ql \f0 \sa180 \li0 \fi0 http://forum.cockos.com/showthread.php?t=172782&page=25\par}
}
]]></description>
</metadata>
<version name="1.2" author="juliansader" time="2016-08-15T05:59:18Z">
<changelog><![CDATA[+ Initial release (derived from the "Set display length to double..." script)]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/a40b2ba05d1aedb6e4558e7f7de0dfb334d2332b/MIDI%20Editor/js_Notation%20-%20Set%20display%20length%20of%20selected%20notes%20to%20quadruple%20and%20add%20staccatissimo%20articulation.lua</source>
</version>
</reapack>
<reapack name="js_Notation - Set displayed length of selected notes to custom value.lua" type="script" desc="js_Notation - Set displayed length of selected notes to custom value.lua">
<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 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Sets the displayed length of selected notes (in the MIDI editor's notation view) to a value that the user can specify in a popup window.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Forum thread\par}
{\pard \ql \f0 \sa180 \li0 \fi0 http://forum.cockos.com/showthread.php?t=172782&page=25\par}
}
]]></description>
</metadata>
<version name="1.0" author="juliansader" time="2016-08-08T16:43:16Z">
<changelog><![CDATA[+ Initial beta release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/a04b7eb561f3ce537b3340c3ad8d9772fda22a0f/MIDI%20Editor/js_Notation%20-%20Set%20displayed%20length%20of%20selected%20notes%20to%20custom%20value.lua</source>
</version>
<version name="1.1" author="juliansader" time="2016-08-14T20:55:56Z">
<changelog><![CDATA[+ If displayed length equal to MIDI length, remove field.
+ Script's About info compatible with ReaPack 1.1.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/dce648eb5b2dc2572ac2724e50a149de01b0bd7c/MIDI%20Editor/js_Notation%20-%20Set%20displayed%20length%20of%20selected%20notes%20to%20custom%20value.lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-08-14T21:42:20Z">
<changelog><![CDATA[+ If display length is set equal to MIDI length, the MIDI editor will regard the note's length as non-customized.
+ Improved accuracy of length calculation.
+ Script's About info compatible with ReaPack 1.1.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/e01ace14c3fa73ea2d95b79e603e0c8052f640b2/MIDI%20Editor/js_Notation%20-%20Set%20displayed%20length%20of%20selected%20notes%20to%20custom%20value.lua</source>
</version>
<version name="1.2" author="juliansader" time="2016-08-15T05:58:22Z">
<changelog><![CDATA[+ Bug fix for compatibility with takes that do not start at 0.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/b078cec30d3c84928b8f707fba295e0d37bd2be9/MIDI%20Editor/js_Notation%20-%20Set%20displayed%20length%20of%20selected%20notes%20to%20custom%20value.lua</source>
</version>
<version name="1.20" author="juliansader" time="2016-08-15T06:16:27Z">
<changelog><![CDATA[+ Bug fix for compatibility with takes that do not start at 0.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/0e1f82c66a78a8ec4e267500462bb0d262f1e31b/MIDI%20Editor/js_Notation%20-%20Set%20displayed%20length%20of%20selected%20notes%20to%20custom%20value.lua</source>
</version>
<version name="1.21" author="juliansader" time="2016-09-02T10:57:28Z">
<changelog><![CDATA[+ Allow more complex note values such as "0.75" or "3/8".]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/c2217594492df4fa7e8cd781b008db8045a5d27d/MIDI%20Editor/js_Notation%20-%20Set%20displayed%20length%20of%20selected%20notes%20to%20custom%20value.lua</source>
</version>
</reapack>
<reapack name="js_Option - Selecting single note or CC in active take sets channel for new events.lua" type="script" desc="js_Option - Selecting single note or CC in active take sets channel for new events.lua">
<version name="1.0" author="juliansader" time="2016-07-17T14:49:58Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/ea6cb0acbef9d70cd60b855b54703c13eaf94e55/MIDI%20Editor/js_Option%20-%20Selecting%20single%20note%20or%20CC%20in%20active%20take%20sets%20channel%20for%20new%20events.lua</source>
</version>
</reapack>
<reapack name="js_Option - Switching active take sets channel for new events to channel of existing events.lua" type="script" desc="js_Option - Switching active take sets channel for new events to channel of existing events.lua">
<version name="1.0" author="juliansader" time="2016-07-17T14:49:58Z">
<changelog><![CDATA[+ Initial release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/ea6cb0acbef9d70cd60b855b54703c13eaf94e55/MIDI%20Editor/js_Option%20-%20Switching%20active%20take%20sets%20channel%20for%20new%20events%20to%20channel%20of%20existing%20events.lua</source>
</version>
<version name="1.01" author="juliansader" time="2016-07-17T17:09:40Z">
<changelog><![CDATA[+ Additional tests to verify REAPER's channel values]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/ab90ee028b06a1193fa464f86177cae471b48c0c/MIDI%20Editor/js_Option%20-%20Switching%20active%20take%20sets%20channel%20for%20new%20events%20to%20channel%20of%20existing%20events.lua</source>
</version>
<version name="1.10" author="juliansader" time="2016-07-18T17:39:26Z">
<changelog><![CDATA[+ Compatible with multi-item tracks
+ Use MIDI send channel as default channel if no MIDI events are found]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/c935c1eb8e44dbfd387d48461c88e68d2a247df4/MIDI%20Editor/js_Option%20-%20Switching%20active%20take%20sets%20channel%20for%20new%20events%20to%20channel%20of%20existing%20events.lua</source>
</version>
<version name="1.11" author="juliansader" time="2016-07-22T11:01:58Z">
<changelog><![CDATA[+ Implement workaround for bug in MIDIEditor_GetTake
+ Prevent sysex messages from confusing channel detector]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/1c5c166e1cf41a11a9a84a724a028669afb835f3/MIDI%20Editor/js_Option%20-%20Switching%20active%20take%20sets%20channel%20for%20new%20events%20to%20channel%20of%20existing%20events.lua</source>
</version>
</reapack>
<reapack name="js_Remove redundant CCs (from selected events in lane under mouse).lua" type="script" desc="js_Remove redundant CCs (from selected events in lane under mouse).lua">
<version name="0.91" author="juliansader" time="2016-06-29T17:10:10Z">
<changelog><![CDATA[+ The "Remove Redundant CCs" script has several settings that the user can customize in the script's USER AREA. This is a version of the script with the following settings:
+ CC LANE: CCs will be removed from the lane that is under the mouse at the time the script is called (not from the last clicked lane).
+ SELECTION: Only selected CCs will be analyzed. Unselected CCs will be ignored.
+ MUTED: Muted CCs will automatically be removed since they are inherently redundant.
+ 14BIT CC LSB: When analyzing pitchwheel events, the LSB will be ignored.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bef6ea8e9e09d8c8f3629786c02abb99ceb45905/MIDI%20Editor/js_Remove%20redundant%20CCs%20(from%20selected%20events%20in%20lane%20under%20mouse).lua</source>
</version>
<version name="2.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ All the "lane under mouse" js_ scripts can now be linked to toolbar buttons and run using a single shortcut.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Remove%20redundant%20CCs%20(from%20selected%20events%20in%20lane%20under%20mouse).lua</source>
</version>
</reapack>
<reapack name="js_Remove redundant CCs (from selected events in last clicked lane).lua" type="script" desc="Remove redundant CCs">
<version name="0.91" author="juliansader" time="2016-06-29T17:10:10Z">
<changelog><![CDATA[+ The "Remove Redundant CCs" script has several settings that the user can customize in the script's USER AREA. This is a version of the script with the following settings:
+ CC LANE: CCs will be removed from the last clicked CC lane (not from the lane under the mouse).
+ SELECTION: Only selected CCs will be analyzed. Unselected CCs will be ignored.
+ MUTED: Muted CCs will automatically be removed since they are inherently redundant.
+ 14BIT CC LSB: When analyzing pitchwheel events, the LSB will be ignored.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bef6ea8e9e09d8c8f3629786c02abb99ceb45905/MIDI%20Editor/js_Remove%20redundant%20CCs%20(from%20selected%20events%20in%20last%20clicked%20lane).lua</source>
</version>
</reapack>
<reapack name="js_Remove redundant CCs.lua" type="script" desc="Remove redundant CCs">
<version name="0.9" author="juliansader" time="2016-06-09T07:58:09Z">
<changelog><![CDATA[+ Initial release.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/12e39007760f480b581e0461323088d0a912c113/MIDI%20Editor/js_Remove%20redundant%20CCs.lua</source>
</version>
<version name="0.91" author="juliansader" time="2016-06-29T17:10:10Z">
<changelog><![CDATA[+ The "Remove Redundant CCs" script has several settings that the user can customize in the script's USER AREA. This is a version of the script with the following settings:
+ CC LANE: CCs will be removed from the lane that is under the mouse at the time the script is called (not from the last clicked lane).
+ SELECTION: Only selected CCs will be analyzed. Unselected CCs will be ignored.
+ MUTED: Muted CCs will automatically be removed since they are inherently redundant.
+ 14BIT CC LSB: When analyzing pitchwheel events, the LSB will be ignored.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/bef6ea8e9e09d8c8f3629786c02abb99ceb45905/MIDI%20Editor/js_Remove%20redundant%20CCs.lua</source>
</version>
</reapack>
<reapack name="js_Run the js_'lane under mouse' script that is selected in toolbar (link this to shortcut and mousewheel).lua" type="script" desc="js_Run the js_'lane under mouse' script that is selected in toolbar (link this script to shortcut and mousewheel).lua">
<version name="1.0" author="juliansader" time="2016-07-04T19:22:47Z">
<changelog><![CDATA[+ Initial release.
+ Description and instructions are included inside script - please read with REAPER's built-in script editor.]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/031309d443d5c4145d2a8d7fad37acbafa14b31f/MIDI%20Editor/js_Run%20the%20js_'lane%20under%20mouse'%20script%20that%20is%20selected%20in%20toolbar%20(link%20this%20to%20shortcut%20and%20mousewheel).lua</source>
</version>
</reapack>
<reapack name="js_Select and deselect MIDI notes by step pattern.lua" type="script" desc="js_Select and deselect MIDI notes by step pattern.lua">
<version name="0.9" author="juliansader" time="2016-08-01T13:43:29Z">
<changelog><![CDATA[+ Initial beta release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/6bafb5e7831442e293db1af57441238622c0d9d7/MIDI%20Editor/js_Select%20and%20deselect%20MIDI%20notes%20by%20step%20pattern.lua</source>
</version>
<version name="0.91" author="juliansader" time="2016-08-20T19:26:16Z">
<changelog><![CDATA[+ Compatible with projects that use a PPQ different from 960]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/f011c0a34cce4b5334368a5c55fa685ec1df535d/MIDI%20Editor/js_Select%20and%20deselect%20MIDI%20notes%20by%20step%20pattern.lua</source>
</version>
</reapack>
<reapack name="js_Set time selection to selected events in lane under mouse.lua" type="script" desc="Set time selection to selected events in lane under mouse.">
<version name="1.0" author="juliansader" time="2016-06-11T15:12:24Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="true">https://github.com/ReaTeam/ReaScripts/raw/9825343942e134559aa4bbece362a368d07bd2df/MIDI%20Editor/js_Set%20time%20selection%20to%20selected%20events%20in%20lane%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="js_Set time selection to selected events in last clicked lane.lua" type="script" desc="Set time selection to selected events in last clicked lane">