-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1280 lines (1144 loc) · 65.6 KB
/
index.html
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
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<title>Mod Manager</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="style_component.css" />
<link rel="stylesheet" type="text/css" href="style_tap.css" />
<link rel="stylesheet" href="sober-theme.css">
</head>
<body>
<div id="drag-bar" style="position: fixed;width: 100%;height: 30px;-webkit-app-region: drag;">
</div>
<s-page id="app" theme="dark">
<!-- -alert -->
<s-drawer style="width: 100%;" id="drawer-page">
<!-- -预设控制 -->
<div slot="start" id="preset-list-drawer" class="OO-colunm-center">
<div class="OO-button-box" id="preset-list-drawer-headline">
<p class="font-hongmeng">Presets</p>
</div>
<s-divider style="margin-bottom: 0;"></s-divider>
<div id="preset-container" class="OO-colunm-center"></div>
<div class="placeholder" style="flex: 1;max-height: 50px;"></div>
<!-- -新建预设 -->
<s-button class="left-adhesive-button font-hongmeng" type="filled-tonal" id="preset-item-add">
<s-icon type="add" slot="start" style="position: absolute;left:40px;transform: scale(1.5);"></s-icon>
<p data-translate-key="creat-preset" style="align-self: auto;width: fit-content;height: fit-content;">新建预设</p>
</s-button>
<!-- -编辑预设 -->
<s-button class="left-adhesive-button font-hongmeng" type="filled-tonal" id="preset-item-edit"
style="align-items: center;">
<s-icon type="more_horiz" slot="start" style="position: absolute;left:40px;transform: scale(1.5);"></s-icon>
<p data-translate-key="edit-preset" style="align-self: auto;width: fit-content;height: fit-content;">编辑预设</p>
</s-button>
<div id="placeholder" style="flex: 1;"></div>
<div id="control-center" class="OO-button-box">
<div id="bottom-buttons">
<!-- -全屏按钮-->
<s-tooltip>
<s-icon-button slot="trigger" id="fullscreen-button">
<s-icon>
<svg viewBox="0 -960 960 960">
<path id="fullscreen-button-svgpath"
d="M120-120v-200h80v120h120v80H120Zm520 0v-80h120v-120h80v200H640ZM120-640v-200h200v80H200v120h-80Zm640 0v-120H640v-80h200v200h-80Z">
</path>
</svg>
</s-icon>
</s-icon-button>
<p data-translate-key="fullscreen">全屏</p>
</s-tooltip>
<!-- -折叠模式开关 -->
<s-tooltip>
<s-icon-button slot="trigger" id="compact-mode-button">
<s-icon>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="m356-160-56-56 180-180 180 180-56 56-124-124-124 124Zm124-404L300-744l56-56 124 124 124-124 56 56-180 180Z">
</path>
</svg>
</s-icon>
</s-icon-button>
<p data-translate-key="compact">折叠</p>
</s-tooltip>
<!-- -刷新按钮 -->
<s-tooltip>
<s-icon-button slot="trigger" id="refresh-button" onclick="location.reload()">
<s-icon>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="M480-160q-134 0-227-93t-93-227q0-134 93-227t227-93q69 0 132 28.5T720-690v-110h80v280H520v-80h168q-32-56-87.5-88T480-720q-100 0-170 70t-70 170q0 100 70 170t170 70q77 0 139-44t87-116h84q-28 106-114 173t-196 67Z">
</path>
</svg>
</s-icon>
</s-icon-button>
<p data-translate-key="refresh">刷新</p>
</s-tooltip>
</div>
<div id="bottom-buttons">
<!-- -设置按钮 -->
<s-tooltip>
<s-icon-button slot="trigger" id="settings-show-button">
<s-icon>
<svg viewBox="0 -960 960 960">
<path
d="m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm70-80h79l14-106q31-8 57.5-23.5T639-327l99 41 39-68-86-65q5-14 7-29.5t2-31.5q0-16-2-31.5t-7-29.5l86-65-39-68-99 42q-22-23-48.5-38.5T533-694l-13-106h-79l-14 106q-31 8-57.5 23.5T321-633l-99-41-39 68 86 64q-5 15-7 30t-2 32q0 16 2 31t7 30l-86 65 39 68 99-42q22 23 48.5 38.5T427-266l13 106Zm42-180q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Zm-2-140Z">
</path>
</svg>
</s-icon>
</s-icon-button>
<p data-translate-key="settings">设置</p>
</s-tooltip>
<!-- -关于按钮 -->
<s-tooltip>
<s-icon-button slot="trigger" id="help-show-button">
<s-icon>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm-36-154h74q0-33 7.5-52t42.5-52q26-26 41-49.5t15-56.5q0-56-41-86t-97-30q-57 0-92.5 30T342-618l66 26q5-18 22.5-39t53.5-21q32 0 48 17.5t16 38.5q0 20-12 37.5T506-526q-44 39-54 59t-10 73Zm38 314q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z">
</path>
</svg>
</s-icon>
</s-icon-button>
<p data-translate-key="help">帮助</p>
</s-tooltip>
<!-- -关闭按钮 -->
<s-tooltip>
<s-icon-button slot="trigger" id="close-button" onclick="window.close()">
<s-icon>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z">
</path>
</svg>
</s-icon>
</s-icon-button>
<p data-translate-key="close">关闭</p>
</s-tooltip>
</div>
</div>
</div>
<!-- -主页面 -->
<div id="main-page" class="OO-colunm">
<!-- -顶部导航栏 -->
<s-appbar
style="width: 100%;height: 60px;padding: 10px 0px;display: flex;backdrop-filter: blur(7px);border-bottom:1px solid var(--s-color-on-surface);">
<!--左侧菜单按钮-->
<s-icon-button slot="navigation" id="preset-list-button" style="margin-left: 18px;">
<s-icon type="menu"></s-icon>
</s-icon-button>
<!--标题-->
<div slot="headline"
style="display: flex;align-items: center;justify-content: center;-webkit-app-region: drag;">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="50px" height="41px" viewBox="0 0 229 244">
<image id="image0" width="229" height="244" x="0" y="0" xlink:href="icon.ico" />
</svg>
<p style="margin-left: 10px;" data-translate-key="title">绝区零mod管理器</p>
</div>
<div id="drag-bar" style="height: 100%;-webkit-app-region: drag;flex: 1;">
</div>
<!--右侧信息开关-->
<div slot="action">
<s-icon-button style="margin-right: 13px;" id="info-show-button" type="filled">
<s-icon>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="M440-280h80v-240h-80v240Zm40-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z">
</path>
</svg>
</s-icon>
</s-icon-button>
</div>
</s-appbar>
<!-- -模组筛选选项(根据角色筛选mod) -->
<div id="mod-filter-container">
<div style="display: flex;flex-wrap: nowrap;align-items: center;margin-left: 5px;">
<s-chip selectable="ture" type="default;" id="mod-filter-all">
<p data-translate-key="all">全部</p>
</s-chip>
<div style="width: 6px;"></div>
<s-chip selectable="ture" type="default;" id="mod-filter-selected">
<p data-translate-key="selected">已选择</p>
</s-chip>
</div>
<div
style="position:relative;height: 100%;width: 100%;overflow-x: hidden;overflow-y: hidden;white-space: nowrap;padding-left: 5px;"
id="mod-filter-scroll">
<div id="mod-filter-bg"></div>
<div id="mod-filter"
style="display: flex;flex-wrap: nowrap;align-items: center;width: fit-content;height: 100%;">
</div>
</div>
</div>
<!-- -模组列表 -->
<s-scroll-view class="mod-list" style="margin-left: 10px;">
<div id="mod-container" style="width: 100%" compact="false">
<!-- 预先展示n个空mod,用于占位 -->
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
<s-card class="mod-item">
<div slot="image" style="height: 200px;width: 250px;">
<img src="blank.png" alt="mod image" loading="lazy">
</div>
<div slot="headline" id="mod-item-headline">${mod}</div>
<div slot="subhead" id="mod-item-subhead">
${modCharacter}
</div>
<div slot="text" id="mod-item-text">
<s-scroll-view>
<p id="mod-item-description">${modDescription}</p>
<div style="height: 30px;"></div>
</s-scroll-view>
</div>
</s-card>
</div>
<div style="height: 250px"></div>
</s-scroll-view>
<div class="placeholder" style="flex: 1;"></div>
<!-- -应用按钮 -->
<div style="display: flex;flex-direction: row-reverse;flex-wrap: nowrap;height: 0;">
<s-button id="apply-btn" class="OO-parallelogram font-hongmeng">
<s-icon slot="start" style="height:fit-content;width: fit-content;margin-right: -5px;">
<svg width="40" height="40" viewBox="0 -960 960 960">
<path d="M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z"></path>
</svg>
</s-icon>
<p style="position: relative;top: -1px;margin-left: 10px;width: fit-content;height: fit-content;"
data-translate-key="apply">
应用配置</p>
</s-button>
</div>
</div>
<!-- -属性详情界面 -->
<div slot="end" id="info-page">
<div class="OO-button-box" id="mod-info-headline">
<div style="width: 83%;height: fit-content;padding: 10px 0px;">
<h2 id="mod-info-name">Mod name</h2>
<s-divider style="margin-top: -11px;width: 100%;"></s-divider>
</div>
<p id="mod-info-character">Character</p>
</div>
<div id="mod-info-container" class="OO-colunm-center" style="height: 100%;">
<div class="OO-button-box" id="img-container">
<div class="OO-shade-box OO-center-bg" id="mod-info-image">
</div>
</div>
<div class="OO-box OO-shade-box" style="height: auto;display:flex;">
<div
style="height: auto;width: 250px;display:flex;padding: 5px;overflow: auto;color:var(--s-color-on-surface-variant);">
<p id="mod-info-description" style="white-space: normal;">Mod Description</p>
<div style="height: 30px;"></div>
</div>
</div>
<s-divider></s-divider>
<div class="placeholder" style="flex: 1;"></div>
<div id="mod-info-controller" class="OO-colunm-center" style="position: absolute;bottom: 10px;">
<s-button id="open-mod-url" type="filled-tonal" class="right-adhesive-button font-hongmeng">
<s-icon slot="start">
<svg viewBox="0 0 960 960">
<path
d="M935.68 140.8a237.44 237.44 0 0 1 0 334.72l-204.16 204.16a237.44 237.44 0 0 1-334.72 0A64 64 0 0 1 486.4 588.8a108.8 108.8 0 0 0 153.6 0l204.8-203.52a108.8 108.8 0 0 0 0-153.6 107.52 107.52 0 0 0-153.6 0A64.256 64.256 0 0 1 600.32 140.8a238.08 238.08 0 0 1 335.36 0zM320 844.8a64 64 0 0 1 91.52 0 64 64 0 0 1 0 90.88 234.88 234.88 0 0 1-167.04 69.12A236.8 236.8 0 0 1 76.8 600.32L280.32 396.8a238.08 238.08 0 0 1 335.36 0A64.256 64.256 0 1 1 524.8 487.68a107.52 107.52 0 0 0-153.6 0L166.4 691.2a108.16 108.16 0 0 0 0 153.6 108.8 108.8 0 0 0 153.6 0z">
</path>
</svg>
</s-icon>
<p data-translate-key="open-mod-url">打开mod链接</p>
</s-button>
<s-button id="open-mod-dir" type="filled-tonal" class="right-adhesive-button font-hongmeng">
<s-icon slot="start">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z">
</path>
</svg></s-icon>
<p data-translate-key="open-mod-dir">打开mod位置</p>
</s-button>
<s-button id="edit-mod-info" type="filled-tonal" class="right-adhesive-button font-hongmeng">
<s-icon slot="start">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960">
<path
d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h357l-80 80H200v560h560v-278l80-80v358q0 33-23.5 56.5T760-120H200Zm280-360ZM360-360v-170l367-367q12-12 27-18t30-6q16 0 30.5 6t26.5 18l56 57q11 12 17 26.5t6 29.5q0 15-5.5 29.5T897-728L530-360H360Zm481-424-56-56 56 56ZM440-440h56l232-232-28-28-29-28-231 231v57Zm260-260-29-28 29 28 28 28-28-28Z">
</path>
</svg>
</s-icon>
<p data-translate-key="edit-mod-info">编辑mod信息</p>
</s-button>
</div>
</div>
</div>
</s-drawer>
<!-- -snackbar -->
<s-snackbar type="error" id="snackbar">
Snackbar Message
</s-snackbar>
<!-- -dialog -->
<!-- -设置页面 -->
<s-dialog id="settings-dialog">
<div slot="headline" class="font-hongmeng"
style="height: calc(100% - 35px);width: 100%;display: flex;padding: 0px;flex-direction: column;">
<h3 data-translate-key="settings" style="height: fit-content;margin: 10px 30px 5px 30px;font-size: 26px;">设置
</h3>
<div id="settings-dialog-container">
<div id="settings-menu" class="OO-box">
<input type="radio" name="settings-menu" id="normal-settings" class="settings-menu-radio" checked>
<label for="normal-settings" data-translate-key="normal-settings" class="font-hongmeng"> 常规设置 </label>
<input type="radio" name="settings-menu" id="advanced-settings" class="settings-menu-radio">
<label for="advanced-settings" data-translate-key="advanced-settings" class="font-hongmeng"> 高级设置 </label>
<input type="radio" name="settings-menu" id="switch-config-settings" class="settings-menu-radio">
<label for="switch-config-settings" data-translate-key="switch-config-settings" class="font-hongmeng"> 切换配置
</label>
<input type="radio" name="settings-menu" id="about-settings" class="settings-menu-radio">
<label for="about-settings" data-translate-key="about" class="font-hongmeng"> 关于 </label>
</div>
<div id="settings-content" class="OO-box">
<!-- 根据选择的设置选项展示不同的设置内容 -->
<!-- 常规设置 -->
<div id="settings-dialog-normal-settings" class="settings-dialog-tab">
<div class="OO-setting-bar" id="setting-get-language">
<h3 data-translate-key="language"> 语言 </h3>
<div id="language-picker">
<input type="radio" name="language" id="zh-cn" class="language-radio" checked>
<label for="zh-cn"> <s-chip selectable="true" type="default" selectable="true" id="zh-cn">
<p data-translate-key="zh-cn">简体中文</p>
</s-chip> </label>
<input type="radio" name="language" id="en" class="language-radio">
<label for="en"> <s-chip selectable="true" type="default" selectable="true" id="en">
<p data-translate-key="en">English</p>
</s-chip> </label>
</div>
</div>
<s-divider></s-divider>
<div class="OO-setting-bar" id="setting-get-theme">
<h3 data-translate-key="theme"> 主题 </h3>
<div id="theme-picker">
<input type="radio" name="theme" id="auto" class="theme-radio" checked>
<label for="auto"> <s-chip selectable="true" type="default" selectable="true" id="auto">
<p data-translate-key="auto">自动</p>
</s-chip> </label>
<input type="radio" name="theme" id="dark" class="theme-radio">
<label for="dark"> <s-chip selectable="true" type="default" selectable="true" id="dark">
<p data-translate-key="dark">暗色</p>
</s-chip> </label>
<input type="radio" name="theme" id="light" class="theme-radio">
<label for="light"> <s-chip selectable="true" type="default" selectable="true" id="light">
<p data-translate-key="light">亮色</p>
</s-chip> </label>
</div>
</div>
<s-divider></s-divider>
<div id="auto-apply" class="OO-setting-bar">
<h3 data-translate-key="auto-apply"> 自动应用 </h3>
<s-switch id="auto-apply-switch"></s-switch>
</div>
<p data-translate-key="auto-apply-info">当选择/取消选择mod时自动应用配置(可能带来轻微卡顿)</p>
<div id="auto-refresh-function" class="OO-setting-bar">
<h3 data-translate-key="auto-refresh-in-zzz"> 自动刷新 </h3>
<s-switch id="auto-refresh-in-zzz" data-platform="win32"></s-switch>
</div>
<p data-translate-key="auto-refresh-in-zzz-info">启用 应用mod时 将会自动在绝区零中激活刷新</p>
<s-divider></s-divider>
<!-- 启动程序的时候也一并启动游戏和modLoader -->
<div id="auto-start-game" class="OO-setting-bar">
<h3 data-translate-key="auto-start-game"> 自动启动游戏 </h3>
<s-switch id="auto-start-game-switch"></s-switch>
</div>
<p data-translate-key="auto-start-game-info">启动程序的时候也一并启动游戏和modLoader(需要在进阶设置设置游戏目录和modLoader目录)</p>
<s-divider></s-divider>
<div id="use-admin" class="OO-setting-bar">
<h3 data-translate-key="use-admin"> 使用管理员权限 </h3>
<s-switch id="use-admin-switch" data-platform="win32"></s-switch>
</div>
<p data-translate-key="use-admin-info">启动程序时是否使用管理员权限(需要重启程序生效)</p>
</div>
<!-- -高级设置 -->
<!-- -在这里可以设定 modRootDir,modSourceDir,modLoaderDir,gameDir -->
<div id="settings-dialog-advanced-settings" class="settings-dialog-tab">
<div class="OO-setting-bar">
<h3 data-translate-key="modRootDir"> mod根目录 </h3>
<s-text-field style="display: grid">
<input type="text" id="set-modRootDir-input">
</s-text-field>
</div>
<p data-translate-key="modRootDir-info"> Mod根目录为modLoader读取mod的位置,一般为Mods文件夹 </p>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="modSourceDir"> mod背包目录 </h3>
<s-text-field style="display: grid">
<input type="text" id="set-modSourceDir-input">
</s-text-field>
</div>
<p data-translate-key="modSourceDir-info"> mod背包目录为程序存储mod的位置,当mod被启用时,会从这里创建链接到mod根目录 </p>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="modLoaderDir"> mod加载器目录 </h3>
<s-text-field style="display: grid">
<input type="text" id="set-modLoaderDir-input">
</s-text-field>
</div>
<p data-translate-key="modLoaderDir-info"> Mod加载器目录为modLoader程序的位置,用于在管理器中打开modLoader </p>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="gameDir"> 游戏目录 </h3>
<s-text-field style="display: grid">
<input type="text" id="set-gameDir-input">
</s-text-field>
</div>
<p data-translate-key="gameDir-info"> 游戏目录为游戏程序的位置,用于在管理器中打开游戏 </p>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="refresh-mod-info-swapkey"> 刷新mod信息中的快捷键 </h3>
<s-button id="refresh-mod-info-swapkey-button" data-translate-key="refresh">
刷新
</s-button>
</div>
<s-divider></s-divider>
<div class="OO-setting-bar" id="settings-init-config">
<h3 data-translate-key="init-config"> 初始化配置 </h3>
<s-button id="init-config-button" data-translate-key="init">
初始化所有配置
</s-button>
</div>
</div>
<!-- -切换配置 -->
<!-- -在这里你可以选择开启在开始的时候选择配置文件的功能,并且设置配置文件保存位置 -->
<div id="settings-dialog-switch-config-settings" class="settings-dialog-tab">
<div class="OO-setting-bar">
<h3 data-translate-key="if-ask-switch-config"> 是否询问切换配置 </h3>
<s-switch id="if-ask-switch-config-switch"></s-switch>
</div>
<p data-translate-key="if-ask-switch-config-info">启动程序时是否询问切换配置文件(需要先在下面指定文件夹),以在不同游戏中使用,否则将使用缓存中的配置文件</p>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="config-dir"> 配置文件夹 </h3>
<s-text-field style="display: grid">
<input type="text" id="set-configRootDir-input">
</s-text-field>
</div>
<p data-translate-key="config-dir-info"> 配置文件夹为存储配置文件的位置,程序将在这里寻找配置文件,配置文件以文件夹形式存储,内部的config.json为配置文件
</p>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="switch-config"> 切换配置 </h3>
<s-button id="switch-config-button" data-translate-key="switch"
onclick="document.getElementById('switch-config-dialog').show()">
切换配置
</s-button>
</div>
<s-divider></s-divider>
<div class="OO-setting-bar">
<h3 data-translate-key="save-config"> 保存配置 </h3>
<s-button id="save-config-button" data-translate-key="save">
保存配置
</s-button>
</div>
<p data-translate-key="save-config-info"> 保存当前配置到配置文件夹 </p>
</div>
<!-- -about page -->
<div id="settings-dialog-about-settings" class="settings-dialog-tab">
<div class="OO-setting-bar" style="height: fit-content;">
<p data-translate-key="about-content"> 本程序由 XLXZ 开发,开源免费,遵循GNU General Public License
v3.0。用于管理基于3dmigoto的mod
,理论上来说也可以管理其他游戏的mod(只要是基于3dmigoto的) </p>
</div>
<div class="OO-setting-bar">
<p data-translate-key="about-version"> 最新版本在gamebanana上发布,如果你有任何问题或者建议,欢迎在github上提出 </p>
</div>
<div class="OO-setting-bar">
<p data-translate-key="about-author"> 作者:XLXZ </p>
</div>
<s-divider></s-divider>
<div class="OO-setting-bar" style="height: 100px;">
<h3 data-translate-key="about-thanks"> 感谢 soliddanii <br>提供的帮助 </h3>
<s-button class="link-button" type="text" link="https://github.com/soliddanii"
data-translate-key="click-to-jump"> 点击跳转 </s-button>
</div>
<div class="OO-setting-bar">
<h3> Github </h3>
<s-button class="link-button" type="text"
link="https://github.com/XiaoLinXiaoZhu/Mods-Manager-for-3Dmigoto/"
data-translate-key="click-to-jump"> 点击跳转 </s-button>
</div>
<div class="OO-setting-bar">
<h3> Gamebanana </h3>
<s-button class="link-button" type="text" link='https://gamebanana.com/tools/17889'
data-translate-key="click-to-jump"> 点击跳转 </s-button>
</div>
<div class="OO-setting-bar">
<h3> Caimogu </h3>
<s-button class="link-button" type="text" link='https://www.caimogu.cc/post/1408504.html'
data-translate-key="click-to-jump"> 点击跳转 </s-button>
</div>
<s-divider></s-divider>
</div>
</div>
</div>
</div>
<s-button slot="action" type="text" id="dialog-cancel" data-translate-key="cancel">取消</s-button>
<s-button slot="action" type="text" id="set-rootdir-confirm" data-translate-key="confirm">确定</s-button>
</s-dialog>
<!-- -编辑mod信息 -->
<s-dialog id="edit-mod-info-dialog">
<div slot="headline" class="font-hongmeng">
<h3 data-translate-key="edit-mod-info" style="height: fit-content;margin: 10px 30px 5px 30px;font-size: 26px;">
编辑mod信息
</h3>
<div id="edit-mod-info-dialog-container" style="display: flex;flex-direction: column;align-items: center;">
<div id="edit-mod-info-dialog-top" style="display: flex;width: 100%;">
<!-- 展示mod当前名称、图片 -->
<div class="OO-box"
style="width: 280px;min-width: 0;display:flex;flex-direction: column;align-items: center;flex-wrap: nowrap;justify-content: flex-start;"
id="edit-mod-info-left">
<div class="OO-box OO-shade-box"
style="width: calc(100% - 40px);padding: 10px 20px;margin:0;border-radius: 15px;">
<h3 id="editDialog-mod-info-name" style="white-space:normal;word-break:keep-all;height: fit-content;">
Mod name</h3>
</div>
<p id="editDialog-mod-info-character"
style="margin-top: 2px;font-size: small;color: gray;height: fit-content;width: fit-content;margin-bottom: 0;padding-bottom: 10px;">
Character</p>
<div id="img-container" style="width: 280px;height: 224px;border-radius: 0 30px;overflow: hidden;">
<img id="editDialog-mod-info-image"
style="width: 100% ;height:100%;max-width: 100%; max-height: 100%; object-fit: cover;"
src="default.png" alt="Mod Image"> </img>
</div>
</div>
<div style="height: 100%;margin-left: 1%;flex: 1;" id="edit-mod-info-content" class="OO-box">
<div class="OO-setting-bar">
<s-tooltip>
<h3 slot="trigger" data-translate-key="mod-info-name"> mod名称 </h3>
<p style="line-height: 1.2; word-wrap: break-word; max-width: 120px; overflow-wrap: break-word; white-space: normal;"
data-translate-key="mod-info-name-tip"> Mod名称就是文件夹名称,点击下方按钮前往文件夹处修改 </p>
</s-tooltip>
<s-button>
<p id="edit-mod-name" style="margin-left: 7px;"> </p>
</s-button>
</div>
<div class="OO-setting-bar">
<s-tooltip>
<h3 slot="trigger" data-translate-key="mod-info-character"> 角色 </h3>
<p style="line-height: 1.2;" data-translate-key="mod-info-character-tip">
角色是mod所属的角色当然你也可以将其归为unknow、tools或者mise,它会作为分类的依据 </p>
</s-tooltip>
<s-text-field>
<input type="text" id="edit-mod-character">
</s-text-field>
</div>
<div class="OO-setting-bar">
<s-tooltip>
<h3 slot="trigger" data-translate-key="mod-info-image"> mod图片 </h3>
<p style="line-height: 1.2;" data-translate-key="mod-info-image-tip">
mod图片是mod的展示图片(比例为3:2),点击按钮选择图片
</p>
</s-tooltip>
<s-button type="outlined" id="edit-mod-image-select"
data-translate-key="edit-mod-image-preview">选择图片</s-button>
</div>
<div class="OO-setting-bar">
<s-tooltip>
<h3 slot="trigger" data-translate-key="mod-info-url"> mod链接 </h3>
<p style="line-height: 1.2;" data-translate-key="mod-info-url-tip">
mod链接是mod的来源,可以是gamebanana、caimogu等 </p>
</s-tooltip>
<s-text-field>
<input type="text" id="edit-mod-url">
</s-text-field>
</div>
<div class="OO-setting-bar" style="
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;height:150px;">
<s-tooltip style="padding:15px 0;">
<h3 slot="trigger" data-translate-key="mod-info-description"> mod描述 </h3>
<p style="line-height: 1.2;" data-translate-key="mod-info-description-tip">
mod描述是对mod的简单描述,可以是作者、mod功能等 </p>
</s-tooltip>
<s-text-field class="OO-shade-box"
style="min-height: calc(100% - 45px);height: 0px;border-radius: 20px;bottom: 5px;top: 40px;left: 5px;right: 5px;max-width: calc(100% - 10px);width: calc(100% - 10px);">
<textarea type="text" id="edit-mod-description"></textarea>
</s-text-field>
</div>
<div>
<s-button type="text" id="edit-mod-info-cancel" data-translate-key="cancel">取消</s-button>
<s-button type="text" id="edit-mod-info-save" data-translate-key="save">保存</s-button>
</div>
</div>
</div>
</div>
</div>
</s-dialog>
<!-- -帮助页面 -->
<s-dialog id="help-dialog-cn">
<div slot="headline" class="font-hongmeng"
style="height: calc(100% - 35px);width: 100%;display: flex;padding: 0px;flex-direction: column;">
<h3 style="height: fit-content;margin: 10px 30px 5px 30px;font-size: 26px;">帮助 </h3>
<div id="help-dialog-container">
<div id="help-menu" class="OO-box">
<input type="radio" name="help-menu" id="help-preset" class="help-menu-radio" checked>
<label for="help-preset" class="font-hongmeng"> 使用【预设】管理你的mod </label>
<input type="radio" name="help-menu" id="help-mod" class="help-menu-radio">
<label for="help-mod" class="help-mod"> 导入mod,配置mod信息 </label>
<input type="radio" name="help-menu" id="help-auto" class="help-menu-radio">
<label for="help-auto" class="font-hongmeng"> 自动化 </label>
<input type="radio" name="help-menu" id="help-multiple-games" class="help-menu-radio">
<label for="help-multiple-games" class="font-hongmeng"> 适配多个游戏 </label>
<input type="radio" name="help-menu" id="help-trouble" class="help-menu-radio">
<label for="help-trouble" class="font-hongmeng"> 故障排除 </label>
</div>
<div id="help-content" class="OO-box">
<!-- 根据选择的设置选项展示不同的设置内容 -->
<!-- -预设 -->
<div id="help-dialog-help-preset" class="help-dialog-tab" style="overflow: auto;">
<div class="OO-setting-bar">
<h3> 使用【预设】管理你的mod </h3>
</div>
<div class="OO-box OO-shade-box">
<p>你可以将一系列的mod选项保存到【预设】中,以便快速切换不同的mod组合。所有预设的相关按钮都在右侧的预设栏里。点击标题栏右侧的预设按钮可以打开或关闭预设栏。</p>
</div>
<div class="OO-setting-bar">
<h3>创建【预设】:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. 点击位于预设栏中部的【添加预设】按钮</p>
<p>2. 输入预设名称</p>
<p>3. 点击【确定】按钮</p>
<p>之后,当前选中的mod将会被保存到新的预设中。</p>
</div>
<div class="OO-setting-bar">
<h3>应用【预设】:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. 选择想要应用的【预设】</p>
<p>2. 点击主页面中的【应用配置】按钮</p>
<p>随后,所选预设将会被加载到模组加载器中。</p>
</div>
<div class="OO-setting-bar">
<h3>编辑【预设】:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>任何对预设的更改都会自动保存。如果不希望保存更改,可以选择不使用预设或创建一个临时预设。</p>
</div>
<div class="OO-setting-bar">
<h3>删除【预设】:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. 点击【编辑预设】按钮后,每个预设旁边会出现【删除】按钮</p>
<p>2. 点击【删除】按钮即可删除该预设(无法删除当前正在使用的预设)</p>
</div>
<div class="placeholder" style="flex: 1;min-height: 150px;"></div>
</div>
<!-- -mod -->
<div id="help-dialog-help-mod" class="help-dialog-tab" style="overflow: auto;">
<div class="OO-setting-bar">
<h3>导入mod:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>有两种方法可以导入mod:</p>
<p>1. 将mod文件夹拖放到主窗口中,它会自动移动到【modSource】中。但在管理员模式下,由于安全限制,拖放功能不可用。</p>
<p>2. 手动将文件夹移到【modSource】中。</p>
<p>目前还不支持直接导入zip文件,请先解压后再进行导入。</p>
</div>
<div class="OO-setting-bar">
<h3>配置mod信息:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. 在mod列表中点击某个mod,在右侧会出现mod的信息。点击右侧菜单栏中的【编辑mod信息】按钮,按照提示填写信息。</p>
<p>2. 右键点击mod列表中的mod,同样可以打开编辑对话框填写信息。</p>
<p>完成编辑后,mod信息会被保存在【modSource】中,并在mod列表中显示。</p>
</div>
<div class="OO-setting-bar">
<h3>配置mod封面:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>有三种方式可以配置mod封面:</p>
<p>1. 在编辑mod信息的对话框中,点击【设置封面图片】按钮,然后选择图片。</p>
<p>2. 直接将图片拖放到mod卡片上(可以从网页中拖放),但在管理员模式下此功能受限。</p>
<p>3. 手动将图片放到mod文件夹中,文件名为cover.jpg或cover.png。</p>
</div>
</div>
<!-- -多个游戏 -->
<div id="help-dialog-help-multiple-games" class="help-dialog-tab" style="overflow: auto;">
<div class="OO-setting-bar">
<h3>适配多个游戏</h3>
</div>
<div class="OO-box OO-shade-box">
<p>程序通过保存不同的配置文件夹来适应不同的游戏。可以在设置中启用询问切换配置,这样启动时程序会询问选择哪个配置文件夹以适配特定的游戏。</p>
</div>
<div class="OO-setting-bar">
<h3>将当前配置保存到配置文件:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. 设置当前游戏的mod根目录、mod背包目录、mod加载器目录和游戏目录。</p>
<p>2. 在设置页面的“切换配置”部分指定配置文件夹的位置。</p>
<p>3. 点击【保存当前配置到配置文件夹】按钮。</p>
<p>4. 之后可以通过设置页面的“切换配置”来切换配置文件夹。</p>
</div>
<div class="OO-setting-bar">
<h3>切换配置文件夹:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. 在设置页面的“切换配置”部分点击【切换配置】按钮。</p>
<p>2. 程序会根据选择的配置文件夹启动。</p>
<p>另外,也可以开启自动询问切换配置的功能,这样每次启动时程序都会询问选择哪个配置文件夹。</p>
</div>
</div>
<!-- -自动化 -->
<div id="help-dialog-help-auto" class="help-dialog-tab" style="overflow: auto;">
<div class="OO-setting-bar">
<h3> 让【自动化】解放你的双手 </h3>
</div>
<div class="OO-setting-bar">
<h3>【自动化】</h3>
</div>
<div class="OO-box OO-shade-box">
<p>本程序能够自动启动游戏和modLoader,并在应用mod时激活绝区零的窗口并刷新,但这需要一定的配置。</p>
</div>
<div class="OO-setting-bar">
<h3>自动应用:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>可以在设置中启用【自动应用】配置,这样每当选择或取消选择mod时,程序会自动应用这些改变。</p>
</div>
<div class="OO-setting-bar">
<h3>自动刷新:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>当mod被应用时,程序会自动激活zzz的窗口并刷新,这样就无需手动操作了。</p>
</div>
<div class="OO-setting-bar">
<h3>自动启动游戏:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>程序启动时可以自动启动游戏和modLoader,但需在高级设置中正确设置游戏和modLoader的路径。</p>
</div>
<div class="OO-setting-bar">
<h3>使用管理员权限:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>程序启动时将以管理员权限运行,这使得游戏也能以管理员权限启动,避免UAC提示。不过,在管理员模式下,拖放操作将被禁用,因此不能通过拖放来导入mod或设置封面图片。</p>
</div>
</div>
<!-- -故障排除 -->
<div id="help-dialog-help-trouble" class="help-dialog-tab" style="overflow: auto;">
<div class="OO-setting-bar">
<h3>故障排除</h3>
</div>
<div class="OO-box OO-shade-box">
<p>如果遇到问题,可以尝试以下步骤解决问题:</p>
<p>1. 按F5刷新页面,可能解决某些问题。</p>
<p>2. 重启程序,有时候重启就能解决问题。</p>
<p>3. 按Ctrl + Shift + I打开开发者工具查看控制台错误信息,有助于定位问题。</p>
<p>如果以上方法无效,可以截图控制台错误信息并提交到GitHub或GameBanana寻求帮助。</p>
</div>
</div>
</div>
</div>
</div>
</s-dialog>
<!-- -帮助页面,但是英文 -->
<s-dialog id="help-dialog-en">
<div slot="headline" class="font-hongmeng"
style="height: calc(100% - 35px);width: 100%;display: flex;padding: 0px;flex-direction: column;">
<h3 style="height: fit-content;margin: 10px 30px 5px 30px;font-size: 26px;">Help</h3>
<div id="help-dialog-container">
<div id="help-menu" class="OO-box">
<input type="radio" name="help-menu-en" id="help-preset-en" class="help-menu-radio" checked>
<label for="help-preset-en" class="font-hongmeng">Manage your mods with presets</label>
<input type="radio" name="help-menu-en" id="help-mod-en" class="help-menu-radio">
<label for="help-mod-en" class="help-mod">Import mods, configure mod information</label>
<input type="radio" name="help-menu-en" id="help-multiple-games-en" class="help-menu-radio">
<label for="help-multiple-games-en" class="font-hongmeng">Adapt to multiple games</label>
<input type="radio" name="help-menu-en" id="help-auto-en" class="help-menu-radio">
<label for="help-auto-en" class="font-hongmeng">Automation</label>
<input type="radio" name="help-menu-en" id="help-trouble-en" class="help-menu-radio">
<label for="help-trouble-en" class="font-hongmeng">Troubleshooting</label>
</div>
<div id="help-content" class="OO-box">
<!-- Display different setting contents based on the selected option -->
<!-- -Presets -->
<div id="help-dialog-help-preset-en" class="help-dialog-tab" style="overflow: auto;">
<div class="OO-setting-bar">
<h3>Manage your mods with presets</h3>
</div>
<div class="OO-box OO-shade-box">
<p>You can save a series of mod options to a preset, allowing you to quickly switch between different
mod combinations. All relevant buttons for presets are in the preset panel on the right. You can click
the preset button on the right side of the title bar to open/close the preset panel.</p>
</div>
<div class="OO-setting-bar">
<h3>Create a preset:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. Click the Add Preset button, located in the middle of the preset panel</p>
<p>2. Enter the preset name</p>
<p>3. Click the OK button</p>
<p>Afterward, the selected mods will be saved to this preset.</p>
</div>
<div class="OO-setting-bar">
<h3>Apply a preset:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>1. Select the preset you want to apply</p>
<p>2. Click the Apply Configuration button on the main page</p>
<p>Afterward, your preset will be applied to the mod loader.</p>
</div>
<div class="OO-setting-bar">
<h3>Edit a preset:</h3>
</div>
<div class="OO-box OO-shade-box">
<p>All changes will be saved to the current preset. If you do not wish to save, you can create a new
temporary preset or start the program without selecting a preset.</p>
</div>
<div class="OO-setting-bar">