-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathModLinks.json
1033 lines (1033 loc) · 31.6 KB
/
ModLinks.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
[
{
"Name": "AccuracyDisplay",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/AccuracyDisplay.dll",
"HomePage": "",
"ConfigFile": "AccuracyDisplay.cfg",
"GameVersion": [
"*"
],
"Description": "A live accuracy display.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "70df3cd6fe9cc073d1221aeffad3f5bce97016044b961414a7a3bb5ab10fde68"
},
{
"Name": "AccuracyIndicator",
"Version": "2.0.2",
"Author": "Azn9 & lxy",
"DownloadLink": "Mods/AccuracyIndicator.dll",
"HomePage": "https://github.com/Azn9/MDAccuracyIndicatorMod",
"ConfigFile": "AccuracyIndicator.cfg",
"GameVersion": [
"*"
],
"Description": "Adds a more exact accuracy indicator on the bottom of the screen.\nAlso displays average accuracy in milliseconds at the end of the level.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "e47d28fe2545d80b0865b24af563ab38e043d2718023028a91de1b6e87b2e370"
},
{
"Name": "Album scroll",
"Version": "2.0.1",
"Author": "bnfour",
"DownloadLink": "Mods/AlbumScroll.dll",
"HomePage": "https://github.com/bnfour/md-mods",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "While holding shift, use the arrow keys to switch song categories in song selection",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "cbc4402c08ec4d8eab368555354411a665e71e70706e0a973eaad139170f216e"
},
{
"Name": "AltTabMute",
"Version": "3.0.0",
"Author": "Dom Gintoki",
"DownloadLink": "Mods/AltTabMute.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Mutes the game when it's not focused.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "70e29d0dbfbc6712c3f13420527268878f8aa394c0cacae8a0410599b3159de3"
},
{
"Name": "AlwaysAprilFool",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/AlwaysAprilFool.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Boss always shoot pigeon and tutorial is always april fool's, activate good tek hidden",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "9b0f7127da444038116bf7041f68636d169522850640dd1720785dc3c7f2edf2"
},
{
"Name": "AlwaysBadApple",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/AlwaysBadApple.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "A mod which changes the background and character etc into black and white in tohou scene",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "c6413ba03722babb05b50636a2cb6de1a08e2909736b947a7193ffbbb3167523"
},
{
"Name": "AlwaysPigeons",
"Version": "1.0.1",
"Author": "lxy",
"DownloadLink": "Mods/AlwaysPigeons.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Boss always shoots pigeon, do not use AlwaysAprilFool at the same time",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "0c304a3ef08dfa5a48077eaf98a3073f954147756e64e745230c442bb8faafaa"
},
{
"Name": "BALLCOCK",
"Version": "1.0.0",
"Author": "AshtonMemer",
"DownloadLink": "Mods/Ballcock.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Implements a simplified, less eye-straining and distracting fever effect.\nAlso includes a distasteful console message.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "9217c2b58ce5a863c1ab4ab347345a20953db3a35b9d774d3f4784eb9669b1fe"
},
{
"Name": "BestCombinationSuggest",
"Version": "1.0.0",
"Author": "brooke_zb",
"DownloadLink": "Mods/BestCombinationSuggest.dll",
"HomePage": "https://github.com/brooke-zb/MuseDashBestCombinationSuggest",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Displays the best character combination for a level in the pause screen.\nThe character combo displayed is usually correct, but don't put your blind faith in it.\nWhen in doubt, refer to CharacterScoreboard.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "3acd91e466ccbed2585ee262c2e63e6c2430cb29dd7d9410ae83bdae06a35915"
},
{
"Name": "BetterNativeHook",
"Version": "1.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/BetterNativeHook.dll",
"HomePage": "https://github.com/Balint817/BetterNativeHook",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "A library mod to do what NativeHook was never for...\nand another hint as to what's coming next.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "6a8e949c75f73071a165e4a26ca3ddb4dd0c5a4c99feab027379b735947ab53b"
},
{
"Name": "BPMDisplay",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/BPMDisplay.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "A mod which displays the BPM info above level designer on preparation screen",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "3bb437766d6ed5c329c6efe5b703aeab86361b31b7bb843a59ab3149dac961f7"
},
{
"Name": "CharacterRandomizer",
"Version": "1.1.4",
"Author": "lxy",
"DownloadLink": "Mods/CharacterRandomizer.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Everytime you play a chart, a random character combination will be selected.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "8a6ff6b3edee3acec78769b4faf649219064159511d9c909116d3bdd12369940"
},
{
"Name": "CharacterScoreboard",
"Version": "2.0.1",
"Author": "Creepler13 & lxy",
"DownloadLink": "Mods/CharacterScoreboard.dll",
"HomePage": "https://github.com/Creepler13/CharacterScoreboard",
"ConfigFile": "CharacterScoreboard.cfg",
"GameVersion": [
"*"
],
"Description": "Displays which character a specific score was achieved with on the leaderboard",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "3030dc1781812c502706cb4dacfa35c7bcc7fc4e1e9df5041cd92e50a6f9223f"
},
{
"Name": "ChartDeleter",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/ChartDeleter.dll",
"HomePage": "",
"ConfigFile": "ChartDeleter.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to queue charts to be deleted when you exit the game using a configurable keybind.",
"DependentMods": [
"KeybindManager",
"LocalizeLib",
"PopupLib",
"CustomAlbums"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "4e9e91b59e4997b71c824b02e71c2fb67c92a3c6dadb2ce1c341c2388833658a"
},
{
"Name": "ChartReview",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/ChartReview.dll",
"HomePage": "https://github.com/MDMods/ChartReview",
"ConfigFile": "ChartReview.cfg",
"GameVersion": [
"*"
],
"Description": "Automatically selects sleepwalker, sets offset to 0, sets fever to manual, disables certain UI elements.\nCan be toggled on/off while in-game.",
"DependentMods": [
"MuseDashMirror"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "6a43dd0edcdf6b557d56eabd977ec8cb3dd802bb2ad2d39b4bab01bbacd14d76"
},
{
"Name": "ChineseMode",
"Version": "2.0.0",
"Author": "RobotLucca",
"DownloadLink": "Mods/ChineseMode.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Censores certain aspects of the game. (Characters, illustrations, etc)",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "bdb9e51281f53e55d3189f98abf1220ba72962b27ccd87699fc8f136f78f6181"
},
{
"Name": "Cinema",
"Version": "1.2.1",
"Author": "AshtonMemer",
"DownloadLink": "Mods/Cinema.dll",
"HomePage": "https://github.com/MDMods/Cinema",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "The mod that allows you to see video backgrounds in custom charts.",
"DependentMods": [
"CustomAlbums"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "e9db79a2ea3a3ea0f2e06d0a976668875d3217e2b6a1efc167358fa161ab204f"
},
{
"Name": "CinemaToggler",
"Version": "1.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/CinemaToggler.dll",
"HomePage": "",
"ConfigFile": "CinemaToggler.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to toggle the Cinema mod on/off in-game",
"DependentMods": [
"KeybindManager"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "39c4c56d2741a368bade65479bbbce2a91a9aba6ecf3e9a6afe84ea9f1346da4"
},
{
"Name": "CurrentCombination",
"Version": "1.2.3",
"Author": "Asgragrt",
"DownloadLink": "Mods/CurrentCombination.dll",
"HomePage": "https://github.com/MDMods/CurrentCombination",
"ConfigFile": "MelonPreferences.cfg",
"GameVersion": [
"*"
],
"Description": "Shows the current selected character and elfin in the song selection menu and the song view.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "0472b8b6834c6ba2ad0cbab1f4e2c60298bb69c03bafc8c11d7e0dfb1ec7ffef"
},
{
"Name": "CustomAlbums",
"Version": "4.1.3",
"Author": "Team Baller",
"DownloadLink": "Mods/CustomAlbums.dll",
"HomePage": "https://github.com/gamrguy/CustomAlbums",
"ConfigFile": "MelonPreferences.cfg",
"GameVersion": [
"*"
],
"Description": "The mod that allows you to load in custom charts.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "ec4f37256bfdf035a215401842b15d8273a118a76e1fca43d995b1fa90a507b7"
},
{
"Name": "CustomAnchorSupport",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/CustomAnchorSupport.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Adds streamer mode support to custom songs via the 'streamer' tag in 'info.json'.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "4d919e950d7508b24b95629a52ab2004a43839bafbf7a2691e7d0815d3d5162f"
},
{
"Name": "CustomBGBrightness",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/CustomBGBrightness.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Allows you to adjust background brightness lower than 40%",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "798beb798de3b93c2195328d0b1db75c5ff81c0d386552aaaca1a56eb79bf0a7"
},
{
"Name": "CustomHitSound",
"Version": "2.1.0",
"Author": "lxy",
"DownloadLink": "Mods/CustomHitSound.dll",
"HomePage": "https://github.com/MDMods/CustomHitSound",
"ConfigFile": "CustomHitSound.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to make custom hit sound. Detailed instructions on github readme",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "caccb49d5920fb70f820e1b374a192ab7d60124ec5de9be4842f29da87103ceb"
},
{
"Name": "CustomLoadingScreens",
"Version": "1.1.1",
"Author": "Mr. Talk",
"DownloadLink": "Mods/CustomLoadingScreens.dll",
"HomePage": "https://github.com/MDMods/CustomLoadingScreens",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Allows you to add custom loading screens.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "841bcddb5453cdbbfed27e10ba4ea19113cfc2c2573e1fff870c95cdbc1ad7ac"
},
{
"Name": "CustomResolution",
"Version": "2.1.0",
"Author": "lxy & PBalint817",
"DownloadLink": "Mods/CustomResolution.dll",
"HomePage": "",
"ConfigFile": "CustomResolution.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to set a custom resolution.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "74b8b4e438e5230c143664a808d967ad71c0eb2bfb85b46a5461e434f4162aa0"
},
{
"Name": "FadeIn",
"Version": "1.0.1",
"Author": "Asgragrt",
"DownloadLink": "Mods/FadeIn.dll",
"HomePage": "https://github.com/MDMods/FadeIn",
"ConfigFile": "MelonPreferences.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to make all notes fade out.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "4d463379fe8d16e2ef5ff94c86c9446d4c4aa6d9b07b5e062b22f322ce71644b"
},
{
"Name": "FavGirl",
"Version": "2.4.3",
"Author": "RobotLucca & AshtonMemer",
"DownloadLink": "Mods/FavGirl.dll",
"HomePage": "https://github.com/AshtonMemer/FavGirl",
"ConfigFile": "FavGirl.cfg",
"GameVersion": [
"4.1.0"
],
"Description": "Allows you to favorite characters and elfins.\nThis will make you look like that character even if another character is selected.\nYou will have the abilities of the selected character & your plays will be submitted as such.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "41d73ea28386638fbbebd96d693bd03f79607ec22f239adb11d3c4676db49bef"
},
{
"Name": "FavGirl Cat Fix",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/FavGirlCatFix.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Fixes a bug with favorited cat characters.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "21d8d9861fe56762a32239c62c4f44ab6bff57c5c48cf58c9f56a079efc8b00c"
},
{
"Name": "FC AP indicator",
"Version": "1.7.0",
"Author": "lxy",
"DownloadLink": "Mods/FC AP.dll",
"HomePage": "https://github.com/MDMods/FC-AP-Indicator",
"ConfigFile": "FC AP.cfg",
"GameVersion": [
"3.12.0"
],
"Description": "Tells you whether you're on All Perfect/Full Combo pace, and displays the number of misses/greats.",
"DependentMods": [
"MuseDashMirror"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "37715f594b10d853428a6bb2454b2846be6332752146d698804c5072cafa1508"
},
{
"Name": "FeverEffectDisable",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/FeverEffectDisable.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Disables the fever background effect (duh.)",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "7876096110007741491ef80dc8de7a3438fbadd8417e4b599fefeba80f97b87c"
},
{
"Name": "Headquarters",
"Version": "3.3.4",
"Author": "AshtonMemer",
"DownloadLink": "Mods/Headquarters.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Allows you to submit scores on custom charts obtained from the MDMC website.",
"DependentMods": [
"CustomAlbums"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "682713d1b7241c79811dba110521d7be19b0f98012f7e4dc195f748ac27972d1"
},
{
"Name": "HiddenQol",
"Version": "2.0.3",
"Author": "RobotLucca & lxy",
"DownloadLink": "Mods/HiddenQol.dll",
"HomePage": "",
"ConfigFile": "HiddenQol.cfg",
"GameVersion": [
"*"
],
"Description": "Adds a button to always show hidden difficulties.\nE.g. you don't need to spam click and such to unlock them before playing",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "1362b76568485f6dbb5bd8b68ea628747ebe1fecd6b1c1c4b585b0f889342c2c"
},
{
"Name": "IntroSkip",
"Version": "4.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/IntroSkip.dll",
"HomePage": "",
"ConfigFile": "IntroSkip.cfg",
"GameVersion": [
"*"
],
"Description": "Skips past the intro sequence.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "2456c6cb992bb6c1a3fa51b5b5ba33ba2ee92cc093e4f77a5139c2a6c812f2e1"
},
{
"Name": "KeybindManager",
"Version": "3.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/KeybindManager.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "A library for other mods to implement configurable keybinds, and listen to key combinations",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "bc9c354dc8a9e3f3c268faefad36bcc96cc76a6d197d45d5840ccd7e81e2b309"
},
{
"Name": "LeagueIsBad",
"Version": "1.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/LeagueIsBad.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "...and you should feel bad.\nCloses the game if League of Legends is found on your PC.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "8e24ae4cc98c5da156e0bb236e1d25fd9e9498e69c24cdc0e329b99dd7843b9a"
},
{
"Name": "LocalizeLib",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/LocalizeLib.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Makes localizing mods for the game's language settings easier.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "187ce4b60c076419d88010254952c6d461583519c46663f4cf5f17c404632ef0"
},
{
"Name": "LockCursor",
"Version": "1.0.1",
"Author": "Mr. Talk",
"DownloadLink": "Mods/LockCursor.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Locks your cursor in the middle of the screen while in-game",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "8a36df47ea2955f1d534e22b8e93becb1322ea47a3953a0404efa9b4d1021119"
},
{
"Name": "MDRPC",
"Version": "0.1.0",
"Author": "Brasileiro",
"DownloadLink": "Mods/MDRPC.dll",
"HomePage": "https://github.com/Braasileiro/MDRPC",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Muse Dash Rich Presence, which is exactly what it says it is.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "f95dbca9bd659302f38619edebf2dd16ac9721a2da8e7adbbcdcb7d40f340026"
},
{
"Name": "ModManager",
"Version": "1.0.1",
"Author": "Creepler13",
"DownloadLink": "Mods/ModManager.dll",
"HomePage": "https://github.com/Creepler13/ModManagerMod",
"ConfigFile": "",
"GameVersion": [
"3.7.0"
],
"Description": "Allows you to disable & delete mods while in-game.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "c5ff14b90e0a1642ed4f9ce75518850ee816d906f6fc2ba9b5bb521efaa2bfa0"
},
{
"Name": "MuseDashMirror",
"Version": "3.1.3",
"Author": "lxy",
"DownloadLink": "Mods/MuseDashMirror.dll",
"HomePage": "https://github.com/MDMods/MuseDashMirror",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "A library that makes it easier to access PlayerData, BattleComponents info and create UI elements.\nThis mod does nothing by itself.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "0eb74d39986bc97920299152de4c20c54baee1205d9b0bbbef4d87bd2b1f16e1"
},
{
"Name": "MuseDashModTools",
"Version": "1.1.6",
"Author": "lxy & \"Bálint\" as balls",
"DownloadLink": "Mods/MuseDashModTools.dll",
"HomePage": "https://github.com/MDModsDev/MuseDashModToolsMod",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Automatically detects and logs available mod updates.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "8806a560a112e084fe665988a4a512692f077148c9fe2ff6c1a632f0571dd632"
},
{
"Name": "NoAutoPause",
"Version": "2.1.0",
"Author": "AshtonMemer",
"DownloadLink": "Mods/NoAutoPause.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Prevents the game from automatically pausing when the game loses focus.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "53e1b8ff7fc18e8adf98afa999ef53ca7293fef308692d12e67b65d914ba00eb"
},
{
"Name": "NoLevelUpAnimations",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/NoLevelUpAnimations.dll",
"HomePage": "",
"ConfigFile": "NoLevelUp.cfg",
"GameVersion": [
"*"
],
"Description": "Makes leveling up a bit more bearable.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "a1857a77c9aaca978cff67a90d93f868a0fc70a3e5064238dfb74bcbc8e0ddb9"
},
{
"Name": "PopupLib",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/PopupLib.dll",
"HomePage": "",
"ConfigFile": "PopupLib.cfg",
"GameVersion": [
"*"
],
"Description": "A library for other mods to display prompts, take input, etc.,\nusing the game's built-in windows.",
"DependentMods": [
"LocalizeLib"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "2af6407f25d7b35ebf0ea9fa57df1cca1f6a9edfc84ad7d9f997ade4a5f45a45"
},
{
"Name": "PreventLowAcc",
"Version": "2.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/PreventLowAcc.dll",
"HomePage": "",
"ConfigFile": "PreventLowAcc.cfg",
"GameVersion": [
"*"
],
"Description": "Lets you disable score submissions, in case you want to take a screenshot\nof a low acc high score, but not actually submit it.\nFuture uses may have something to do with challenge runs ;)",
"DependentMods": [
"KeybindManager"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "ea735cf87422c6fd2482d61e4996b8dffca0d33eb42d13483e2b49dd728b3123"
},
{
"Name": "QuickRestart",
"Version": "2.2.0",
"Author": "AshtonMemer",
"DownloadLink": "Mods/QuickRestart.dll",
"HomePage": "https://github.com/MDMods/QuickRestart",
"ConfigFile": "MelonPreferences.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to use Delete to instantly leave a chart & Allows you to use Backspace to instantly restart a chart\nUpdate now allows you to set custom keybinds.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "621fa97e5f77350bbc00e1a25308bdece521482d8658bad4f3dfc26d56f00588"
},
{
"Name": "QuickSwitchCombination",
"Version": "3.0.0",
"Author": "lxy",
"DownloadLink": "Mods/QuickSwitchCombination.dll",
"HomePage": "https://github.com/MDMods/QuickSwitchCombination",
"ConfigFile": "QuickSwitchCombination.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to set keybinds to quickly change your characters.\nNow has an in-game menu to add keybinds",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "2406e439b807c2a6ea865c3d50ca8e45fd0faf475be49a6adc70e8797d4710bd"
},
{
"Name": "RomajiSongName",
"Version": "1.0.2",
"Author": "Asgragrt",
"DownloadLink": "Mods/RomajiSongName.dll",
"HomePage": "https://github.com/Asgragrt/RomajiSongName",
"ConfigFile": "RomajiSongName.cfg",
"GameVersion": [
"*"
],
"Description": "Romanizes song names, doesn't include song names.\nBreaks the search function in a way that you can't use spaces.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "4224de7d73d5257e2b7ca1812a60a1a5c939218bbe0248d157b300f37166ca4f"
},
{
"Name": "SaveMySpace",
"Version": "1.0.0",
"Author": "PBalint817",
"DownloadLink": "Mods/SaveMySpace.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Deletes old log files and similar junk automatically.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "65df94141f42d65363b5a04d28777fdd50cf1fe6c4eecadfa6f1b10250026866"
},
{
"Name": "SceneEggs",
"Version": "1.1.0",
"Author": "RobotLucca",
"DownloadLink": "Mods/SceneEggs.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"2.11.0"
],
"Description": "Makes it possible for customs to use certain background decorations that the default charts use.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "afe1f40fd11081ac0f36f14c7372bd31b06d6fd8b0a2dcd78f7cef43e1f79e76"
},
{
"Name": "Scoreboard characters and elfins",
"Version": "1.5.0",
"Author": "bnfour",
"DownloadLink": "Mods/ScoreboardCharacters.dll",
"HomePage": "https://github.com/bnfour/md-mods",
"ConfigFile": "",
"GameVersion": [
"3.12.0"
],
"Description": "Similar to CharacterScoreboard, however, it instead adds icon clickable icon representations,\nwhich automatically switches to the character combo when clicked.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "a726a135d9127ea7389760b0c54f040171a7aa7650ca04c8abef928c71da11f7"
},
{
"Name": "ScrollSpeed",
"Version": "1.0.0",
"Author": "RobotLucca",
"DownloadLink": "Mods/ScrollSpeed.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"2.10.0"
],
"Description": "Allows charters (not players) to set custom scroll speeds.\nIt's completely up to you whether you wanna use this, most charters don't use it though.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "62f0b60a1a9bd68fa25c7fee36db9c10e3753f0ae1e67b05c3ea18a3c299df3c"
},
{
"Name": "SelectiveEffects",
"Version": "1.2.1",
"Author": "Asgragrt",
"DownloadLink": "Mods/SelectiveEffects.dll",
"HomePage": "https://github.com/MDMods/SelectiveEffects",
"ConfigFile": "SelectiveEffects.cfg",
"GameVersion": [
"*"
],
"Description": "Mod that allows disabling battle effects.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "cd4e297b0ce4a6e95db4da82cc62d6d98a1bbc2eff932e765f89e6c7fd36b412"
},
{
"Name": "ShopLift",
"Version": "1.0.0",
"Author": "Mr. Talk",
"DownloadLink": "Mods/ShopLift.dll",
"HomePage": "https://github.com/MDMods/ShopLift",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Removes the store button and (attempts to) recreate the old UI",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "8f5afa98dab73774ad583124b35a0791c5772bc9a502979e30369996af9ae5c9"
},
{
"Name": "SongDesc",
"Version": "2.0.2",
"Author": "lxy",
"DownloadLink": "Mods/SongDesc.dll",
"HomePage": "https://github.com/MDMods/SongDesc",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Displays the title, artist, and difficulty of the song in the top-right corner during play.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "d62c6f080df6319df44ec4c115b90ec7035e1b150bfc6bba6a98e669b4064060"
},
{
"Name": "Song info",
"Version": "1.2.4",
"Author": "bnfour",
"DownloadLink": "Mods/SongInfo.dll",
"HomePage": "https://github.com/bnfour/md-mods",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Displays the BPM and duration for selected song",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "85d611284e512b4992cf04fd2abe60aca05037a70b28e4e1f7ef55fb5a5659eb"
},
{
"Name": "StricterJudge",
"Version": "2.1.2",
"Author": "lxy & Asgragrt",
"DownloadLink": "Mods/StricterJudge.dll",
"HomePage": "",
"ConfigFile": "MelonPreferences.cfg",
"GameVersion": [
"*"
],
"Description": "A mod which changes the judgement window and make the game harder.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "1aa9d418e0983a08bbae2ec7c00300ce059ddd732bfc1bcca08c82e3a5467dc9"
},
{
"Name": "True rank for 999+",
"Version": "2.0.0",
"Author": "bnfour",
"DownloadLink": "Mods/TrueAbove1kRank.dll",
"HomePage": "https://github.com/bnfour/md-mods",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Displays actual ranking instead of \"999+\" for ranks 1000 to 2000",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "2e2d67946da5add0f795b570937cae6fcd4b14ad1265e1db87257dc7fbdb8061"
},
{
"Name": "UIDisable",
"Version": "2.0.0",
"Author": "lxy",
"DownloadLink": "Mods/UIDisable.dll",
"HomePage": "https://github.com/MDMods/UIDisable",
"ConfigFile": "UI Disable.cfg",
"GameVersion": [
"*"
],
"Description": "Allows you to disable certain visual aspects of the game (example: hit circles)",
"DependentMods": [
"MuseDashMirror"
],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "29617f015907d431be99d25f74dd42004a1d2fe7c198b19112748e13089ebc8c"
},
{
"Name": "UI tweaks",
"Version": "1.0.0",
"Author": "bnfour",
"DownloadLink": "Mods/UITweaks.dll",
"HomePage": "https://github.com/bnfour/md-mods",
"ConfigFile": "MelonPreferences.cfg",
"GameVersion": [
"*"
],
"Description": "Various small UI fixes",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "d464be1224d3328646bec9c8747f089d4a03eb154cfaa246141268fc852b2e71"
},
{
"Name": "UltraInstinctSleepwalking",
"Version": "3.0.0",
"Author": "RobotLucca",
"DownloadLink": "Mods/UltraInstinctSleepwalking.dll",
"HomePage": "",
"ConfigFile": "",
"GameVersion": [
"*"
],
"Description": "Makes Sleepwalker Rin do mashers at max speed instead of the normal slow speed.",
"DependentMods": [],
"DependentLibs": [],
"IncompatibleMods": [],
"SHA256": "15401a7326577ff257e13b1c0837e3a613dfbdf437141a2949377d9062287b12"
},
{
"Name": "UnlockAll",