-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisaka.json
2591 lines (2591 loc) Β· 123 KB
/
misaka.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
{
"RepositoryName": "EPOSbox",
"RepositoryDescription": "The repo made for you π",
"RepositoryAuthor": "EPOS",
"RepositoryIcon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/assets/repo/icon_full.png",
"RepositoryWebsite": "https://github.com/EPOS05/EPOSbox",
"Default": {
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/assets/repo/header.gif",
"ViewCount": true
},
"RepositoryContents": [
{
"Name": "FontManager",
"Description": "The easiest font changer available",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FontManager/ico_2.png",
"Category": "Fonts",
"Caption": "FontManager allows you to change your System, Clock & Emoji font to a custom one straight through misaka!!",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FontManager/ss_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FontManager/ss2_3.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FontManager/ss3_2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FontManager/FontManager.misaka",
"Description": "initial release"
},
{
"Version": "2.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FontManager/FontManager2.0.misaka",
"Description": "-Emoji support -Reduced tweak size -Font download links -Updated UI"
},
{
"Version": "3.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FontManager/FontManager3.0.misaka",
"Description": "-Added Keycaps.ttc & PingFang.ttc support -Updated the UI to make it look more like SoundManager"
},
{
"Version": "4.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FontManager/FontManager4.0.misaka",
"Description": "-Added Arabic fonts support -Minor UI changes"
},
{
"Version": "5.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FontManager/FontManager5.0.misaka",
"Description": "-Added KeycapPad & PhoneKeyCaps fonts support -Added automatic keyboard cache clearing"
}
],
"PackageID": "com.epos.fontmanager"
},
{
"Name": "SoundManager",
"Description": "The only sound changer you'll ever need!",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SoundManager/ico_2.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SoundManager/headerrepo_2.png",
"Category": "Sound",
"Caption": "SoundManager allows you to change your system sounds with ease. With over 90 included sound options!!\n\nEven including the option to select your own custom sounds!",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SoundManager/ss1_3.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SoundManager/ss2_3.png"
],
"Releases": [
{
"Version": "0.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.1.misaka",
"Description": "initial release"
},
{
"Version": "0.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.2.misaka",
"Description": "Adds MagSafe charging sound & Off option for Phone Dialer keys"
},
{
"Version": "0.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.3.misaka",
"Description": "Adds PixelShutter cam sound & a lot of new options"
},
{
"Version": "0.4",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.4.misaka",
"Description": "Adds PP7 Lock sound & changes Phone Dialer keys label"
},
{
"Version": "0.4.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.4.1.misaka",
"Description": "iOS 15 fix by fall20c"
},
{
"Version": "0.5",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.5.misaka",
"Description": "Adds option to choose custom sounds"
},
{
"Version": "0.6",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.6.misaka",
"Description": "New UI (Picker instead of SegmentedControl)"
},
{
"Version": "0.7",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.7.misaka",
"Description": "Adds option to set custom sounds for: -Phone Dialer keys -Received Message -Sent Message"
},
{
"Version": "0.8",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager0.8.misaka",
"Description": "Sound options update, 64 new included sound options, updated UI"
},
{
"Version": "9.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager9.0.misaka",
"Description": "-Now plays a preview sound when selecting any audio option -Some small UI changes -Changed version naming scheme (no longer beta)"
},
{
"Version": "9.0.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SoundManager/SoundManager9.0.1.misaka",
"Description": "tweak assets fix"
}
],
"PackageID": "com.epos.soundmanager"
},
{
"Name": "SettingsManager",
"Description": "The all in one settings customizer",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SettingsManager/ico.png",
"Category": "Themes",
"Caption": "SettingsManager allows you to change your settings icons to your own custom icons!!\n\nIt also give you the ability to add a custom image on the top of your settings list!\n\n(More features planned for future releases)",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SettingsManager/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SettingsManager/ss2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/SettingsManager/ss3.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SettingsManager/SettingsManager.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SettingsManager/SettingsManager1.1.misaka",
"Description": "Fixed mail icon option from not showing"
},
{
"Version": "1.1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/SettingsManager/SettingsManager1.1.1.misaka",
"Description": "tweak assets fix"
}
],
"PackageID": "com.epos.settingsmanager"
},
{
"Name": "NoVulnTools2",
"Description": "The best toolbox for your device",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/NoVulnTools2/ico_3.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/NoVulnTools2/headerrepo_2.png",
"Category": "Settings",
"Caption": "NoVulnTools is an all in one toolbox for your devices\nIt has:\n\nβ’ UI Animation Speed\nβ’ Custom side button speed\nβ’ Playing sound upon pasting things\nβ’ Your build version in the CC or status bar\nβ’ Haptic upon wake for iPhone\nβ’ Better battery information\n\nAnd much more.\n\nOnce you have configured your options head to Settings β General.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/NoVulnTools2/ss_3.jpg",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/NoVulnTools2/ss2_3.jpg",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/NoVulnTools2/ss3_3.jpg"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools2.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools21.1.misaka",
"Description": "File size fix - removed the home button speed"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools21.2.misaka",
"Description": "File size fix 2"
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools21.3.misaka",
"Description": "Custom settings icons support & Added toggle to enable or disable animation speed changes"
},
{
"Version": "1.4",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools21.4.misaka",
"Description": "slight re-design, changed default icons to the default ios icons, new low power icon that changes dynamically depending on iOS version, fixed VPN tab not working"
},
{
"Version": "1.5",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools21.5.misaka",
"Description": "Paste sound no longer requires a reboot, re-designed layout, lowers file size to support more iOS versions"
},
{
"Version": "1.5.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/NoVulnTools2/NoVulnTools21.5.1.misaka",
"Description": "tweak assets fix"
}
],
"PackageID": "com.epos.novulntools2"
},
{
"Name": "ColorBoard",
"Description": "A slight hint of color",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
},
{
"Label": "Discord: @HackZy - Icon & Header Creator",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ico_2.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/headerrepo_2.png",
"Category": "SpringBoard",
"Caption": "The all-in-one tweak to bring color to your device, Changing 3D touch/menu colors, Dock colors, Notification colors, Folder colors & Control Center modules, background colors & App Library Colors & so much more.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss1.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss3.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss5.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss6.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ColorBoard/ss7.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ColorBoard/ColorBoard.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ColorBoard/ColorBoard1.1.misaka",
"Description": "Bug Fixes \n β’ Notification Stacking \n β’ Notification Shadow \n β’ Notification Dark Secondary Text Color \n Added Features \n β’ Switcher Blur \n β’ Spotlight Color \n β’ Transparent App Library Pods"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ColorBoard/ColorBoard1.2.misaka",
"Description": "Added Features \n β’ Notification Badge Color \n Tweak Improvements \n β’ Option to disable the effects."
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ColorBoard/ColorBoard1.3.misaka",
"Description": "Fixed Badge Color, & added support for kfd."
},
{
"Version": "1.4 Beta",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ColorBoard/ColorBoard1.4.misaka",
"Description": "Added opacity values to Dock, Control Center & Folder colors & a option to make the control center modules & toggles clear."
},
{
"Version": "1.5",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ColorBoard/ColorBoard1.5.misaka",
"Description": "Changed Disable Effects to Enable, Now letβs you turn off options and the files will not be replaced, Improved Spotlight colors, Added a new Pink color for notification badges & general tweak stability improvements."
}
],
"PackageID": "com.epos.colorboard"
},
{
"Name": "QuickActionColor",
"Description": "Give your lockscreen a unique look",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/QuickActionColor/ico.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/QuickActionColor/headerrepo.png",
"Category": "Lock Screen",
"Caption": "Changes your lockscreen toggle color.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/QuickActionColor/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/QuickActionColor/ss2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/QuickActionColor/ss3.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/QuickActionColor/ss4.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/QuickActionColor/QuickActionColor.misaka",
"Description": "initial release"
}
],
"PackageID": "com.epos.quickactioncolor"
},
{
"Name": "AppCC",
"Description": "Launching apps from the Control Center with ease",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/AppCC/ico_3.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/AppCC/headerrepo.png",
"Category": "Control Center",
"Caption": "AppCC Allows you to launch any application from the Control Center, It includes some preset applications or you can use a custom Bundle ID to an application currently installed on your device.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/AppCC/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/AppCC/ss2_2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/AppCC/AppCC.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/AppCC/AppCC1.1.misaka",
"Description": "icon option changes"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/AppCC/AppCC1.2.misaka",
"Description": "Added better support for other Control Center tweaks"
}
],
"PackageID": "com.epos.appcc"
},
{
"Name": "CarPlayWP",
"Description": "The ultimate CarPlay tweak",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/CarPlayWP/ico.jpg",
"Category": "SpringBoard",
"Caption": "CarPlayWP gives you the ability to change your CarPlay Wallpaper to whatever you like.\n\nWith just a few clicks in the tweak settings you can enjoy your very own wallpaper!!",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/CarPlayWP/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/CarPlayWP/ss2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/CarPlayWP/ss3.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/CarPlayWP/CarPlayWP.misaka",
"Description": "initial release"
}
],
"PackageID": "com.epos.carplaywp"
},
{
"Name": "MuteAnimation",
"Description": "Custom mute animations or image",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029 & EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
},
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/MuteAnimation/ico.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/MuteAnimation/headerrepo.png",
"Category": "SpringBoard",
"Caption": "Changes your silent pill to a custom image or animation.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/MuteAnimation/gif_2.gif",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/MuteAnimation/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/MuteAnimation/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/MuteAnimation/MuteAnimation.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/MuteAnimation/MuteAnimation1.1.misaka",
"Description": "Added an option to adjust the position of the animation or custom image."
}
],
"PackageID": "com.epos.muteanimation"
},
{
"Name": "LSFootnote",
"Description": "a footnote on your lockscreen",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/LSFootnote/ico_3.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/LSFootnote/headerrepo.png",
"Category": "Lock Screen",
"Caption": "This tweak allows you to simply add a footnote saying anything you like right above the home bar on the lockscreen.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/LSFootnote/ss_2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/LSFootnote/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/LSFootnote/LSFootnote.misaka",
"Description": "initial release"
}
],
"PackageID": "com.epos.lsfootnote"
},
{
"Name": "FrostedUI",
"Description": "Completely change the way iOS looks",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ico.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/headerrepo.gif",
"Category": "SpringBoard",
"Caption": "FrostedUI - Revolutionise the way you view your notifications, control center, app library, 3D touch menus, folders, widgets and even UI alerts",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss2_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss3_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss4_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss5_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss6_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss7_4.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FrostedUI/ss8_4.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FrostedUI/FrostedUI.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FrostedUI/FrostedUI1.1.misaka",
"Description": "added option to change notif and notif shadow color trough tweak settings"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FrostedUI/FrostedUI1.2.misaka",
"Description": "Blur Value stepper style instead of the slider & improved titles"
}
],
"PackageID": "com.epos.frostedui"
},
{
"Name": "ModernCC",
"Description": "Give your Control Center a modern look",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ModernCC/ico.png",
"Category": "Control Center",
"Caption": "This tweak gives your Control Center a more modern look and feel!\n\nMade possible with 14DND by nbxy <3",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ModernCC/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ModernCC/ss2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ModernCC/ss3.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ModernCC/ModernCC.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ModernCC/ModernCC1.1.misaka",
"Description": "Adds tweak settings that allow users to dissable the ModernCC background color, Makes ModernCC compatible with other CC or UI tweaks."
},
{
"Version": "1.1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ModernCC/ModernCC1.1.1.misaka",
"Description": "tweak assets fix"
}
],
"PackageID": "com.epos.moderncc"
},
{
"Name": "Pulsar LS UI",
"Description": "Pulsar on your lockscreen",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/PulsarLSUI/ico_2.png",
"Category": "Lock Screen",
"Caption": "Change your lockscreen flashlight and camera icons into Pulsar\n\nInspired by Pulsar Control Center UI made by Phuc Do",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/PulsarLSUI/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/PulsarLSUI/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/PulsarLSUI/PulsarLSUI.misaka",
"Description": "initial release"
}
],
"PackageID": "com.epos.pulsarlsui"
},
{
"Name": "Gradient Passcode & Phone",
"Description": "Change your passcode & phone keys!",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS & Z3ROS1X",
"Links": [
{
"Label": "EPOS (Dev)",
"Link": "https://twitter.com/RealEPOS"
},
{
"Label": "Z3ROS1X (Designer)",
"Link": "https://twitter.com/Z3ROS1X"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/GradientPassPhone/ico.jpg",
"Category": "Passcode Theme",
"Caption": "Change your Passcode & Phone Dialer keys to this beautiful Gradient Theme designed by β¦
α΄’α΄ΚΙ΅sΙͺxβ¦",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/GradientPassPhone/ss.jpg",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/GradientPassPhone/ss2.jpg"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/GradientPassPhone/GradientPassPhone.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/GradientPassPhone/GradientPassPhone1.1.misaka",
"Description": "Fixed phone keys light mode variant not theming"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/GradientPassPhone/GradientPassPhone1.2.misaka",
"Description": "Fixed scaling issue & added support for all devices"
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/GradientPassPhone/GradientPassPhone1.3.misaka",
"Description": "Reduces file size & improves support (Kumiki FIX)"
},
{
"Version": "1.4",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/GradientPassPhone/GradientPassPhone1.4.misaka",
"Description": "Added %Misaka_Regex% & Reduces tweak size"
}
],
"PackageID": "com.epos.gradient"
},
{
"Name": "Wayfinder Clock",
"Description": "Wayfinder watch face on iOS",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/WayfinderClock/ico.png",
"Category": "Clock",
"Caption": "This tweak changes the appearance of your iOS clock icon to the Wayfinder watch face From ο£ΏWATCH",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/WayfinderClock/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/WayfinderClock/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/WayfinderClock/WayfinderClock.misaka",
"Description": "initial release"
},
{
"Version": "1.0.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/WayfinderClock/WayfinderClock1.0.1.misaka",
"Description": "tweak assets fix"
}
],
"PackageID": "com.epos.wayfinderclock"
},
{
"Name": "Engage Charging Sound",
"Description": "Change your charging sound!",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/EngageSound/ico_2.png",
"Category": "Sound",
"Caption": "Change your default charging sound to the Apple AirPower wireless charging sound",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/EngageSound/vid.mov"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/EngageSound/EngageSound.misaka",
"Description": "initial release"
}
],
"PackageID": "com.epos.engage"
},
{
"Name": "Debug Stoofs",
"Description": "Enable debug options",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.1.2",
"Author": {
"Label": "tyler1029",
"Links": [
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DebugStoofs/ico.jpg",
"Category": "Settings",
"Caption": "Debug Stoofs allows you to enable a few debugging options.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DebugStoofs/ss_2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DebugStoofs/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DebugStoofs/DebugStoofs.misaka",
"Description": "initial release"
}
],
"PackageID": "com.epos.debugstoofs"
},
{
"Name": "Classic Settings",
"Description": "iOS 6 inside your settings",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ClassicSettings/ico_2.png",
"Category": "Themes",
"Caption": "Relive the old days with Classic Settings\n\nThis theme changes your settings icons into the iOS 6 icons.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ClassicSettings/ss_2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ClassicSettings/ss2_3.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ClassicSettings/ss3_2.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/ClassicSettings/ss4_3.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ClassicSettings/ClassicSettings.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ClassicSettings/ClassicSettings1.1.misaka",
"Description": "-redid shortcuts & measure icons -fixed developer settings icon"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ClassicSettings/ClassicSettings1.2.misaka",
"Description": "Decreases file size and adds icon for Home (fixes iOS 15.1 issues)"
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/ClassicSettings/ClassicSettings1.3.misaka",
"Description": "Decreases file size (fixes iOS 15.1 issues)"
}
],
"PackageID": "com.epos.classicsettings"
},
{
"Name": "FelicitySettings",
"Description": "a more colorful & detailed look for your settings",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029 & EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
},
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FelicitySettings/ico.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FelicitySettings/headerrepo_2.png",
"Category": "Themes",
"Caption": "FelicitySettings takes everything that is great with the default iOS icon design and pushes it further.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FelicitySettings/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/FelicitySettings/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FelicitySettings/FelicitySettings.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FelicitySettings/FelicitySettings1.1.misaka",
"Description": "Adds option that allows users to set a custom image on top off settings"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FelicitySettings/FelicitySettings1.2.misaka",
"Description": "Adds option to set a gap between the custom image and icloud"
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FelicitySettings/FelicitySettings1.3.misaka",
"Description": "slightly decreases file size to make the tweak better compatible with iOS 15.0"
},
{
"Version": "1.4",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FelicitySettings/FelicitySettings1.4.misaka",
"Description": "Decreases file size and adds icon for Home (fixes iOS 15.1 issues)"
},
{
"Version": "1.5",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/FelicitySettings/FelicitySettings1.5.misaka",
"Description": "Decreases file size (fixes iOS 15.1 issues)"
}
],
"PackageID": "com.epos.felicitysettings"
},
{
"Name": "Vivacity Settings",
"Description": "A Vibrant Theme to Light up Your Settings!",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029 & EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
},
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/VivacitySettings/ico.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/VivacitySettings/headerrepo.png",
"Category": "Themes",
"Caption": "Vivacity Settings takes everything that is great about default iOS design and gives it a modern and vibrant spin.",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/VivacitySettings/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/VivacitySettings/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/VivacitySettings/VivacitySettings.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/VivacitySettings/VivacitySettings1.1.misaka",
"Description": "Adds option that allows users to set a custom image on top off settings"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/VivacitySettings/VivacitySettings1.2.misaka",
"Description": "Adds option to set a gap between the custom image and icloud"
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/VivacitySettings/VivacitySettings1.3.misaka",
"Description": "slightly decreases file size to make the tweak better compatible with iOS 15.0"
},
{
"Version": "1.4",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/VivacitySettings/VivacitySettings1.4.misaka",
"Description": "Decreases file size and adds icon for Home (fixes iOS 15.1 issues)"
},
{
"Version": "1.5",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/VivacitySettings/VivacitySettings1.5.misaka",
"Description": "Decreases file size (fixes iOS 15.1 issues)"
}
],
"PackageID": "com.epos.vivacitysettings"
},
{
"Name": "Double Bubble Settings",
"Description": "Double Bubble Settings with MDC",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029 & EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
},
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DoubleBubbleSettings/ico.png",
"HeaderImage": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DoubleBubbleSettings/headerrepo.png",
"Category": "Themes",
"Caption": "A modern and fresh rework of bubblegum settings. Features pastel colors that work well with any setup; light or dark!\n\n(currently VPN, FaceID & Wallet icons don't theme properly, if a fix is found we will push out an update.)",
"Screenshot": [
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DoubleBubbleSettings/ss.png",
"https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/DoubleBubbleSettings/ss2.png"
],
"Releases": [
{
"Version": "1.0",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DoubleBubbleSettings/DoubleBubbleSettings.misaka",
"Description": "initial release"
},
{
"Version": "1.1",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DoubleBubbleSettings/DoubleBubbleSettings1.1.misaka",
"Description": "Adds option that allows users to set a custom image on top off settings"
},
{
"Version": "1.2",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DoubleBubbleSettings/DoubleBubbleSettings1.2.misaka",
"Description": "Adds option to set a gap between the custom image and icloud"
},
{
"Version": "1.3",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DoubleBubbleSettings/DoubleBubbleSettings1.3.misaka",
"Description": "slightly decreases file size to make the tweak better compatible with iOS 15.0"
},
{
"Version": "1.4",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DoubleBubbleSettings/DoubleBubbleSettings1.4.misaka",
"Description": "Decreases file size and adds icon for Home (fixes iOS 15.1 issues)"
},
{
"Version": "1.5",
"Package": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/tweaks_misaka/DoubleBubbleSettings/DoubleBubbleSettings1.5.misaka",
"Description": "Decreases file size (fixes iOS 15.1 issues)"
}
],
"PackageID": "com.epos.doublebubblesettings"
},
{
"Name": "Morandi Settings",
"Description": "Morandi Settings with MDC",
"MinIOSVersion": "15.0",
"MaxIOSVersion": "16.6.1",
"Author": {
"Label": "tyler1029 & EPOS",
"Links": [
{
"Label": "EPOS",
"Link": "https://twitter.com/RealEPOS"
},
{
"Label": "tyler1029 - Discord",
"Link": "https://discord.gg/vGByEU7UzX"
}
]
},
"Icon": "https://raw.githubusercontent.com/EPOS05/EPOSbox/main/jailed/depictions/MorandiSettings/ico_2.png",