-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.xml
2972 lines (2971 loc) · 230 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<index version="1" name="me2beats Scripts" commit="8d1ae10f081b71226aae291e4e2daf6e938f9428">
<category name="Envelopes">
<reapack name="me2beats_Copy active take envelopes.lua" type="script" desc="Copy active take envelopes">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Envelopes/me2beats_Copy%20active%20take%20envelopes.lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy selected track volume envelope points.lua" type="script" desc="Copy selected track volume envelope points">
<version name="1.0" author="me2beats" time="2017-06-19T17:45:09Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/312ecc1d3d16f39d072b54a68f15813368480e28/Envelopes/me2beats_Copy%20selected%20track%20volume%20envelope%20points.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-08-29T14:56:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/733e035740cdfec6c8fce43f420eaf31151a3af7/Envelopes/me2beats_Copy%20selected%20track%20volume%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="me2beats_Delete envelope at mouse.lua" type="script" desc="Delete envelope at mouse">
<version name="1.0" author="me2beats" time="2017-04-18T09:48:26Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/428e85d726b2ee4a622badd55b7561502a720006/Envelopes/me2beats_Delete%20envelope%20at%20mouse.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-07-06T11:38:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2536fe0b8ebf2e4773dc6a6ebae71d2111ce3bf9/Envelopes/me2beats_Delete%20envelope%20at%20mouse.lua</source>
</version>
<version name="1.2" author="me2beats" time="2017-08-29T14:56:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/733e035740cdfec6c8fce43f420eaf31151a3af7/Envelopes/me2beats_Delete%20envelope%20at%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Delete envelope for last touched parameter.lua" type="script" desc="Delete envelope for last touched parameter">
<version name="1.0" author="me2beats" time="2017-04-18T09:48:26Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/428e85d726b2ee4a622badd55b7561502a720006/Envelopes/me2beats_Delete%20envelope%20for%20last%20touched%20parameter.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-07-06T11:38:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2536fe0b8ebf2e4773dc6a6ebae71d2111ce3bf9/Envelopes/me2beats_Delete%20envelope%20for%20last%20touched%20parameter.lua</source>
</version>
<version name="1.2" author="me2beats" time="2017-08-29T14:56:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/733e035740cdfec6c8fce43f420eaf31151a3af7/Envelopes/me2beats_Delete%20envelope%20for%20last%20touched%20parameter.lua</source>
</version>
</reapack>
<reapack name="me2beats_Edit nearest envelope point from mouse.lua" type="script" desc="Edit nearest envelope point from mouse">
<version name="1.0" author="me2beats" time="2017-03-21T01:04:37Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/bb49b08abcefbf5a21b2d7298befdff3bb5cb12c/Envelopes/me2beats_Edit%20nearest%20envelope%20point%20from%20mouse.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-08-29T14:56:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/733e035740cdfec6c8fce43f420eaf31151a3af7/Envelopes/me2beats_Edit%20nearest%20envelope%20point%20from%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Edit selected envelope point.lua" type="script" desc="Edit selected envelope point">
<version name="1.0" author="me2beats" time="2017-03-21T01:04:37Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/bb49b08abcefbf5a21b2d7298befdff3bb5cb12c/Envelopes/me2beats_Edit%20selected%20envelope%20point.lua</source>
</version>
</reapack>
<reapack name="me2beats_Insert new envelope point at mouse (obey snapping).lua" type="script" desc="Insert new envelope point at mouse (obey snapping)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Envelopes/me2beats_Insert%20new%20envelope%20point%20at%20mouse%20(obey%20snapping).lua</source>
</version>
</reapack>
<reapack name="me2beats_Move cursor to last selected envelope selected point.lua" type="script" desc="Move cursor to last selected envelope selected point">
<version name="1.0" author="me2beats" time="2017-07-07T17:56:57Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/e4f067bc137e2ac7e70e16227c70ed751404ccd4/Envelopes/me2beats_Move%20cursor%20to%20last%20selected%20envelope%20selected%20point.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move cursor to selected envelope selected point.lua" type="script" desc="Move cursor to selected envelope selected point">
<version name="1.0" author="me2beats" time="2017-03-21T01:04:37Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/bb49b08abcefbf5a21b2d7298befdff3bb5cb12c/Envelopes/me2beats_Move%20cursor%20to%20selected%20envelope%20selected%20point.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move envelope points X sec right or left.lua" type="script" desc="Move envelope points X sec right or left">
<version name="1.0" author="me2beats" time="2017-04-16T20:50:05Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/904bad79da5acffaac22c6cd0a3ef2f2958d0d38/Envelopes/me2beats_Move%20envelope%20points%20X%20sec%20right%20or%20left.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected envelope down.lua" type="script" desc="Move selected envelope down">
<version name="1.0" author="me2beats" time="2017-04-22T21:22:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/9b44986a6ec0cfe31498cdf0cf935ecf5efa7ac4/Envelopes/me2beats_Move%20selected%20envelope%20down.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-07-06T11:38:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2536fe0b8ebf2e4773dc6a6ebae71d2111ce3bf9/Envelopes/me2beats_Move%20selected%20envelope%20down.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected envelope points X sec right or left (without input box).lua" type="script" desc="Move selected envelope points X sec right or left (without input box)">
<version name="1.0" author="me2beats" time="2017-04-16T20:47:50Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/05900566c8565a8bc29424c712f84f7aae1e1e57/Envelopes/me2beats_Move%20selected%20envelope%20points%20X%20sec%20right%20or%20left%20(without%20input%20box).lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected envelope points X sec right or left.lua" type="script" desc="Move selected envelope points X sec right or left">
<version name="1.0" author="me2beats" time="2017-04-16T20:47:50Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/05900566c8565a8bc29424c712f84f7aae1e1e57/Envelopes/me2beats_Move%20selected%20envelope%20points%20X%20sec%20right%20or%20left.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected envelope up.lua" type="script" desc="Move selected envelope up">
<version name="1.0" author="me2beats" time="2017-04-22T21:22:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/9b44986a6ec0cfe31498cdf0cf935ecf5efa7ac4/Envelopes/me2beats_Move%20selected%20envelope%20up.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-07-06T11:42:11Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/92521248b8acabbd256cdb47b9e78dd550601e3e/Envelopes/me2beats_Move%20selected%20envelope%20up.lua</source>
</version>
</reapack>
<reapack name="me2beats_Paste envelopes to active takes of selected items.lua" type="script" desc="Paste envelopes to active takes of selected items">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Envelopes/me2beats_Paste%20envelopes%20to%20active%20takes%20of%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Paste saved points to selected track volume envelope.lua" type="script" desc="Paste saved points to selected track volume envelope">
<version name="1.0" author="me2beats" time="2017-06-19T17:45:09Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/312ecc1d3d16f39d072b54a68f15813368480e28/Envelopes/me2beats_Paste%20saved%20points%20to%20selected%20track%20volume%20envelope.lua</source>
</version>
</reapack>
<reapack name="me2beats_Show selected envelope FX.lua" type="script" desc="Show selected envelope FX">
<version name="1.0" author="me2beats" time="2017-03-30T22:34:14Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/d370360986612f994f26893713ab2fd61df32e3e/Envelopes/me2beats_Show%20selected%20envelope%20FX.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle show selected envelope FX.lua" type="script" desc="Toggle show selected envelope FX">
<version name="1.0" author="me2beats" time="2017-03-30T23:01:45Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/012749fd594d22ab9ca3ca61602ec71839569dad/Envelopes/me2beats_Toggle%20show%20selected%20envelope%20FX.lua</source>
</version>
</reapack>
</category>
<category name="FX">
<reapack name="me2beats_Add fx by name to selected track.lua" type="script" desc="Add fx by name to selected track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Add%20fx%20by%20name%20to%20selected%20track.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-04-03T16:41:51Z">
<changelog><![CDATA[+ multiple fx]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/44196dbb045a059c0122d36a64b6dd09dcb9bc21/FX/me2beats_Add%20fx%20by%20name%20to%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Add fx by name to track under mouse.lua" type="script" desc="Add fx by name to track under mouse">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Add%20fx%20by%20name%20to%20track%20under%20mouse.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-04-03T16:41:51Z">
<changelog><![CDATA[+ multiple fx]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/44196dbb045a059c0122d36a64b6dd09dcb9bc21/FX/me2beats_Add%20fx%20by%20name%20to%20track%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Close all fx windows.lua" type="script" desc="Close all fx windows">
<version name="1.0" author="me2beats" time="2017-07-05T15:33:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/f7bcdc3ea9d90d1f384f1082e72c504f14fcf5b4/FX/me2beats_Close%20all%20fx%20windows.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-07-07T17:29:41Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/64b4dcd856c143eadbb530f5054d272f0d6dfdde/FX/me2beats_Close%20all%20fx%20windows.lua</source>
</version>
</reapack>
<reapack name="me2beats_Close last touched floating FX window.lua" type="script" desc="Close last touched floating FX window">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Close%20last%20touched%20floating%20FX%20window.lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy focused FX (with automation) to selected tracks.lua" type="script" desc="Copy focused FX (with automation) to selected tracks">
<version name="0.7" author="me2beats" time="2016-11-18T14:23:51Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/33b0532bdd43cd67dff9d6c3302a33b80ca55113/FX/me2beats_Copy%20focused%20FX%20(with%20automation)%20to%20selected%20tracks.lua</source>
</version>
<version name="0.8" author="me2beats" time="2017-07-06T11:38:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2536fe0b8ebf2e4773dc6a6ebae71d2111ce3bf9/FX/me2beats_Copy%20focused%20FX%20(with%20automation)%20to%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="me2beats_Permanent fx size (defer).lua" type="script" desc="Permanent fx size (defer)">
<version name="0.5" author="me2beats" time="2017-02-17T22:15:29Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/5536d922c8236c8730c4bb71a4911f55d58a8823/FX/me2beats_Permanent%20fx%20size%20(defer).lua</source>
</version>
<version name="0.6" author="me2beats" time="2017-07-06T11:38:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2536fe0b8ebf2e4773dc6a6ebae71d2111ce3bf9/FX/me2beats_Permanent%20fx%20size%20(defer).lua</source>
</version>
</reapack>
<reapack name="me2beats_Remove focused track fx.lua" type="script" desc="Remove focused track fx">
<version name="0.9" author="me2beats" time="2017-02-17T16:12:36Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/42b79a0afda626a0c8aa9c2672ab6415ec576fac/FX/me2beats_Remove%20focused%20track%20fx.lua</source>
</version>
</reapack>
<reapack name="me2beats_Rename current FX preset (of focused FX).lua" type="script" desc="Rename current FX preset (of focused FX)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Rename%20current%20FX%20preset%20(of%20focused%20FX).lua</source>
</version>
</reapack>
<reapack name="me2beats_Searcher.lua" type="script" desc="Searcher">
<version name="0.96" author="me2beats" time="2017-09-11T19:01:24Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/66bac32fb5db1c4784e8aaba7eeeda1f2a12839b/FX/me2beats_Searcher.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select last touched FX.lua" type="script" desc="Select last touched FX">
<version name="0.9" author="me2beats" time="2017-07-04T22:43:46Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/0fa94d55aec4501e932859f87250244c7d0208ad/FX/me2beats_Select%20last%20touched%20FX.lua</source>
</version>
<version name="0.95" author="me2beats" time="2017-07-06T11:38:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2536fe0b8ebf2e4773dc6a6ebae71d2111ce3bf9/FX/me2beats_Select%20last%20touched%20FX.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set preset.lua" type="script" desc="Set preset">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Set%20preset.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set random preset.lua" type="script" desc="Set random preset">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Set%20random%20preset.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set random user preset.lua" type="script" desc="Set random user preset">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Set%20random%20user%20preset.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle all FX offline for selected tracks.lua" type="script" desc="Toggle all FX offline for selected tracks">
<version name="1.0" author="me2beats" time="2017-05-05T03:33:10Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/e2d27834dbc40e028bca802b92bd03cc57b11841/FX/me2beats_Toggle%20all%20FX%20offline%20for%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle all input FX bypass for selected track.lua" type="script" desc="Toggle all input FX bypass for selected track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Toggle%20all%20input%20FX%20bypass%20for%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle bypass focused fx.lua" type="script" desc="Toggle bypass focused fx">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/FX/me2beats_Toggle%20bypass%20focused%20fx.lua</source>
</version>
</reapack>
</category>
<category name="Items">
<reapack name="me2beats_Close all midi editors.lua" type="script" desc="Close all midi editors">
<version name="1.0" author="me2beats" time="2017-09-07T19:15:25Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/56eaeddfa7b21c45f7a7c527b68d1f71283f03c5/Items/me2beats_Close%20all%20midi%20editors.lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy first track item to mouse.lua" type="script" desc="Copy first track item to mouse">
<version name="1.0" author="me2beats" time="2017-08-01T06:03:03Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/f6c7581df05d14b16cfbf8a011744d9d0c6f3b8a/Items/me2beats_Copy%20first%20track%20item%20to%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy FX of item under mouse to selected items (active takes).lua" type="script" desc="Copy FX of item under mouse to selected items (active takes)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Copy%20FX%20of%20item%20under%20mouse%20to%20selected%20items%20(active%20takes).lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-04-03T00:32:06Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/7d14e36e7f1ca972fc0131343aa3db55ce0b6011/Items/me2beats_Copy%20FX%20of%20item%20under%20mouse%20to%20selected%20items%20(active%20takes).lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy item to mouse.lua" type="script" desc="Copy item to mouse">
<version name="1.0" author="me2beats" time="2017-08-01T06:03:03Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/f6c7581df05d14b16cfbf8a011744d9d0c6f3b8a/Items/me2beats_Copy%20item%20to%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy items positions.lua" type="script" desc="Copy items positions">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Copy%20items%20positions.lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy take start offset to clipboard (don't round).lua" type="script" desc="Copy take start offset to clipboard (don't round)">
<version name="1.0" author="me2beats" time="2017-10-04T06:07:02Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/23e90fd92954a41ec521d6e0a0c8718898d7f4e9/Items/me2beats_Copy%20take%20start%20offset%20to%20clipboard%20(don't%20round).lua</source>
</version>
</reapack>
<reapack name="me2beats_Copy take start offset to clipboard.lua" type="script" desc="Copy take start offset to clipboard">
<version name="1.0" author="me2beats" time="2017-10-04T06:07:02Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/23e90fd92954a41ec521d6e0a0c8718898d7f4e9/Items/me2beats_Copy%20take%20start%20offset%20to%20clipboard.lua</source>
</version>
</reapack>
<reapack name="me2beats_Decrease active takes pitch linearly (-1 semitone).lua" type="script" desc="Decrease active takes pitch linearly (-1 semitone)">
<version name="1.0" author="me2beats" time="2017-10-03T22:46:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/7e304ed213aaf0fd156540bed96e8767948a0eb9/Items/me2beats_Decrease%20active%20takes%20pitch%20linearly%20(-1%20semitone).lua</source>
</version>
</reapack>
<reapack name="me2beats_Delete 'freeze' in tracks items names.lua" type="script" desc="Delete 'freeze' in tracks items names">
<version name="1.0" author="me2beats" time="2017-08-15T17:27:42Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/8ede734117712529aa524ad9db78fab4ec4ac69a/Items/me2beats_Delete%20'freeze'%20in%20tracks%20items%20names.lua</source>
</version>
</reapack>
<reapack name="me2beats_Delete 'untitled MIDI item' in items names.lua" type="script" desc="Delete 'untitled MIDI item' in items names">
<version name="1.0" author="me2beats" time="2017-08-18T18:15:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/4082fb8ae5cbb9478e319a1bc39fa95477485abe/Items/me2beats_Delete%20'untitled%20MIDI%20item'%20in%20items%20names.lua</source>
</version>
</reapack>
<reapack name="me2beats_Delete muted items from selected items.lua" type="script" desc="Delete muted items from selected items">
<version name="1.0" author="me2beats" time="2017-04-03T20:24:18Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/64e7d966ea72cb699ce9695b0d0c40f859aaf0a6/Items/me2beats_Delete%20muted%20items%20from%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Delete small notes at item edges (active take).lua" type="script" desc="Delete small notes at item edges (active take)">
<version name="1.0" author="me2beats" time="2017-09-29T19:12:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/d428dead396fcddcf7b6ddb47e56e8d5079463a6/Items/me2beats_Delete%20small%20notes%20at%20item%20edges%20(active%20take).lua</source>
</version>
</reapack>
<reapack name="me2beats_Destutter items.lua" type="script" desc="Destutter items">
<version name="1.0" author="me2beats" time="2017-02-20T14:15:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fbf80761c44a042ace6ba181e285e208ce1a3896/Items/me2beats_Destutter%20items.lua</source>
</version>
<version name="1.01" author="me2beats" time="2017-03-10T23:27:01Z">
<changelog><![CDATA[+ init
+ minor update]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/8181df9c48460f3089f982afd9dad3c216fa676c/Items/me2beats_Destutter%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Duplicate items (fill time selection).lua" type="script" desc="Duplicate items (fill time selection)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Duplicate%20items%20(fill%20time%20selection).lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-03-20T21:05:39Z">
<changelog><![CDATA[+ init
+ Several items duplication]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/546a17e11583c67d379a6a3c315324c0ceabfea6/Items/me2beats_Duplicate%20items%20(fill%20time%20selection).lua</source>
</version>
</reapack>
<reapack name="me2beats_Duplicate items to track at mouse (select new items).lua" type="script" desc="Duplicate items to track at mouse (select new items)">
<version name="1.0" author="me2beats" time="2017-04-02T22:30:20Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/7a595f0acc244a0cf0b8d9ac9723a166c49bd759/Items/me2beats_Duplicate%20items%20to%20track%20at%20mouse%20(select%20new%20items).lua</source>
</version>
</reapack>
<reapack name="me2beats_Duplicate selected area of items (replace area).lua" type="script" desc="Duplicate selected area of items (replace area)">
<version name="1.0" author="me2beats" time="2017-04-03T14:56:14Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/b5342d9b09f99af25234fe4a8901bc9ded2589a4/Items/me2beats_Duplicate%20selected%20area%20of%20items%20(replace%20area).lua</source>
</version>
</reapack>
<reapack name="me2beats_Duplicate selected area of items (replace area, use loop selection).lua" type="script" desc="Duplicate selected area of items (replace area, use loop selection)">
<version name="1.0" author="me2beats" time="2017-04-07T01:24:43Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/0eefbce5daafa9751902ea6f5ebde0d458cf2bb3/Items/me2beats_Duplicate%20selected%20area%20of%20items%20(replace%20area,%20use%20loop%20selection).lua</source>
</version>
</reapack>
<reapack name="me2beats_Duplicate selected items to selected track.lua" type="script" desc="Duplicate selected items to selected track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Duplicate%20selected%20items%20to%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Fit first item end to second item start (stretch).lua" type="script" desc="Fit first item end to second item start (stretch)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Fit%20first%20item%20end%20to%20second%20item%20start%20(stretch).lua</source>
</version>
</reapack>
<reapack name="me2beats_Fit item to notes (active take).lua" type="script" desc="Fit item to notes (active take)">
<version name="1.0" author="me2beats" time="2017-08-29T14:56:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/733e035740cdfec6c8fce43f420eaf31151a3af7/Items/me2beats_Fit%20item%20to%20notes%20(active%20take).lua</source>
</version>
</reapack>
<reapack name="me2beats_Increase active takes pitch linearly (+1 semitone).lua" type="script" desc="Increase active takes pitch linearly (+1 semitone)">
<version name="1.0" author="me2beats" time="2017-10-03T22:46:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/7e304ed213aaf0fd156540bed96e8767948a0eb9/Items/me2beats_Increase%20active%20takes%20pitch%20linearly%20(+1%20semitone).lua</source>
</version>
</reapack>
<reapack name="me2beats_Increase selected items volume linearly.lua" type="script" desc="Increase selected items volume linearly">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Increase%20selected%20items%20volume%20linearly.lua</source>
</version>
</reapack>
<reapack name="me2beats_Insert 2 bars midi item at mouse.lua" type="script" desc="Insert 2 bars midi item at mouse">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Insert%202%20bars%20midi%20item%20at%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Insert 4 bars midi item at mouse.lua" type="script" desc="Insert 4 bars midi item at mouse">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Insert%204%20bars%20midi%20item%20at%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Insert 4 bars midi item.lua" type="script" desc="Insert 4 bars midi item">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Insert%204%20bars%20midi%20item.lua</source>
</version>
</reapack>
<reapack name="me2beats_Insert a bar midi item at mouse.lua" type="script" desc="Insert a bar midi item at mouse">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Insert%20a%20bar%20midi%20item%20at%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Invert item selection on selected track.lua" type="script" desc="Invert item selection on selected track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Invert%20item%20selection%20on%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Match selected items tempo to project tempo.lua" type="script" desc="Match selected items tempo to project tempo">
<version name="1.0" author="me2beats" time="2017-03-25T10:39:29Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/298949b6f7316ee3c772e20f2672326586b87ef8/Items/me2beats_Match%20selected%20items%20tempo%20to%20project%20tempo.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move cursor to center of selected item.lua" type="script" desc="Move cursor to center of selected item">
<version name="1.0" author="me2beats" time="2017-03-29T15:49:25Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/98c8d53cd40defff22fa09e75e909deb9b78d971/Items/me2beats_Move%20cursor%20to%20center%20of%20selected%20item.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move item content left one grid unit.lua" type="script" desc="Move item content left one grid unit">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20item%20content%20left%20one%20grid%20unit.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move item content right one grid unit.lua" type="script" desc="Move item content right one grid unit">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20item%20content%20right%20one%20grid%20unit.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move item one measure left.lua" type="script" desc="Move item one measure left">
<version name="1.0" author="me2beats" time="2017-03-30T20:03:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/4c9962c6f603e3283ba44cc54ef2d164e4928335/Items/me2beats_Move%20item%20one%20measure%20left.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move item one measure right.lua" type="script" desc="Move item one measure right">
<version name="1.0" author="me2beats" time="2017-03-30T20:03:33Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/4c9962c6f603e3283ba44cc54ef2d164e4928335/Items/me2beats_Move%20item%20one%20measure%20right.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move items left or right by grid size (mousewheel).lua" type="script" desc="Move items left or right by grid size (mousewheel)">
<version name="1.0" author="me2beats" time="2017-06-29T19:46:57Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/9661daae3b05edcc6d1ba39cd9a978724e00d3f4/Items/me2beats_Move%20items%20left%20or%20right%20by%20grid%20size%20(mousewheel).lua</source>
</version>
</reapack>
<reapack name="me2beats_Move items to selected track.lua" type="script" desc="Move items to selected track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20items%20to%20selected%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move items to start of project.lua" type="script" desc="Move items to start of project">
<version name="1.0" author="me2beats" time="2017-05-05T17:42:51Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/64693e8c02c7a6d13963baf94a60ff77ee46dc50/Items/me2beats_Move%20items%20to%20start%20of%20project.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move items to time selection end.lua" type="script" desc="Move items to time selection end">
<version name="1.0" author="me2beats" time="2017-08-01T06:03:03Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/f6c7581df05d14b16cfbf8a011744d9d0c6f3b8a/Items/me2beats_Move%20items%20to%20time%20selection%20end.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move items to time selection start.lua" type="script" desc="Move items to time selection start">
<version name="1.0" author="me2beats" time="2017-08-01T06:03:03Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/f6c7581df05d14b16cfbf8a011744d9d0c6f3b8a/Items/me2beats_Move%20items%20to%20time%20selection%20start.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected items to new track in named folder.lua" type="script" desc="Move selected items to new track in named folder">
<version name="1.0" author="me2beats" time="2017-01-30T22:42:42Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/18cbff8ecff7a8fdd1d4073e8d33708e53bfd422/Items/me2beats_Move%20selected%20items%20to%20new%20track%20in%20named%20folder.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected items to next item.lua" type="script" desc="Move selected items to next item">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20selected%20items%20to%20next%20item.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected items to next track (create track if doesn't exist).lua" type="script" desc="Move selected items to next track (create track if doesn't exist)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20selected%20items%20to%20next%20track%20(create%20track%20if%20doesn't%20exist).lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected items to next track.lua" type="script" desc="Move selected items to next track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20selected%20items%20to%20next%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected items to previous item.lua" type="script" desc="Move selected items to previous item">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20selected%20items%20to%20previous%20item.lua</source>
</version>
</reapack>
<reapack name="me2beats_Move selected items to previous track.lua" type="script" desc="Move selected items to previous track">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Move%20selected%20items%20to%20previous%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Normalize items (active takes) with track volume compensation.lua" type="script" desc="Normalize items (active takes) with track volume compensation">
<version name="1.0" author="me2beats" time="2017-01-31T14:12:55Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fc7da3d0db50cb1c7667e9fec2efde25c9900515/Items/me2beats_Normalize%20items%20(active%20takes)%20with%20track%20volume%20compensation.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-01-31T19:25:54Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/748ef944be4b842beb21ad40d77fc7fbb3e084fa/Items/me2beats_Normalize%20items%20(active%20takes)%20with%20track%20volume%20compensation.lua</source>
</version>
<version name="1.2" author="me2beats" time="2017-02-02T11:34:26Z">
<changelog><![CDATA[+ init
+ fix something]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/6bfb72faa18a05d333e56f635e0919be5ec47290/Items/me2beats_Normalize%20items%20(active%20takes)%20with%20track%20volume%20compensation.lua</source>
</version>
</reapack>
<reapack name="me2beats_Nudge active take volume.lua" type="script" desc="Nudge active take volume">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Nudge%20active%20take%20volume.lua</source>
</version>
</reapack>
<reapack name="me2beats_Nudge selected items volume down by 1 db.lua" type="script" desc="Nudge selected items volume down by 1 db">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Nudge%20selected%20items%20volume%20down%20by%201%20db.lua</source>
</version>
</reapack>
<reapack name="me2beats_Nudge selected items volume up by 1 db.lua" type="script" desc="Nudge selected items volume up by 1 db">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Nudge%20selected%20items%20volume%20up%20by%201%20db.lua</source>
</version>
</reapack>
<reapack name="me2beats_Nudge selected items volume.lua" type="script" desc="Nudge selected items volume">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Nudge%20selected%20items%20volume.lua</source>
</version>
</reapack>
<reapack name="me2beats_Paste items at copied positions.lua" type="script" desc="Paste items at copied positions">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Paste%20items%20at%20copied%20positions.lua</source>
</version>
</reapack>
<reapack name="me2beats_Pool active takes of selected items.lua" type="script" desc="Pool active takes of selected items">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Pool%20active%20takes%20of%20selected%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Quantize MIDI note positions to project grid.lua" type="script" desc="Quantize MIDI note positions to project grid">
<version name="1.0" author="me2beats" time="2017-09-18T12:34:09Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/98d9ca0c80f62a7be15f522b92691b7d49fa2853/Items/me2beats_Quantize%20MIDI%20note%20positions%20to%20project%20grid.lua</source>
</version>
</reapack>
<reapack name="me2beats_Remove even items starting from selected one.lua" type="script" desc="Remove even items starting from selected one">
<version name="1.0" author="me2beats" time="2017-04-25T20:08:47Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fe983238cf847f324f5fee6e12f4db1ea49e7dd5/Items/me2beats_Remove%20even%20items%20starting%20from%20selected%20one.lua</source>
</version>
</reapack>
<reapack name="me2beats_Remove item under mouse.lua" type="script" desc="Remove item under mouse">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Remove%20item%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Remove items and select next item.lua" type="script" desc="Remove items and select next item">
<version name="1.0" author="me2beats" time="2017-10-04T00:31:04Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/8b15cfd41a9a48fee82e491c766cc909bf203427/Items/me2beats_Remove%20items%20and%20select%20next%20item.lua</source>
</version>
</reapack>
<reapack name="me2beats_Remove odd items starting from selected one.lua" type="script" desc="Remove odd items starting from selected one">
<version name="1.0" author="me2beats" time="2017-04-25T20:08:47Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fe983238cf847f324f5fee6e12f4db1ea49e7dd5/Items/me2beats_Remove%20odd%20items%20starting%20from%20selected%20one.lua</source>
</version>
</reapack>
<reapack name="me2beats_Remove selected items envelopes.lua" type="script" desc="Remove selected items envelopes">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Remove%20selected%20items%20envelopes.lua</source>
</version>
</reapack>
<reapack name="me2beats_Rename takes 2.lua" type="script" desc="Rename takes 2">
<version name="1.0" author="me2beats" time="2017-04-19T06:05:57Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/59fe618bbb3171fdf1718cf1304ce0c90a8bebbc/Items/me2beats_Rename%20takes%202.lua</source>
</version>
</reapack>
<reapack name="me2beats_Rename takes.lua" type="script" desc="Rename takes">
<version name="1.0" author="me2beats" time="2017-04-18T09:48:26Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/428e85d726b2ee4a622badd55b7561502a720006/Items/me2beats_Rename%20takes.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select even items starting from selected one.lua" type="script" desc="Select even items starting from selected one">
<version name="1.0" author="me2beats" time="2017-04-25T20:08:47Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fe983238cf847f324f5fee6e12f4db1ea49e7dd5/Items/me2beats_Select%20even%20items%20starting%20from%20selected%20one.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select item in next track.lua" type="script" desc="Select item in next track">
<version name="1.0" author="me2beats" time="2017-07-29T01:35:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/ce808253d50b920697d486cea9964edfc924ef19/Items/me2beats_Select%20item%20in%20next%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select item in previous track.lua" type="script" desc="Select item in previous track">
<version name="1.0" author="me2beats" time="2017-07-29T01:35:40Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/ce808253d50b920697d486cea9964edfc924ef19/Items/me2beats_Select%20item%20in%20previous%20track.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select item near mouse.lua" type="script" desc="Select item near mouse">
<version name="1.0" author="me2beats" time="2017-04-09T04:35:41Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/4db77d01c4e7003a56da8680197f37787bd088c7/Items/me2beats_Select%20item%20near%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select items from cursor to end of project.lua" type="script" desc="Select items from cursor to end of project">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20items%20from%20cursor%20to%20end%20of%20project.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select items from mouse to end of project.lua" type="script" desc="Select items from mouse to end of project">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20items%20from%20mouse%20to%20end%20of%20project.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select items from start of project to cursor.lua" type="script" desc="Select items from start of project to cursor">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20items%20from%20start%20of%20project%20to%20cursor.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select items from start of project to mouse.lua" type="script" desc="Select items from start of project to mouse">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20items%20from%20start%20of%20project%20to%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select items on track at mouse (obey region).lua" type="script" desc="Select items on track at mouse (obey region)">
<version name="1.0" author="me2beats" time="2017-06-17T04:53:37Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/d4d4e67c3308e31c0add8b166dc4a183b4733847/Items/me2beats_Select%20items%20on%20track%20at%20mouse%20(obey%20region).lua</source>
</version>
</reapack>
<reapack name="me2beats_Select odd items starting from selected one.lua" type="script" desc="Select odd items starting from selected one">
<version name="1.0" author="me2beats" time="2017-04-25T20:08:47Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fe983238cf847f324f5fee6e12f4db1ea49e7dd5/Items/me2beats_Select%20odd%20items%20starting%20from%20selected%20one.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only even items.lua" type="script" desc="Select only even items">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Select%20only%20even%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only item near mouse.lua" type="script" desc="Select only item near mouse">
<version name="1.0" author="me2beats" time="2017-04-09T04:35:41Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/4db77d01c4e7003a56da8680197f37787bd088c7/Items/me2beats_Select%20only%20item%20near%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only items from cursor to end of project.lua" type="script" desc="Select only items from cursor to end of project">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20only%20items%20from%20cursor%20to%20end%20of%20project.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only items from mouse to end of project.lua" type="script" desc="Select only items from mouse to end of project">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20only%20items%20from%20mouse%20to%20end%20of%20project.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only items from start of project to cursor.lua" type="script" desc="Select only items from start of project to cursor">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20only%20items%20from%20start%20of%20project%20to%20cursor.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only items from start of project to mouse.lua" type="script" desc="Select only items from start of project to mouse">
<version name="1.0" author="me2beats" time="2017-06-01T06:07:53Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/c9bfe3c543788a54049dd7723e7fb394a61cdda1/Items/me2beats_Select%20only%20items%20from%20start%20of%20project%20to%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only items on track at mouse (obey region).lua" type="script" desc="Select only items on track at mouse (obey region)">
<version name="1.0" author="me2beats" time="2017-06-17T04:53:37Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/d4d4e67c3308e31c0add8b166dc4a183b4733847/Items/me2beats_Select%20only%20items%20on%20track%20at%20mouse%20(obey%20region).lua</source>
</version>
</reapack>
<reapack name="me2beats_Select only odd items.lua" type="script" desc="Select only odd items">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Select%20only%20odd%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Select take (by name).lua" type="script" desc="Select take (by name)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Select%20take%20(by%20name).lua</source>
</version>
</reapack>
<reapack name="me2beats_Select take (by number).lua" type="script" desc="Select take (by number)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Select%20take%20(by%20number).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set active takes to random pitch (-12..+12).lua" type="script" desc="Set active takes to random pitch (-12..+12)">
<version name="1.0" author="me2beats" time="2017-10-02T20:58:11Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/29a27347488762bd1d916f615df1b84df57501ca/Items/me2beats_Set%20active%20takes%20to%20random%20pitch%20(-12..+12).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set active takes to random pitch (-7..+7).lua" type="script" desc="Set active takes to random pitch (-7..+7)">
<version name="1.0" author="me2beats" time="2017-10-02T20:58:11Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/29a27347488762bd1d916f615df1b84df57501ca/Items/me2beats_Set%20active%20takes%20to%20random%20pitch%20(-7..+7).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set crossfade shape to type 2.lua" type="script" desc="Set crossfade shape to type 2">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20crossfade%20shape%20to%20type%202.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set distance between items (with input box).lua" type="script" desc="Set distance between items (with input box)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20distance%20between%20items%20(with%20input%20box).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set distance between items.lua" type="script" desc="Set distance between items">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20distance%20between%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set ends of items to cursor (stretch takes).lua" type="script" desc="Set ends of items to cursor (stretch takes)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20ends%20of%20items%20to%20cursor%20(stretch%20takes).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set item rate to 1 (move item start).lua" type="script" desc="Set item rate to 1 (move item start)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20item%20rate%20to%201%20(move%20item%20start).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items fade in to default length.lua" type="script" desc="Set items fade in to default length">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20fade%20in%20to%20default%20length.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items fade in.lua" type="script" desc="Set items fade in">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20fade%20in.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items fade out to default length.lua" type="script" desc="Set items fade out to default length">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20fade%20out%20to%20default%20length.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items fade out.lua" type="script" desc="Set items fade out">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20fade%20out.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items length to 0.5 (stretch items).lua" type="script" desc="Set items length to 0.5 (stretch items)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20length%20to%200.5%20(stretch%20items).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items length to 2 (stretch items).lua" type="script" desc="Set items length to 2 (stretch items)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20length%20to%202%20(stretch%20items).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items volume to 0 db.lua" type="script" desc="Set items volume to 0 db">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20volume%20to%200%20db.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set items volume.lua" type="script" desc="Set items volume">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20items%20volume.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set min and max velocity for selected notes (silent).lua" type="script" desc="Set min and max velocity for selected notes (silent)">
<version name="1.0" author="me2beats" time="2017-09-04T16:05:01Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/559eb8f7af874a87aa58f52c07f8ed8828ffb2d2/Items/me2beats_Set%20min%20and%20max%20velocity%20for%20selected%20notes%20(silent).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set min and max velocity for selected notes.lua" type="script" desc="Set min and max velocity for selected notes">
<version name="1.0" author="me2beats" time="2017-09-04T16:05:01Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/559eb8f7af874a87aa58f52c07f8ed8828ffb2d2/Items/me2beats_Set%20min%20and%20max%20velocity%20for%20selected%20notes.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set min and max velocity for take notes (silent).lua" type="script" desc="Set min and max velocity for take notes (silent)">
<version name="1.0" author="me2beats" time="2017-09-04T16:05:01Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/559eb8f7af874a87aa58f52c07f8ed8828ffb2d2/Items/me2beats_Set%20min%20and%20max%20velocity%20for%20take%20notes%20(silent).lua</source>
</version>
</reapack>
<reapack name="me2beats_Set min and max velocity for take notes.lua" type="script" desc="Set min and max velocity for take notes">
<version name="1.0" author="me2beats" time="2017-09-04T16:05:01Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/559eb8f7af874a87aa58f52c07f8ed8828ffb2d2/Items/me2beats_Set%20min%20and%20max%20velocity%20for%20take%20notes.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set selected item notes end to end of item.lua" type="script" desc="Set selected item notes end to end of item">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20selected%20item%20notes%20end%20to%20end%20of%20item.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set selected items fades.lua" type="script" desc="Set selected items fades">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20selected%20items%20fades.lua</source>
</version>
</reapack>
<reapack name="me2beats_Set selected items length to length of item under mouse.lua" type="script" desc="Set selected items length to length of item under mouse">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Set%20selected%20items%20length%20to%20length%20of%20item%20under%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Split items in half.lua" type="script" desc="Split items in half">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Split%20items%20in%20half.lua</source>
</version>
</reapack>
<reapack name="me2beats_Split items with given length.lua" type="script" desc="Split items with given length">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Split%20items%20with%20given%20length.lua</source>
</version>
</reapack>
<reapack name="me2beats_Split items with given length_2 (without input box).lua" type="script" desc="Split items with given length_2 (without input box)">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Split%20items%20with%20given%20length_2%20(without%20input%20box).lua</source>
</version>
</reapack>
<reapack name="me2beats_Split items with given length_2.lua" type="script" desc="Split items with given length_2">
<version name="1.0" author="me2beats" time="2017-01-26T08:58:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/97365500eb18adf2cca7d40b5cf18c846f8e21d6/Items/me2beats_Split%20items%20with%20given%20length_2.lua</source>
</version>
</reapack>
<reapack name="me2beats_Split selected items according to first selected track items (delete gaps).lua" type="script" desc="Split selected items according to first selected track items (delete gaps)">
<version name="1.0" author="me2beats" time="2017-04-14T00:57:13Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/13ce8e87a429704e14d810c6af20521f2554f4d6/Items/me2beats_Split%20selected%20items%20according%20to%20first%20selected%20track%20items%20(delete%20gaps).lua</source>
</version>
</reapack>
<reapack name="me2beats_Split selected track items according to first selected track items (delete gaps).lua" type="script" desc="Split selected track items according to first selected track items (delete gaps)">
<version name="1.0" author="me2beats" time="2017-04-13T23:39:03Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/3579884609c9f50968634174220003be002ebaa2/Items/me2beats_Split%20selected%20track%20items%20according%20to%20first%20selected%20track%20items%20(delete%20gaps).lua</source>
</version>
</reapack>
<reapack name="me2beats_Stutter items (mousewheel).lua" type="script" desc="Stutter items (mousewheel)">
<version name="1.0" author="me2beats" time="2017-02-20T14:15:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fbf80761c44a042ace6ba181e285e208ce1a3896/Items/me2beats_Stutter%20items%20(mousewheel).lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-03-10T23:58:08Z">
<changelog><![CDATA[+ init
+ some bugs fixed]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/93067656be10d620755a98697c48d5c427abb09f/Items/me2beats_Stutter%20items%20(mousewheel).lua</source>
</version>
<version name="1.2" author="me2beats" time="2017-03-14T00:27:54Z">
<changelog><![CDATA[+ init
+ some bugs fixed
+ item selection bug fixed, smarter snap]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/3ab1396497e4874757fa881174d4b43a9ef01134/Items/me2beats_Stutter%20items%20(mousewheel).lua</source>
</version>
</reapack>
<reapack name="me2beats_Stutter items.lua" type="script" desc="Stutter items">
<version name="1.0" author="me2beats" time="2017-02-20T14:15:59Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/fbf80761c44a042ace6ba181e285e208ce1a3896/Items/me2beats_Stutter%20items.lua</source>
</version>
<version name="1.1" author="me2beats" time="2017-03-10T23:27:01Z">
<changelog><![CDATA[+ init
+ some bugs fixed]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/8181df9c48460f3089f982afd9dad3c216fa676c/Items/me2beats_Stutter%20items.lua</source>
</version>
<version name="1.2" author="me2beats" time="2017-03-14T00:27:54Z">
<changelog><![CDATA[+ init
+ some bugs fixed
+ item selection bug fixed, smarter snap]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/3ab1396497e4874757fa881174d4b43a9ef01134/Items/me2beats_Stutter%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Switch item source file to random in folder.lua" type="script" desc="Switch item source file to random in folder">
<version name="1.0" author="me2beats" time="2017-07-27T19:36:28Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/37ae810d8c6755cd30832aaa4c0f96da8a227743/Items/me2beats_Switch%20item%20source%20file%20to%20random%20in%20folder.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle mute for muted items.lua" type="script" desc="Toggle mute for muted items">
<version name="1.0" author="me2beats" time="2017-03-25T08:35:28Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/ad13d2377291553915a4f43d24601f7774a4b51d/Items/me2beats_Toggle%20mute%20for%20muted%20items.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle open inline editors of item at mouse.lua" type="script" desc="Toggle open inline editors of item at mouse">
<version name="1.0" author="me2beats" time="2017-04-06T01:52:56Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/ab0bb88e129483adc417dae94c110f10b931c47e/Items/me2beats_Toggle%20open%20inline%20editors%20of%20item%20at%20mouse.lua</source>
</version>
<version name="1.01" author="me2beats" time="2017-04-07T03:06:47Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/294e53efeb9a253017bb788a8a5a5b4200294f97/Items/me2beats_Toggle%20open%20inline%20editors%20of%20item%20at%20mouse.lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle open items inline editors (+ zoom).lua" type="script" desc="Toggle open items inline editors (+ zoom)">
<version name="1.0" author="me2beats" time="2017-10-02T06:30:36Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/2aeaf4a549342d31039b56e37ce1a655a91ea9b0/Items/me2beats_Toggle%20open%20items%20inline%20editors%20(+%20zoom).lua</source>
</version>
</reapack>
<reapack name="me2beats_Toggle open items inline editors.lua" type="script" desc="Toggle open items inline editors">
<version name="1.0" author="me2beats" time="2017-04-07T03:06:47Z">
<changelog><![CDATA[+ init]]></changelog>
<source main="main">https://github.com/me2beats/reapack/raw/294e53efeb9a253017bb788a8a5a5b4200294f97/Items/me2beats_Toggle%20open%20items%20inline%20editors.lua</source>
</version>
</reapack>