This repository has been archived by the owner on Jul 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.xml
1547 lines (1475 loc) · 111 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="bf4b8cc6ddae73ceae682b44498d5a59faa28ddb" name="Claudiohbsantos Scripts">
<category name="DBManager">
<reapack name="Reapack_Header.lua" type="script" desc="DBManager">
<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 DBManager is a tool designed to help organize and maintain Reaper Media Explorer Databases. It can help you import and export databases, add sounds to multiple databases at once and perform basic maintenance tasks such as removing duplicates and redirecting paths to a new location in the event of a library move. Uses DBAssistant to make changes - https://github.com/Claudiohbsantos/DBAssistant . The executable will be automatically downloaded upon installation. Depends on JS Reascript API and Lokasenna GUI Library v2.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2020-05-07T15:56:25Z">
<changelog><![CDATA[- Bug: crash when attempting to paste/import shortcuts without a selected db on list]]></changelog>
<source main="main" file="DBManager.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/DBManager.lua</source>
<source file="lua_modules/json.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/lua_modules/json.lua</source>
<source file="reascript_modules/DBM_popups.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/reascript_modules/DBM_popups.lua</source>
<source file="reascript_modules/DBM_helper.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/reascript_modules/DBM_helper.lua</source>
<source file="reascript_modules/DBM_GUI.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/reascript_modules/DBM_GUI.lua</source>
<source file="reascript_modules/DBM_actions.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/reascript_modules/DBM_actions.lua</source>
<source file="Documentation/Help.html">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/Documentation/Help.html</source>
<source file="Documentation/configTemplate.json">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/Documentation/configTemplate.json</source>
<source file="changelog.md">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/changelog.md</source>
<source platform="windows" file="dbassistant.exe">https://github.com/Claudiohbsantos/DBAssistant/releases/download/v0.3.6/dbassistant.exe</source>
<source platform="darwin" file="dbassistant">https://github.com/Claudiohbsantos/DBAssistant/releases/download/v0.3.6/dbassistant</source>
<source file="dbassistant_changelog.md">https://github.com/Claudiohbsantos/DBAssistant/releases/download/v0.3.6/changelog.md</source>
<source platform="darwin" file="osx_launchers/osx_add.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/osx_launchers/osx_add.sh</source>
<source platform="darwin" file="osx_launchers/osx_deduplicate.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/osx_launchers/osx_deduplicate.sh</source>
<source platform="darwin" file="osx_launchers/osx_export.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/osx_launchers/osx_export.sh</source>
<source platform="darwin" file="osx_launchers/osx_version.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/4b11437d21080f2fd3531c19dbc6854ada64be76/DBManager/osx_launchers/osx_version.sh</source>
</version>
<version name="1.12" author="Claudiohbsantos" time="2020-05-07T16:02:24Z">
<changelog><![CDATA[- Bug: crash when attempting to paste/import shortcuts without a selected db on list]]></changelog>
<source main="main" file="DBManager.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/DBManager.lua</source>
<source file="lua_modules/json.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/lua_modules/json.lua</source>
<source file="reascript_modules/DBM_popups.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/reascript_modules/DBM_popups.lua</source>
<source file="reascript_modules/DBM_helper.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/reascript_modules/DBM_helper.lua</source>
<source file="reascript_modules/DBM_GUI.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/reascript_modules/DBM_GUI.lua</source>
<source file="reascript_modules/DBM_actions.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/reascript_modules/DBM_actions.lua</source>
<source file="Documentation/Help.html">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/Help.html</source>
<source file="Documentation/images/CreateNewDialog.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/CreateNewDialog.png</source>
<source file="Documentation/images/ExportDialog.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/ExportDialog.png</source>
<source file="Documentation/images/Interface.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/Interface.png</source>
<source file="Documentation/images/addDialog.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/addDialog.png</source>
<source file="Documentation/images/folders.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/folders.png</source>
<source file="Documentation/images/redirectPath.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/redirectPath.png</source>
<source file="Documentation/images/unsavedWarning.png">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/images/unsavedWarning.png</source>
<source file="Documentation/configTemplate.json">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/Documentation/configTemplate.json</source>
<source file="changelog.md">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/changelog.md</source>
<source platform="windows" file="dbassistant.exe">https://github.com/Claudiohbsantos/DBAssistant/releases/download/v0.3.6/dbassistant.exe</source>
<source platform="darwin" file="dbassistant">https://github.com/Claudiohbsantos/DBAssistant/releases/download/v0.3.6/dbassistant</source>
<source file="dbassistant_changelog.md">https://github.com/Claudiohbsantos/DBAssistant/releases/download/v0.3.6/changelog.md</source>
<source platform="darwin" file="osx_launchers/osx_add.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/osx_launchers/osx_add.sh</source>
<source platform="darwin" file="osx_launchers/osx_deduplicate.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/osx_launchers/osx_deduplicate.sh</source>
<source platform="darwin" file="osx_launchers/osx_export.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/osx_launchers/osx_export.sh</source>
<source platform="darwin" file="osx_launchers/osx_version.sh">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/bf4b8cc6ddae73ceae682b44498d5a59faa28ddb/DBManager/osx_launchers/osx_version.sh</source>
</version>
</reapack>
</category>
<category name="JSFX">
<reapack name="CS Channel 32 Channel Mixer.jsfx" type="effect" desc="CS Channel 32 Channel Mixer">
<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 CS Channel 32 Channel Mixer\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-07-02T20:59:21Z">
<changelog><![CDATA[- Initial Release ]]></changelog>
<source>https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/7e3f24c6792a3b903a8c37e346718204e133b016/JSFX/CS%20Channel%2032%20Channel%20Mixer.jsfx</source>
</version>
</reapack>
<reapack name="CS Channel Router.jsfx" type="effect" desc="CS Channel Router">
<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 CS Channel Router\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-07-02T20:59:21Z">
<changelog><![CDATA[- Initial Release ]]></changelog>
<source>https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/7e3f24c6792a3b903a8c37e346718204e133b016/JSFX/CS%20Channel%20Router.jsfx</source>
</version>
</reapack>
<reapack name="CS LR to Center Channel Send (Ch 3 Mixer).jsfx" type="effect" desc="CS LR to Center Channel Send (Ch 3 Mixer)">
<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 CS LR to Center Channel Send (Ch 3 Mixer)\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-07-02T20:59:21Z">
<changelog><![CDATA[- Initial Release ]]></changelog>
<source>https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/7e3f24c6792a3b903a8c37e346718204e133b016/JSFX/CS%20LR%20to%20Center%20Channel%20Send%20(Ch%203%20Mixer).jsfx</source>
</version>
</reapack>
<reapack name="CS Stereo Phase Meter.jsfx" type="effect" desc="CS Stereo Phase Meter">
<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 CS Stereo Phase Meter\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.2" author="Claudiohbsantos" time="2018-07-02T21:00:25Z">
<changelog><![CDATA[- Initial Release ]]></changelog>
<source>https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d29f782d18f2b644b18a1d4aa442570cd6bfdbd5/JSFX/CS%20Stereo%20Phase%20Meter.jsfx</source>
</version>
</reapack>
<reapack name="CS Surround Channel Order Converter.jsfx" type="effect" desc="CS Surround Channel Order Converter">
<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 CS Surround Channel Order Converter\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-07-02T20:59:21Z">
<changelog><![CDATA[- Initial Release ]]></changelog>
<source>https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/7e3f24c6792a3b903a8c37e346718204e133b016/JSFX/CS%20Surround%20Channel%20Order%20Converter.jsfx</source>
</version>
</reapack>
<reapack name="CS Surround LFE Send.jsfx" type="effect" desc="CS Surround LFE Send">
<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 CS Surround LFE Send\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-07-02T20:59:21Z">
<changelog><![CDATA[- Initial Release ]]></changelog>
<source>https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/7e3f24c6792a3b903a8c37e346718204e133b016/JSFX/CS%20Surround%20LFE%20Send.jsfx</source>
</version>
</reapack>
</category>
<category name="Lua/Automation">
<reapack name="CS_ConvertVolumeAutomationFadesToItemFades.lua" type="script" desc="Convert Volume Automation Fades To Item Fades">
<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 Convert Volume Automation Fades To Item Fades\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-03-12T18:31:35Z">
<changelog><![CDATA[- Renamed]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/101453266e5cb0516100fba848a87d1bad008eea/Lua/Automation/CS_ConvertVolumeAutomationFadesToItemFades.lua</source>
</version>
<version name="1.21" author="Claudiohbsantos" time="2018-03-13T19:37:23Z">
<changelog><![CDATA[- Fixed cases in which there are two overlapping/very close points at the low end of the fade. ]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/77afac05871a9f00cd1a8aa2087a0a1c77f5d527/Lua/Automation/CS_ConvertVolumeAutomationFadesToItemFades.lua</source>
</version>
<version name="1.22" author="Claudiohbsantos" time="2018-03-13T19:49:35Z">
<changelog><![CDATA[- Fixed Problem with items with fade out but no fade in]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/be4cf3a7f1de4ee77df378f413acc6ae604c792b/Lua/Automation/CS_ConvertVolumeAutomationFadesToItemFades.lua</source>
</version>
<version name="1.23" author="Claudiohbsantos" time="2018-03-13T20:02:11Z">
<changelog><![CDATA[- Script now removes extra points in the threshold area to prevent script from chaning fade on retriggering.]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/005a13b5735a07b4a69301a5769563c54f9c9ab2/Lua/Automation/CS_ConvertVolumeAutomationFadesToItemFades.lua</source>
</version>
</reapack>
<reapack name="CS_Reset Volume Envelope from selected Tracks.lua" type="script" desc="CS_Reset Volume Envelope from selected Tracks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 CS_Reset Volume Envelope from selected Tracks\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Removes all Volume envelope points from track. Keep in mind it doesn't remove automation items.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-03-11T20:17:54Z">
<changelog><![CDATA[- initial release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/7f27cb52a2ace901e26ed63c87830c568ca0f9d5/Lua/Automation/CS_Reset%20Volume%20Envelope%20from%20selected%20Tracks.lua</source>
</version>
</reapack>
<reapack name="CS_Set All Track Envelopes To Fader Scaling.lua" type="script" desc="Set All Track Envelopes To Fader Scaling">
<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 Set All Track Envelopes To Fader Scaling\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab \sa180\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0beta" author="Claudiohbsantos" time="2017-07-26T19:50:48Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/30dd95905da3a1336be3ec4a4435ed7647a7d08a/Lua/Automation/CS_Set%20All%20Track%20Envelopes%20To%20Fader%20Scaling.lua</source>
</version>
</reapack>
</category>
<category name="Lua/Editing">
<reapack name="CS_Copy selected item before all markers within time selection.lua" type="script" desc="Copy selected item before all markers within time selection">
<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 Copy selected item before all markers within time selection\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main" file="CS_Copy selected item before all markers within time selection/CS_Copy selected item before all markers within time selection.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Copy%20selected%20item%20before%20all%20markers%20within%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="CS_Copy Take Volume Envelope to Track Volume Envelope.lua" type="script" desc="Copy Take Volume Envelope to Track Volume Envelope">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Copy Take Volume Envelope to Track Volume Envelope\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Updated Dependency Loading]]></changelog>
<source main="main" file="CS_Copy Take Volume Envelope to Track Volume Envelope/CS_Copy Take Volume Envelope to Track Volume Envelope.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Copy%20Take%20Volume%20Envelope%20to%20Track%20Volume%20Envelope.lua</source>
<source file="CS_Copy Take Volume Envelope to Track Volume Envelope/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Copy Track Volume Envelope to Selected Takes and reset track envelope.lua" type="script" desc="CS_Copy Track Volume Envelope to Selected Takes and reset track envelope">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 CS_Copy Track Volume Envelope to Selected Takes and reset track envelope\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script copies the volume envelope from the item track and pastes it onto the selected take volume envelope, overwriting it if it already exists. The Track volume envelope in the section is reset to 0.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-28T06:06:24Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/c4316dcae28321d801d45912c6c1caf38b3e81c1/Lua/Editing/CS_Copy%20Track%20Volume%20Envelope%20to%20Selected%20Takes%20and%20reset%20track%20envelope.lua</source>
</version>
</reapack>
<reapack name="CS_Edit Bottom Item to Match Edits in selected items on top track.lua" type="script" desc="CS_Edit Bottom Item to Match Edits in selected items on top track">
<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 CS_Edit Bottom Item to Match Edits in selected items on top track\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script mirrors the cuts and fades on items on the top track onto a long item below them. Very useufl to crate quick layering of atmos and pads once you've edited one of the layers.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Instructions:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Select items on 2 tracks (tracks don't need to be contiguous).\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Make sure there is only a single item selected on the bottom track\sa180\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-27T17:54:00Z">
<changelog><![CDATA[-- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/21c74d235930306354fa9e43f254801d04e749f6/Lua/Editing/CS_Edit%20Bottom%20Item%20to%20Match%20Edits%20in%20selected%20items%20on%20top%20track.lua</source>
</version>
</reapack>
<reapack name="CS_Extend edges in both directions fading from time selection.lua" type="script" desc="CS_Extend edges in both directions fading from time selection">
<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 CS_Extend edges in both directions fading from time selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Extends both clip edges, creating fades if there is a time selection within the clip\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-28T06:06:24Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/c4316dcae28321d801d45912c6c1caf38b3e81c1/Lua/Editing/CS_Extend%20edges%20in%20both%20directions%20fading%20from%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="CS_Extend Item to Full Length.lua" type="script" desc="CS_Extend Item to Full Length">
<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 CS_Extend Item to Full Length\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Extends selected items to it's full length in place.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="2.0" author="Claudiohbsantos" time="2017-03-27T17:54:00Z">
<changelog><![CDATA[- fixed bug when item is in beginning of timeline]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/21c74d235930306354fa9e43f254801d04e749f6/Lua/Editing/CS_Extend%20Item%20to%20Full%20Length.lua</source>
</version>
<version name="2.1" author="Claudiohbsantos" time="2017-04-02T17:26:45Z">
<changelog><![CDATA[- Script now keeps item selected after extending]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/9db484f0d5d21f89fe6ffb5c0654e7df683baf2b/Lua/Editing/CS_Extend%20Item%20to%20Full%20Length.lua</source>
</version>
</reapack>
<reapack name="CS_Extend selected item to fill time Selection.lua" type="script" desc="CS_Extend selected item to fill time Selection">
<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 CS_Extend selected item to fill time Selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Extends selected item to fill time selection. Time selection must overlap at least partially with selected item.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-29T07:16:04Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/81bb4b11c63798a4eb2e40e1abf2086ad47eb14b/Lua/Editing/CS_Extend%20selected%20item%20to%20fill%20time%20Selection.lua</source>
</version>
</reapack>
<reapack name="CS_Implode two monos into stereo.lua" type="script" desc="CS_Implode two monos into stereo">
<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 CS_Implode two monos into stereo\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Implodes two clips on separate tracks to a single stereo clip on te top track.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab keeps handles on both clips\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab prevents take envelope from being glue to file\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab keeps fades intact\sa180\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.3" author="Claudiohbsantos" time="2017-03-27T16:55:48Z">
<changelog><![CDATA[-- Prevents take envelope from being glued
-- Prevents neighboring clips from having their fades altered]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/b66a898fe7f950750e45ad018f52149f98cafd58/Lua/Editing/CS_Implode%20two%20monos%20into%20stereo.lua</source>
</version>
<version name="1.4" author="Claudiohbsantos" time="2018-05-03T03:47:52Z">
<changelog><![CDATA[-- Added Some error Catching to prevent errors when no items are selected.
-- This is script is being made obsolete. Check the new ]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/206a3c2d1f7eaa03cc2ad02c8b6e4ddd10014c14/Lua/Editing/CS_Implode%20two%20monos%20into%20stereo.lua</source>
</version>
</reapack>
<reapack name="CS_Label REV if it has been reversed.lua" type="script" desc="CS_Label REV if it has been reversed">
<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 CS_Label REV if it has been reversed\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Labels a take name with the suffix {\b REV} if it has been reversed. Removes the label if it is unreversed.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-28T06:06:24Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/c4316dcae28321d801d45912c6c1caf38b3e81c1/Lua/Editing/CS_Label%20REV%20if%20it%20has%20been%20reversed.lua</source>
</version>
</reapack>
<reapack name="CS_Move Cursor To Middle of Time Selection.lua" type="script" desc="CS_Move Cursor To Middle of Time Selection">
<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 CS_Move Cursor To Middle of Time Selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Moves edit cursor to middle of current time selection\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-04-09T02:15:35Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/a82b380cac8c744b0748aca9a7430633b3beb7f3/Lua/Editing/CS_Move%20Cursor%20To%20Middle%20of%20Time%20Selection.lua</source>
</version>
</reapack>
<reapack name="CS_Nudge Cursor or Item left by grid division based on Item Selection.lua" type="script" desc="CS_Nudge Cursor or Item left by grid division based on Item Selection">
<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 CS_Nudge Cursor or Item left by grid division based on Item Selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 If there is at least 1 item selected, the script nudges the items left by grid division. Otherwise it nudges the edit cursor left by same ammount\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-27T17:54:00Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/21c74d235930306354fa9e43f254801d04e749f6/Lua/Editing/CS_Nudge%20Cursor%20or%20Item%20left%20by%20grid%20division%20based%20on%20Item%20Selection.lua</source>
</version>
</reapack>
<reapack name="CS_Nudge Cursor or Item right by grid division based on Item Selection.lua" type="script" desc="CS_Nudge Cursor or Item right by grid division based on Item Selection">
<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 CS_Nudge Cursor or Item right by grid division based on Item Selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 If there is at least 1 item selected, the script nudges the items right by grid division. Otherwise it nudges the edit cursor right by same ammount\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-27T17:54:00Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/21c74d235930306354fa9e43f254801d04e749f6/Lua/Editing/CS_Nudge%20Cursor%20or%20Item%20right%20by%20grid%20division%20based%20on%20Item%20Selection.lua</source>
</version>
</reapack>
<reapack name="CS_Pro Tools Tab to Next Transient.lua" type="script" desc="CS_Pro Tools Tab to Next Transient">
<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 Pro Tools Tab to Next Transient\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Tab to Next Transient action mimicking the behaviour of the {\b Pro Tools DAW} action, which jumps to the next clip once the end of the current one is reached.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2017-03-27T16:34:25Z">
<changelog><![CDATA[- slight optimization]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/84b0bc424d9cb197d30cb67156180bed58952bf1/Lua/Editing/CS_Pro%20Tools%20Tab%20to%20Next%20Transient.lua</source>
</version>
</reapack>
<reapack name="CS_Pro Tools Tab to Previous Transient.lua" type="script" desc="CS_Pro Tools Tab to Previous Transient">
<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 CS_Pro Tools Tab to Previous Transient\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Tab to transient that mimicks Pro Tools behaviour of jumping to previous clip once edge of clip is reached\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-27T16:34:25Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/84b0bc424d9cb197d30cb67156180bed58952bf1/Lua/Editing/CS_Pro%20Tools%20Tab%20to%20Previous%20Transient.lua</source>
</version>
</reapack>
<reapack name="CS_Remove Selected area of Item and select right portion.lua" type="script" desc="CS_Remove Selected area of Item and select right portion">
<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 CS_Remove Selected area of Item and select right portion\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Removes area within time selection of selected item and selects right portion of remaining clip Specially useful in custom actions, such as paired with Snap to Previous Clip to create an action that removes selected area and closes gap without moving the whole track.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-28T06:06:24Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/c4316dcae28321d801d45912c6c1caf38b3e81c1/Lua/Editing/CS_Remove%20Selected%20area%20of%20Item%20and%20select%20right%20portion.lua</source>
</version>
</reapack>
<reapack name="CS_Render as new take with handles removing labels and extensions.lua" type="script" desc="CS_Render as new take with handles removing labels and extensions and setting original FX offline">
<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 CS_Render as new take with handles removing labels and extensions\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This scripts renders the item into a new take, keeping handles outside of the current item edges. After rendereing, it removes extensions such as .wav, render, -glued, and such. The fx in the original take are set to offline.\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-04-09T02:15:35Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/a82b380cac8c744b0748aca9a7430633b3beb7f3/Lua/Editing/CS_Render%20as%20new%20take%20with%20handles%20removing%20labels%20and%20extensions.lua</source>
</version>
</reapack>
<reapack name="CS_Shrink edges in both directions fading from time selection.lua" type="script" desc="CS_Shrink edges in both directions fading from time selection">
<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 CS_Shrink edges in both directions fading from time selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Shrinks both clip edges, creating fades if there is a time selection within the clip\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-03-28T06:06:24Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/c4316dcae28321d801d45912c6c1caf38b3e81c1/Lua/Editing/CS_Shrink%20edges%20in%20both%20directions%20fading%20from%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Delete.lua" type="script" desc="Smart Delete">
<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 \par}
{\pard \ql \f0 \sa180 \li0 \fi0 Deletes based on mouse context\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.5" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Updated Dependency loading]]></changelog>
<source main="main" file="CS_Smart Delete/CS_Smart Delete.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Delete.lua</source>
<source file="CS_Smart Delete/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Fade.lua" type="script" desc="CS_Smart Fade">
<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 CS_Smart Fade\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\b No Items Selected} When there are no items selected, the fade is applied to the Item under the Mouse, at the mouse position. If the Mouse is closer to the end of the item, a {\b Fade Out} is applied. If the Mouse is closer to the beginning of the item, a {\b Fade In} is applied. {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_noitems.gif"}}{\fldrslt{\ul
No Items Selected
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\b One Item Selected} When a single item is selected, the script behaves as follows (in order of highest priority to lowest):\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If there is a time selection covering part of the item, applies {\b SWS Fade in/out/In and out} depending on what part the time selection covers\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If there is no time selection or it doesn't overlap the item, {\b Fade in or out to mouse position}. Note that in this case the mouse doesn't have to be on top of the selected item.\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_Single%20Item.gif"}}{\fldrslt{\ul
1 Item Selected
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\b Two Items Selected} When two items are selected, the script behaves as follows (in order of highest priority to lowest):\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection overlaps beginning or end of both, {\b Fade in} or {\b Fade Out}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection overlaps the joint or gap between both items, {\b Extend Items to fill time selection and Fade}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection doesn't overlap both items and mouse is not on top of items, {\b Fade overlap of items}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection doesn't overlap both items and mouse is on top of items, {\b Fadein / fadeout}\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\i Mouse On Top} {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_2%20items%20No%20mouse.gif"}}{\fldrslt{\ul
2 Items With Mouse
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\i No Mouse On Top} {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_2%20items%20mouse%20on%20top%20difference.gif"}}{\fldrslt{\ul
2 Items without Mouse
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\i Comparing difference between mouse on top and not on top} {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_2%20items%20mouse%20on%20top%20difference.gif"}}{\fldrslt{\ul
2 Items Comparison
}}}
{\b Three Items Selected} When three Items are selected, the script behaves as follows (in order of highest priority to lowest)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection is as big or bigger than center item, and is contained by outer items, {\b Extend center item to fill time selection and fade overlaps}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection covers beginning or end of {\b all} items, {\b Fade in or Out to Time Selection}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If mouse is on top of item and it's position coincides with {\b all} selected items, {\b Fade in or Out to Mouse Position}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If all else is false, {\b fade overlaps between items}\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_3%20items.gif"}}{\fldrslt{\ul
3 Items Selected
}}}
\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\b Four or More Items Selected} When there are four or more items selected, the script behaves as follows (in order of highest priority to lowest)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If time selection covers beginning or end of {\b all} items, {\b Fade in or Out to Time Selection}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If mouse is on top of item and it's position coincides with {\b all} selected items, {\b Fade in or Out to Mouse Position}\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If all else is false, {\b fade overlaps between items}\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_Layers.gif"}}{\fldrslt{\ul
4+ Items Selected
}}}
{\field{\*\fldinst{HYPERLINK "https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/blob/master/Licecaps/CS_SmartFade_Multiple%20Items.gif"}}{\fldrslt{\ul
Multiple Selected
}}}
\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="3.0" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[-- Cleaned Up Code and Removed Dead Functions]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Fade.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Mute.lua" type="script" desc="Smart Mute">
<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 \par}
{\pard \ql \f0 \sa180 \li0 \fi0 Mutes based on mouse context\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Updated Dependencies]]></changelog>
<source main="main" file="CS_Smart Mute/CS_Smart Mute.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Mute.lua</source>
<source file="CS_Smart Mute/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Set Snap Offset.lua" type="script" desc="Smart Set Snap Offset">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Smart Set Snap Offset\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Trims behind item under mouse cursor,\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Updated Name]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Set%20Snap%20Offset.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Split Following Snapping.lua" type="script" desc="Smart Split - Following Snap">
<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 Smart Split - Following Snap\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Splits item under mouse cursor at closest grid line\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Items always end deselected\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If Mouse is on top of an item and enclosed by the time selection, split item at time selection edges\sa180\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Split%20Following%20Snapping.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Split.lua" type="script" desc="CS_Smart Split">
<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 CS_Smart Split\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Splits item under mouse cursor,\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.3" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Items always end deselected
- If Mouse is on top of an item and enclosed by the time selection, split item at time selection edges]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Split.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Trim Left Edge.lua" type="script" desc="Smart Trim Left Edge">
<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 Smart Trim Left Edge\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Trims behind item under mouse cursor,\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Updated Dependency loading]]></changelog>
<source main="main" file="CS_Smart Trim Left Edge/CS_Smart Trim Left Edge.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Trim%20Left%20Edge.lua</source>
<source file="CS_Smart Trim Left Edge/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Smart Trim Right Edge.lua" type="script" desc="CS_Smart Trim Right Edge">
<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 CS_Smart Trim Right Edge\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Trims behind item under mouse cursor,\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Updated Dependency loading]]></changelog>
<source main="main" file="CS_Smart Trim Right Edge/CS_Smart Trim Right Edge.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Editing/CS_Smart%20Trim%20Right%20Edge.lua</source>
<source file="CS_Smart Trim Right Edge/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
</category>
<category name="Lua/Items">
<reapack name="CS_Item Disable Invert Phase.lua" type="script" desc="Item Disable Invert Phase">
<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 Item Disable Invert Phase\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-12T23:20:41Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/0339f8cce9665d62a14d302f16327eac6e868558/Lua/Items/CS_Item%20Disable%20Invert%20Phase.lua</source>
</version>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:13Z">
<changelog><![CDATA[- Updated Dependency loading]]></changelog>
<source main="main" file="CS_Item Disable Invert Phase/CS_Item Disable Invert Phase.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Items/CS_Item%20Disable%20Invert%20Phase.lua</source>
<source file="CS_Item Disable Invert Phase/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Item Disable LoopSource.lua" type="script" desc="Item Disable LoopSource">
<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 Item Disable LoopSource\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-12T23:20:41Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/0339f8cce9665d62a14d302f16327eac6e868558/Lua/Items/CS_Item%20Disable%20LoopSource.lua</source>
</version>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:13Z">
<changelog><![CDATA[- Updated Dependency loading]]></changelog>
<source main="main" file="CS_Item Disable LoopSource/CS_Item Disable LoopSource.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Items/CS_Item%20Disable%20LoopSource.lua</source>
<source file="CS_Item Disable LoopSource/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Item Enable Invert Phase.lua" type="script" desc="Item Enable Invert Phase">
<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 Item Enable Invert Phase\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-12T23:20:41Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/0339f8cce9665d62a14d302f16327eac6e868558/Lua/Items/CS_Item%20Enable%20Invert%20Phase.lua</source>
</version>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:13Z">
<changelog><![CDATA[- Updated Dependency Loading]]></changelog>
<source main="main" file="CS_Item Enable Invert Phase/CS_Item Enable Invert Phase.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Items/CS_Item%20Enable%20Invert%20Phase.lua</source>
<source file="CS_Item Enable Invert Phase/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Item Enable LoopSource.lua" type="script" desc="Item Enable LoopSource">
<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 Item Enable LoopSource\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-12T23:20:41Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/0339f8cce9665d62a14d302f16327eac6e868558/Lua/Items/CS_Item%20Enable%20LoopSource.lua</source>
</version>
<version name="1.1" author="Claudiohbsantos" time="2018-05-18T23:51:13Z">
<changelog><![CDATA[- updated dependency loading]]></changelog>
<source main="main" file="CS_Item Enable LoopSource/CS_Item Enable LoopSource.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Items/CS_Item%20Enable%20LoopSource.lua</source>
<source file="CS_Item Enable LoopSource/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/f3e4b6d691e244983a90f6ff85380d01cae59900/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Select All item with same custom color as selected item.lua" type="script" desc="Select All item with same custom color as selected item">
<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 Select All item with same custom color as selected item\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-06-06T14:35:51Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main" file="CS_Select All item with same custom color as selected item/CS_Select All item with same custom color as selected item.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/157d98ba38901791da03f824bcebad47cf0a89ab/Lua/Items/CS_Select%20All%20item%20with%20same%20custom%20color%20as%20selected%20item.lua</source>
<source file="CS_Select All item with same custom color as selected item/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/157d98ba38901791da03f824bcebad47cf0a89ab/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Select all items with same number of channels.lua" type="script" desc="Select all items with same number of channels">
<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 Select all items with same number of channels\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-06-06T14:35:51Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main" file="CS_Select all items with same number of channels/CS_Select all items with same number of channels.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/157d98ba38901791da03f824bcebad47cf0a89ab/Lua/Items/CS_Select%20all%20items%20with%20same%20number%20of%20channels.lua</source>
<source file="CS_Select all items with same number of channels/CS_Library.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/157d98ba38901791da03f824bcebad47cf0a89ab/Lua/Libraries/CS_Library.lua</source>
</version>
</reapack>
<reapack name="CS_Select all takes with volume below threshold.lua" type="script" desc="Select all active takes with take volume below threshold">
<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 Select all active takes with take volume below threshold\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.1" author="Claudiohbsantos" time="2019-04-17T22:18:14Z">
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/ecec2559110cce576d5a23b6a19314176c0b21ef/Lua/Items/CS_Select%20all%20takes%20with%20volume%20below%20threshold.lua</source>
</version>
<version name="1.2" author="Claudiohbsantos" time="2019-04-19T21:11:28Z">
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/ce744f62047426bab1d0e58060e3fcdd2c268795/Lua/Items/CS_Select%20all%20takes%20with%20volume%20below%20threshold.lua</source>
</version>
</reapack>
</category>
<category name="Lua/Markers">
<reapack name="CS_Add First Marker that crosses item to the take name.lua" type="script" desc="Add First Marker that crosses item to the take name">
<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 Add First Marker that crosses item to the take name\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-03T03:47:52Z">
<changelog><![CDATA[- ]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/206a3c2d1f7eaa03cc2ad02c8b6e4ddd10014c14/Lua/Markers/CS_Add%20First%20Marker%20that%20crosses%20item%20to%20the%20take%20name.lua</source>
</version>
</reapack>
<reapack name="CS_Create Marker 0 - Blue.lua" type="script" desc="Create Marker 0 - Blue">
<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 Create Marker 0 - Blue\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Creates a blue marker 0 at edit cursor position. Can have many markers 0 created at different positions, and all are reset by action "Reset Marker 0 to Cursor Position", so it can be used to craeate temporary markers\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-04-09T02:15:35Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/a82b380cac8c744b0748aca9a7430633b3beb7f3/Lua/Markers/CS_Create%20Marker%200%20-%20Blue.lua</source>
</version>
</reapack>
<reapack name="CS_Create Marker 0 - Green.lua" type="script" desc="Create Marker 0 - Green">
<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 Create Marker 0 - Green\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Creates a green marker 0 at edit cursor position. Can have many markers 0 created at different positions, and all are reset by action "Reset Marker 0 to Cursor Position", so it can be used to craeate temporary markers\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-04-09T02:15:35Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/a82b380cac8c744b0748aca9a7430633b3beb7f3/Lua/Markers/CS_Create%20Marker%200%20-%20Green.lua</source>
</version>
</reapack>
<reapack name="CS_Create Marker 0.lua" type="script" desc="Create Marker 0 - Red">
<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 Create Marker 0\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Creates a marker with ID 0 and color red at the edit cursor position. Many markers with the same id can be added and removed at once with the "Reset Marker 0 to cursor position" action, so it's great to use as a temporary marker\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-04-09T02:15:35Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/a82b380cac8c744b0748aca9a7430633b3beb7f3/Lua/Markers/CS_Create%20Marker%200.lua</source>
</version>
</reapack>
<reapack name="CS_Create Markers at Snap Offsets.lua" type="script" desc="Create Markers at Selected Items Snap Offsets">
<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 CS_Create Markers at Snap Offsets\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-03T03:47:52Z">
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/206a3c2d1f7eaa03cc2ad02c8b6e4ddd10014c14/Lua/Markers/CS_Create%20Markers%20at%20Snap%20Offsets.lua</source>
</version>
</reapack>
<reapack name="CS_Create random colored region at time selection.lua" type="script" desc="CS_Create random colored region at time selection">
<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 CS_Create random colored region at time selection\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Creates a random colored regio at current time selection\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2017-04-09T02:15:35Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/a82b380cac8c744b0748aca9a7430633b3beb7f3/Lua/Markers/CS_Create%20random%20colored%20region%20at%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="CS_Go to highest numbered Marker.lua" type="script" desc="Go to highest numbered Marker">
<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 Go to highest numbered Marker\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-18T23:51:39Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main" file="CS_Go to highest numbered Marker/CS_Go to highest numbered Marker.lua">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/d6697b40790e6e4ba3e34fb88ec1cb7927a32d9f/Lua/Markers/CS_Go%20to%20highest%20numbered%20Marker.lua</source>
</version>
</reapack>
<reapack name="CS_Place Markers at clipping points.lua" type="script" desc="Place Markers at clipping points">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Place Markers at clipping points\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-12T23:20:41Z">
<changelog><![CDATA[- Initial Release]]></changelog>
<source main="main">https://github.com/Claudiohbsantos/Claudiohbsantos-Scripts/raw/0339f8cce9665d62a14d302f16327eac6e868558/Lua/Markers/CS_Place%20Markers%20at%20clipping%20points.lua</source>
</version>
</reapack>
<reapack name="CS_Place Markers at Out of Phase points.lua" type="script" desc="Place Markers at Out of Phase points">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Place Markers at Out of Phase points\par}
}
]]></description>
<link rel="website">http://claudiohbsantos.com</link>
</metadata>
<version name="1.0" author="Claudiohbsantos" time="2018-05-12T23:20:41Z">