-
Notifications
You must be signed in to change notification settings - Fork 5
/
DependencyControl.json
1199 lines (1199 loc) · 50.1 KB
/
DependencyControl.json
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
{
"dependencyControlFeedFormatVersion": "0.2.0",
"name": "line0's Aegisub Scripts",
"description": "Main repository for all of line0's automation macros.",
"baseUrl": "https://github.com/TypesettingTools/line0-Aegisub-Scripts",
"fileBaseUrl": "https://raw.githubusercontent.com/TypesettingTools/line0-Aegisub-Scripts",
"url": "@{baseUrl}",
"maintainer": "line0",
"macros": {
"l0.ASSWipe": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "ASSWipe",
"description": "Performs script cleanup, removes unnecessary tags and lines.",
"channels": {
"master": {
"version": "0.5.0",
"released": "2019-10-24",
"default": false,
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "0A05260E0358EF23897C3CFDCAEFC888AABC6A5B"
},
{ "name": ".lua", "delete": true }
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "SubInspector.Inspector",
"name": "SubInspector",
"url": "https://github.com/TypesettingTools/SubInspector",
"version": "0.7.2",
"feed": "https://raw.githubusercontent.com/TypesettingTools/SubInspector/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.5.0",
"released": "2019-10-24",
"default": true,
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "0A05260E0358EF23897C3CFDCAEFC888AABC6A5B"
},
{ "name": ".lua", "delete": true }
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "SubInspector.Inspector",
"name": "SubInspector",
"url": "https://github.com/TypesettingTools/SubInspector",
"version": "0.7.2",
"feed": "https://raw.githubusercontent.com/TypesettingTools/SubInspector/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.1.0": [
"Sync with ASSFoundation changes",
"Start versioning with DependencyControl"
],
"0.1.3": [
"Enabled auto-update using DependencyControl",
"Changed config file to \\config\\l0.ASSWipe.json (rename ASSWipe.json to restore your existing configuration)",
"DependencyControl compatibility fixes"
],
"0.2.0": [
"Scaled clips and drawings are now handled correctly and can be converted to floating-point.",
"Drawings with extraneous ordinates are now detected and ASSWipe can attempt to fix them."
],
"0.2.1": [
"Fixed out-of-memory errors on huge scripts.",
"Fixed the progress not being updated when no lines are being cleaned."
],
"0.2.2": [
"ASSWipe now skips and warns about lines using undefined styles (instead of erroring out)."
],
"0.3.0": [
"Added support for purging invisible contours from drawings and clips.",
"ASSWipe can now only be run when a video is loaded.",
"The progress bar is now always updated for every processed line."
],
"0.3.1": [
"Fixed a bug that would cause a rollback on lines that were cleaned up properly."
],
"0.3.2": [
"The 'Combine consecutive identical lines' feature no longer ignores layer order changes inbetween candidate fbf lines. The previous behavior caused the layer blending order to break when certain conditions were met. Thanks coldhell for reporting this one."
],
"0.3.3": [
"The blending order check introduced for the 'Combine consecutive identical lines' feature in 0.3.2 now considers merge operations that have already taken place in the current line's blending groups, which considerably improves the number of mergeable lines in some cases."
],
"0.4.0": [
"The performance and memory usage of the 'clean drawings' features has been greatly improved.",
"Memory footprint has been decreased by removing the undo text from already cleaned lines.",
"A cleaning option was added to filter/strip extradata from processed scripts.",
"A cleaning option was aded to strip comments from processed lines.",
"The user can now cancel ASSWipe at pretty much any point in time when cleaning is in progress.",
"Upgraded ASSFoundation to v0.4.0 which fixes many cleaning issues experienced in the previous version of ASSWipe. See the ASSFoundation changelog for details.",
"Configuration for the 'quirks mode' added in ASSFoundation v0.4.0 is now exposed to the user, letting them tailor the cleaning process to either libass or vsfitlter.",
"After cleaning contours of a drawing, a dedicated hash check is performed to ensure the process didn't visually change the lines. When it detects the change, it automatically reverts to the original contours and resumes the cleaning process. The amount of affected contours is reported in the final report.",
"Added an option to ignore hash changes caused by contour cleaning. This may visually affect drawings, so don't use this unsupervised!",
"Logging/error reporting was improved and logs are no written to a log file."
],
"0.5.0": [
"The 'Merge consecutive tag sections' feature now skips sections that contain any tag from a customizable exception list. Defaults to karaoke tags to avoid breaking poorly written karaoke templater scripts."
]
}
},
"l0.CascadeTransforms": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Cascade Transforms",
"description": "Changes transforms in a line to be transformed in a consecutive fashion, with the transform time being split evenly.",
"channels": {
"master": {
"version": "0.1.0",
"default": false,
"released": "2015-04-17",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "71277E59825413746CCB33231A2FBC396995E8AB"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.1.0",
"default": true,
"released": "2015-04-17",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "71277E59825413746CCB33231A2FBC396995E8AB"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": { "0.1.0": ["initial release"] }
},
"l0.HighlightSubstring": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Highlight Substring",
"description": "Highlights a substring at a given index in a line by underlaying a colored rectangle.",
"channels": {
"master": {
"version": "0.1.1",
"default": false,
"released": "2019-02-17",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "3158BBDB18C8B1208049AB166D1A566359B866FE"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.1.1",
"default": true,
"released": "2019-02-17",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "3158BBDB18C8B1208049AB166D1A566359B866FE"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.1.0": ["initial release"],
"0.1.1": [
"HighlightSubstring now properly works with ASSFoundation v0.4.0+"
]
}
},
"l0.InsertLineBreaks": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Insert Line Breaks",
"description": "Inserts hard line breaks after n characters, but tries to avoid breaking up words.",
"channels": {
"master": {
"version": "0.2.0",
"default": false,
"released": "2019-02-17",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "1AC3A3FD9119800D2F660D107CB0D2FB69A9D2B4"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.2.0",
"default": true,
"released": "2019-02-17",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "1AC3A3FD9119800D2F660D107CB0D2FB69A9D2B4"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.0.1": [
"Sync with ASSFoundation changes",
"Start versioning with DependencyControl"
],
"0.1.1": [
"Enabled auto-update using DependencyControl",
"DependencyControl compatibility fixes"
],
"0.2.0": [
"The script was ported to MoonScript and dependencies have been updated to their latest versions."
]
}
},
"l0.LerpByChar": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Lerp By Character",
"description": "Linearly interpolates a specified override tag character-by-character between stops in a line.",
"channels": {
"master": {
"version": "0.1.0",
"default": false,
"released": "2019-09-14",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "F26D2838D72F6A61915840A00E1A49D61FA39932"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.6.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.1.0",
"default": true,
"released": "2019-09-14",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "F26D2838D72F6A61915840A00E1A49D61FA39932"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.6.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.1.0": [
"Initial release"
]
}
},
"l0.MergeDrawings": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Merge Drawings",
"description": "Moves all drawings found in all selected lines into the first line. Maintains positioning and converts scale as well as alignment.",
"channels": {
"master": {
"version": "0.2.0",
"default": false,
"released": "2019-02-17",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "A85D3A6FF3CDE816BC211625D215696E14A5F893"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.2.0",
"default": true,
"released": "2019-02-17",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "A85D3A6FF3CDE816BC211625D215696E14A5F893"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.1.0": ["initial release"],
"0.2.0": [
"The final merged drawing is trimmed in such a way that its top-left-most point is also its origin. Position/Move tags are added/adjusted in order for the drawing to retain its position on the canvas.",
"Dependencies have been updated to their latest versions."
]
}
},
"l0.MoveAlongPath": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Move Along Path",
"description": "Moves text along a path specified in a \\clip. Currently only works on fbf lines.",
"channels": {
"master": {
"version": "0.2.1",
"default": false,
"released": "2019-03-28",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "C91DD0D7E7C84E45D7F9D413317DE36B56E6C23B"
}
],
"requiredModules": [
{ "moduleName": "Yutils" },
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "a-mo.Line",
"name": "Aegisub-Motion (Line)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.5.3",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.2.1",
"default": true,
"released": "2019-03-28",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "C91DD0D7E7C84E45D7F9D413317DE36B56E6C23B"
}
],
"requiredModules": [
{ "moduleName": "Yutils" },
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "a-mo.Line",
"name": "Aegisub-Motion (Line)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.5.3",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.1.0": [
"Sync with ASSFoundation changes",
"Start versioning with DependencyControl"
],
"0.1.2": [
"Enabled auto-update using DependencyControl",
"DependencyControl compatibility fixes"
],
"0.1.3": [
"Generated lines now have the correct line order (within the script and in relation to each other)"
],
"0.1.4": [
"The required Yutils module is now loaded correctly on case-sensitive platforms/file systems such as Linux."
],
"0.2.0": [
"The script now uses the DependencyControl logger infrastructure and writes a log file to disk.",
"Dependencies have been updated to their latest versions."
],
"0.2.1": [
"Entering the automation menu with no lines selected no longer results in an error message. "
]
}
},
"l0.Nudge": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Nudge",
"description": "Provides configurable and hotkeyable tag/line modification macros.",
"channels": {
"master": {
"version": "0.5.0",
"default": false,
"released": "2019-02-17",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "E65255219E0C9A29C6DEC27F385DE65F3D2977F7"
}
],
"requiredModules": [
{ "moduleName": "aegisub.clipboard" },
{ "moduleName": "json" },
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.5.0",
"default": true,
"released": "2019-02-17",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "E65255219E0C9A29C6DEC27F385DE65F3D2977F7"
}
],
"requiredModules": [
{ "moduleName": "aegisub.clipboard" },
{ "moduleName": "json" },
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.3.0": [
"Sync with ASSFoundation changes",
"Start versioning with DependencyControl"
],
"0.3.2": [
"Enabled auto-update using DependencyControl",
"Changed config file to \\config\\l0.Nudge.json (rename nudge.json to restore your existing configuration)",
"DependencyControl compatibility fixes"
],
"0.3.3": ["ASSFoundation (Common) compatibility fixes"],
"0.3.4": ["Drawing -> Clip conversion is now available."],
"0.4.0": [
"An option to maintain the appearance of the line when changing the aligment was added to the Align Up/Down/Left/Right operations."
],
"0.5.0": [
"The script was ported to MoonScript and dependencies have been updated to their latest versions.",
"The default align nudgers are now configured to maintain line positioning.",
"An option was added for a nudger to strip or keep sections left empty after performing the desired operation."
]
}
},
"l0.PasteAiLines": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Paste AI Lines",
"description": "Convenience macro for pasting full lines exported by AI2ASS.",
"channels": {
"master": {
"version": "0.2.0",
"default": false,
"released": "2019-02-17",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "CE50E1E290EB75D7B25419D4333A758405641C7E"
}
],
"requiredModules": [
{ "moduleName": "aegisub.util" },
{ "moduleName": "aegisub.clipboard" },
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.2.0",
"default": true,
"released": "2019-02-17",
"files": [
{ "name": ".lua", "delete": true },
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "CE50E1E290EB75D7B25419D4333A758405641C7E"
}
],
"requiredModules": [
{ "moduleName": "aegisub.util" },
{ "moduleName": "aegisub.clipboard" },
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
}
},
"changelog": {
"0.1.0": [
"Sync with ASSFoundation changes",
"Start versioning with DependencyControl"
],
"0.1.2": [
"Enabled auto-update using DependencyControl",
"Changed config file to \\config\\l0.PasteAILines.json (rename PasteAILines.json to restore your existing configuration)",
"DependencyControl compatibility fixes"
],
"0.2.0": [
"The script was ported to MoonScript and dependencies have been updated to their latest versions."
]
}
},
"l0.ShakeIt": {
"url": "@{baseUrl}#@{namespace}",
"author": "line0",
"name": "Shake It",
"description": "Lets you add a shaking effect to fbf typesets with configurable constraints.",
"channels": {
"master": {
"version": "0.2.0",
"default": false,
"released": "2019-08-12",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "8951E21B9B58011BA3BB0BA5BA0F60796808CBD4"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.3",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
},
{
"moduleName": "a-mo.ConfigHandler",
"name": "Aegisub-Motion (ConfigHandler)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.1.4",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
}
],
"fileBaseUrl": "@{fileBaseUrl}/@{namespace}-v@{version}/@{namespace}"
},
"release": {
"version": "0.2.0",
"default": true,
"released": "2019-08-12",
"files": [
{
"name": ".moon",
"url": "@{fileBaseUrl}@{fileName}",
"sha1": "8951E21B9B58011BA3BB0BA5BA0F60796808CBD4"
}
],
"requiredModules": [
{
"moduleName": "a-mo.LineCollection",
"name": "Aegisub-Motion (LineCollection)",
"url": "https://github.com/TypesettingTools/Aegisub-Motion",
"version": "1.3.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json"
},
{
"moduleName": "l0.ASSFoundation",
"name": "ASSFoundation",
"url": "https://github.com/TypesettingTools/ASSFoundation",
"version": "0.4.3",
"feed": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json"
},
{
"moduleName": "l0.Functional",
"name": "(Almost) Functional Suite",
"url": "https://github.com/TypesettingTools/Functional",
"version": "0.5.0",
"feed": "https://raw.githubusercontent.com/TypesettingTools/Functional/master/DependencyControl.json"
},