-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPackages
1517 lines (1433 loc) · 60.2 KB
/
Packages
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
Package: com.nan.3dbadgeclear
Version: 1.6.8
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate
Conflicts: com.isklikas.3dbadgeclear, com.twickd.john-sklikas.3dbadgeclear
Provides: com.isklikas.3dbadgeclear, com.twickd.john-sklikas.3dbadgeclear (=1.6.8)
Filename: ./debs/iphoneos-arm/com.nan.3dbadgeclear_1.6.8_iphoneos-arm.deb
Size: 141420
MD5sum: bdbaad5df35dfa076ae9771a92144d74
SHA1: d45b01b57d241d800e0b2369ac3d1454a8789b32
SHA256: d8efd640ec0ec2f4312d88226fb14e5d0b40fa2935de5f061591435c364df81a
Section: Tweaks
Description: 使用长按或者 3D Touch 菜单来清理桌面应用角标
Author: isklikas
Icon: https://invalidunit.github.io/sileodepiction/com.nan.3dbadgeclear/image.png
Name: 3DBadgeClear
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.3dbadgeclear/js.json
Package: com.nan.apfs-deletefs
Version: 0.2.1
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: coreutils, firmware (>= 10.3)
Conflicts: com.michael.apfs-deletefs
Provides: com.michael.apfs-deletefs (=0.2.1)
Filename: ./debs/iphoneos-arm/com.nan.apfs-deletefs_0.2.1_iphoneos-arm.deb
Size: 4532
MD5sum: 140bcbbad9d6575be9db693869d45cc0
SHA1: 70bfed1e48ce14efe050df32d5180ce2399421d5
SHA256: b24350c05b20c62035b6d3dff301f42f574c89bb9410d810a80bd1f73d09457a
Section: Terminal_Support
Description: 删除 apfs 分区的命令行工具
Tag: role::hacker
Author: halo_michael <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/Default/image_terminal.png
Name: APFS Deletefs
Sponsor: halo_michael <[email protected]>
Package: com.nan.apfs-snapshot
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Filename: ./debs/iphoneos-arm/com.nan.apfs-snapshot_0.1.0_iphoneos-arm.deb
Size: 4620
MD5sum: a36cccc34a48bee004c14dd6c2435577
SHA1: bf78f1492762dc47a1c6be22257d6ad9d29f401d
SHA256: f68e463735db1186352241bc0dfd2f4b419798ed46ff0e370bd5033acc1d0e52
Section: Terminal_Support
Description: APFS 快照管理工具
Tag: role::hacker
Author: Apple & halo-michael
Icon: https://invalidunit.github.io/sileodepiction/Default/image_terminal.png
Name: APFS Snapshot
Package: com.nan.appdatamanager
Version: 1.6.0-2
Architecture: iphoneos-arm
Maintainer: zhaonan
Conflicts: com.tigisoftware.appdatamanager
Provides: com.tigisoftware.appdatamanager (= 1.6.0-2)
Filename: ./debs/iphoneos-arm/com.nan.appdatamanager_1.6.0-2_iphoneos-arm.deb
Size: 2462300
MD5sum: 77278a1d7e0a36d550dac418fc414a82
SHA1: 37cdfb6afe121b342dee0c728b3b3a824cd860d8
SHA256: 53f823a3d7efe4d1db3da24a775c2de142cdd3920d22dc94e4f7aa41fddaf1fc
Section: Utilities
Description: 该工具为已安装的应用提供了擦除,备份,还原应用数据的方法
Author: TIGI Software
Icon: https://invalidunit.github.io/sileodepiction/com.nan.appdatamanager/image.png
Name: Apps Manager
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.appdatamanager/js.json
Package: com.nan.appstoreplusplus
Version: 0.9.12
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 11.0), mobilesubstrate, com.rpetrich.rocketbootstrap
Conflicts: com.unlimapps.uaupdatetools, com.cokepokes.appstoreplusplus
Provides: com.cokepokes.appstoreplusplus (=0.9.12)
Filename: ./debs/iphoneos-arm/com.nan.appstoreplusplus_0.9.12_iphoneos-arm.deb
Size: 332716
MD5sum: 9caa251821327f94fb31c4afc4324f4a
SHA1: e9df24da94ceb9af7d3761679de0ed0eeeea6d8f
SHA256: 2b906f6637f64ca1b28653ecd6caf34f0af8d0bcf25d28bc538fce256f9c84f5
Section: Tweaks
Priority: optional
Description: AppStore 应用自由升降级工具
Author: CokePokes
Icon: https://invalidunit.github.io/sileodepiction/com.nan.appstoreplusplus/image.png
Name: AppStore++
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.appstoreplusplus/js.json
Package: com.nan.backgrounderaction12
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate, com.opa334.ccsupport
Filename: ./debs/iphoneos-arm/com.nan.backgrounderaction12_0.1.0_iphoneos-arm.deb
Size: 13356
MD5sum: bbf305206a1b64d058b0a8d51b532545
SHA1: 8175d084eccf761cb94d4f1dc392d01c8599cc61
SHA256: a0240d77d65be208a7a0ddf90cb2cef5f67d28165d23f1f0d917dc6b0801c6c3
Section: Tweaks
Description: 在控制中心添加 “Toggle Background Mode” 按钮。
Author: akusio <[email protected]>
Depiction: https://akusio.github.io/descriptions/backgrounderaction12/index.html
Icon: https://invalidunit.github.io/sileodepiction/com.nan.backgrounderaction12/image.png
Name: BackgrounderAction for CCSupport
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.backgrounderaction12/js.json
Package: com.nan.backgrounderaction13
Version: 0.1.3
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate, com.opa334.ccsupport
Filename: ./debs/iphoneos-arm/com.nan.backgrounderaction13_0.1.3_iphoneos-arm.deb
Size: 13700
MD5sum: 527b2927f4e5c4892aa0c11de1f5f26b
SHA1: 17fcf3a0d55c73c10665c327dd8e67736a13ad80
SHA256: 640b06cf15c98294b3a69f87816bc4196790610fc38831bb18717d274581333b
Section: Tweaks
Description: 在控制中心添加 “Toggle Background Mode” 按钮。
Author: akusio <[email protected]>
Depiction: https://akusio.github.io/descriptions/backgrounderaction13/index.html
Icon: https://invalidunit.github.io/sileodepiction/com.nan.backgrounderaction13/image.png
Name: BackgrounderAction2 for CCSupport
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.backgrounderaction13/js.json
Package: com.nan.bettercc
Version: 0.0.5-wu
Architecture: iphoneos-arm64
Maintainer: zhaonan
Depends: mobilesubstrate, firmware (>= 14), ws.hbang.common (>= 1.17), com.opa334.ccsupport, preferenceloader
Conflicts: com.miguelaka95.bettercc
Provides: com.miguelaka95.bettercc
Filename: ./debs/iphoneos-arm64/com.nan.bettercc_0.0.5-wu_iphoneos-arm64.deb
Size: 150056
MD5sum: 74c0d846b96fd217ec4e7c087d9276ed
SHA1: ffc990b6d43c29ec59d85aecf6369c6d0d5cfab2
SHA256: e0ac98c163bf99dc8d3dfcf18cb2e9123e33dea82092bb3d0e93563da7397a2c
Section: Tweaks
Description: Customize your Control Center!
Invisible Modules.
Rearrange Connectivity Toggles.
Change Modules Size.
Weather Widget.
Author: Miguelaka95 <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/com.nan.bettercc/image.png
Name: BetterCC
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.bettercc/js.json
Package: com.nan.betterccxi
Version: 1.6.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware(>=11.0), mobilesubstrate, com.opa334.ccsupport, preferenceloader
Conflicts: com.atwiiks.betterccxiweather, com.atwiiks.betterccxi
Filename: ./debs/iphoneos-arm/com.nan.betterccxi_1.6.0_iphoneos-arm.deb
Size: 80700
MD5sum: 47b5ed9a6170fe36ce0dead1a221ff70
SHA1: d2c753086585e92986903fa2dad2ab58fe1241ac
SHA256: 40d32d1cbf191296abc94fa5c868112292ed184692d1d36afba348b2a634cbc2
Section: Tweaks
Description: 控制中心模块增强!已整合天气
Author: ATWiiks
Icon: https://invalidunit.github.io/sileodepiction/com.nan.betterccxi/image.png
Name: BetterCCXI
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.betterccxi/js.json
Package: com.nan.betterccxi-150
Version: 1.5.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware(>=11.0), mobilesubstrate, com.opa334.ccsupport, preferenceloader
Conflicts: com.atwiiks.betterccxiweather, com.atwiiks.betterccxi
Filename: ./debs/iphoneos-arm/com.nan.betterccxi-150_1.5.0_iphoneos-arm.deb
Size: 85912
MD5sum: 7cef440b02e9146b23c8bee492681176
SHA1: 8c6b7e029db2e6b927b07289b01c8a6a53eeb514
SHA256: b978b2eaae44c5f572c0201f3398c34802b9f7c19c0a03d119ecccf4253e29d6
Section: Tweaks
Description: 控制中心模块增强!已整合天气
Author: ATWiiks
Icon: https://invalidunit.github.io/sileodepiction/com.nan.betterccxi/image.png
Name: BetterCCXI (1.5.0)
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.betterccxi/js_150.json
Package: com.nan.bfdecrypt
Version: 1.3.2
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware(>=11.0), preferenceloader, applist
Filename: ./debs/iphoneos-arm/com.nan.bfdecrypt_1.3.2_iphoneos-arm.deb
Size: 83588
MD5sum: 6350e3f6c0a7aa6b852cf3bb1db0bc82
SHA1: 0367b0589b046db6265d1a4db8d8cd128015a49e
SHA256: 00b064794cefa27cc723c15bd23835f5f98cb10a92c3f22c792134b506d2f550
Section: System
Description: bfdecrypt 在 iOS 11 到 13.5
Author: level3tjg <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/com.nan.bfdecrypt/image.png
Name: bfdecrypt
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.bfdecrypt/js.json
Sponsor: Acreson <[email protected]>
Package: com.nan.bolders
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate, com.chpwn.iconsupport, firmware (>= 9.0), firmware (<< 13.0)
Filename: ./debs/iphoneos-arm/com.nan.bolders_1.0.1_iphoneos-arm.deb
Size: 13984
MD5sum: bf9cf1741687ea3a72a8f7c22b4c42df
SHA1: 159d33891453c993d448d2a641f9e2c640250542
SHA256: 6914aaa28df84632ec35aaaf3b2dad6bd2ab401c25fbde330ea97f309de8ca58
Section: Tweaks
Description: 全屏桌面文件夹,全屏毛玻璃特效
Author: candoizo
Icon: https://invalidunit.github.io/sileodepiction/Default/image_tweaks.png
Name: Bolders
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.bolders/js.json
Package: com.nan.bounceit
Version: 1.0.4
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate, firmware(>=11.0)
Conflicts: com.jakeashacks.bounceit
Replaces: com.jakeashacks.bounceit
Filename: ./debs/iphoneos-arm/com.nan.bounceit_1.0.4_iphoneos-arm.deb
Size: 4828
MD5sum: 16b0b3b2352c58cea145af826bd8bae6
SHA1: 9f0d80d39a9c12b42431785161a86c573032ed65
SHA256: aef88eb98c01180d6f02a6f649a41621527d3f21828004dfecf17baf029d670d
Section: Tweaks
Description: 开启切换应用弹跳动画
Author: Jake James
Icon: https://invalidunit.github.io/sileodepiction/Default/image_tweaks.png
Name: Bounce It
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.bounceit/js.json
Package: com.nan.ccpower
Version: 1.9-3
Architecture: iphoneos-arm
Maintainer: Nets
Depends: firmware (>= 11.0), mobilesubstrate, com.opa334.ccsupport (>= 1.3)
Conflicts: netskao.ccpower
Provides: netskao.ccpower (=1.9-3)
Filename: ./debs/iphoneos-arm/com.nan.ccpower_1.9-3_iphoneos-arm.deb
Size: 1018936
MD5sum: e511019fc8c73f1d76827d23b7839652
SHA1: 39c60d242d65c1d8e7fcbf732254f9b8b51756b3
SHA256: dbb0cde50467659187cb5364644a9c14b6c12b2c74a911e4ee4f1e2e985b5188
Section: Netskao-Tweaks
Description: Control Center Quick Power Tool, Supports iOS11-iOS15
Author: Netskao
Name: CCPower
Package: com.nan.ccpower
Version: 1.9-4
Architecture: iphoneos-arm64
Maintainer: Nets
Depends: firmware (>= 15.0), mobilesubstrate, com.opa334.ccsupport (>= 1.3)
Conflicts: netskao.ccpower-rootless
Provides: netskao.ccpower-rootless (=1.9-4)
Filename: ./debs/iphoneos-arm64/com.nan.ccpower_1.9-4_iphoneos-arm64.deb
Size: 957500
MD5sum: 8c0f82feb95e6f3c54b5108e70b63b3c
SHA1: 7bfed3ef37d32f8785b8ef1a7cae26ba10ded787
SHA256: c1451fe339cc50ff72a32b1384385391ccc584c96e57d8eec594b2ad82229a76
Section: Tweaks
Description: Control Center Quick Power Tool, Supports iOS11-iOS15
Author: Netskao
Name: CCPower
Package: com.nan.cocoatop64
Version: 2.2.3-nan
Architecture: iphoneos-arm64
Maintainer: zhaonan
Depends: firmware (>= 10.0)
Conflicts: ru.domo.cocoatop, ru.domo.cocoatop64
Provides: ru.domo.cocoatop64
Filename: ./debs/iphoneos-arm64/com.nan.cocoatop64_2.2.3-nan_iphoneos-arm64.deb
Size: 214856
MD5sum: de0c272d0ce10d488d18094699e76827
SHA1: 7b10b4e829e4c770de599bf216fcb4a70a1071b6
SHA256: aea8f829647cd9bd7926380b6dc177e6780c8c50cd17d8327d713563fd3180ff
Section: Utilities
Description: 进程查看器
Author: Domo <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/com.nan.cocoatop64/image.png
Name: CocoaTop64
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.cocoatop64/js.json
Package: com.nan.colorizeios
Version: 0.0.1-47+debug
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware(<=12.9), mobilesubstrate
Filename: ./debs/iphoneos-arm/com.nan.colorizeios_0.0.1-47+debug_iphoneos-arm.deb
Size: 66276
MD5sum: 01c55776745be83fff740fc4e499feb5
SHA1: 290f36039355d17c2cffa93d800b3832dd9c75c5
SHA256: b0f89a0d52eda8e006e306363952fa44214866e95c5ed16087c425c118cfb4b5
Section: Tweaks
Description: 对调用 AppleUI Kit 的所有界面都采用随机变色效果,由 Netskao 简易补设置图标
Author: XCXiao
Icon: https://invalidunit.github.io/sileodepiction/Default/image_tweaks.png
Name: ColorizeiOS
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.colorizeios/js.json
Package: com.nan.colorsios
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware(>=13.0), mobilesubstrate
Filename: ./debs/iphoneos-arm/com.nan.colorsios_1.0.1_iphoneos-arm.deb
Size: 100472
MD5sum: e818a36f4d92734dcb020e051fd380f8
SHA1: def8085123d0073849d254e34bdd52a955c7dc08
SHA256: 2e1de14362c6058156a064d81a3bfd6896e8b56971d3f6c4b84c57bdce19e4b1
Section: Tweaks
Description: iOS13 全局随机颜色
Author: Netskao
Icon: https://invalidunit.github.io/sileodepiction/Default/image_tweaks.png
Name: Colors iOS
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.colorsios/js.json
Package: com.nan.conditionalwifi4
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 11.0), mobilesubstrate, preferenceloader
Filename: ./debs/iphoneos-arm/com.nan.conditionalwifi4_1.0.0_iphoneos-arm.deb
Size: 11716
MD5sum: 873ae83f1acd7d45ac6f383d0b3036b2
SHA1: 69747097d9689084465bca735a47f063bb8a673d
SHA256: e3797161fdbcd22095e185024a21617f85c9a8fdf4c6a2b2a02e2e0f0414de32
Section: System
Description: 最初目的是让国行以外的机型可以调系统WI-FI的联网权限,后用于开启国行机型越狱后App无法联网的问题,支持iOS11-iOS12
Author: ATWiiks
Name: ConditionalWiFi4
Package: com.nan.coolcc
Version: 1:3.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate,preferenceloader,com.creaturesurvive.libcscolorpicker
Conflicts: com.4nni3.coolcc
Provides: com.4nni3.coolcc
Filename: ./debs/iphoneos-arm/com.nan.coolcc_1:3.0_iphoneos-arm.deb
Size: 41368
MD5sum: 2d1a01093dc98b64d109b0e4aa80f253
SHA1: 4cc359356482294d3433111206058e82575e7d6b
SHA256: a6a51efe076dafc038d1f01c31131be005c8f6bb2852770e2a535da5fa5eb0b6
Section: Tweaks
Description: 让控制中心变得更酷
Author: 4nni3 <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/com.nan.coolcc/image.png
Name: CoolCC
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.coolcc/js.json
Package: com.nan.coolcc-reborn
Version: 2.0-1
Architecture: iphoneos-arm64
Maintainer: alias20
Pre-Depends: org.thebigboss.libcolorpicker | ws.hbang.alderis
Depends: mobilesubstrate (>= 0.9.5000), preferenceloader
Conflicts: alias20.coolcc
Provides: alias20.coolcc
Filename: ./debs/iphoneos-arm64/com.nan.coolcc-reborn_2.0-1_iphoneos-arm64.deb
Size: 26432
MD5sum: 73a130368567a2941384e146cc45d8ea
SHA1: ed8a0e729a12b0aaf9e0a84631151c59f13d4f9f
SHA256: 2c01bf88a9d8f8e5da0b897651ede03bf21b4b7712d388e9c7519c076ef72646
Section: Tweaks
Description: This tweak makes ControlCenter cool! Compatible with iOS 15/rootless.
Author: alias20
Icon: https://invalidunit.github.io/sileodepiction/com.nan.coolcc/image.png
Name: CoolCC Reborn
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.coolcc-reborn/js.json
Package: com.nan.coolfolder
Version: 2.7-2
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate,com.creaturesurvive.libcscolorpicker
Conflicts: com.4nni3.coolfolder
Provides: com.4nni3.coolfolder
Filename: ./debs/iphoneos-arm/com.nan.coolfolder_2.7-2_iphoneos-arm.deb
Size: 45448
MD5sum: 3ffc8954381c722c98c91c47660b262d
SHA1: da2568e88f8bd292c793b538cac397c6b5975f01
SHA256: 82da30f26f40c2106e3f836989e659089a259602fafd48f0eab2e7def250cb04
Section: Tweaks
Description: 让文件夹图标变得更酷
Author: 4nni3 <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/com.nan.coolfolder/image.png
Name: CoolFolder
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.coolfolder/js.json
Package: com.nan.cracktool3
Version: 3.0~beta11
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: ldid (>= 1:1.2.1), sed, shell-cmds, system-cmds, uikittools (>= 1.1.4), coreutils-bin, coreutils, odcctools
Conflicts: com.julioverne.cracktool3
Provides: com.julioverne.cracktool3
Filename: ./debs/iphoneos-arm/com.nan.cracktool3_3.0~beta11_iphoneos-arm.deb
Size: 143036
MD5sum: cf251de3297d52b5ee5a387938cc41e7
SHA1: 11d56466354b3d8377f1b283941a4b604dd6694f
SHA256: 42d778fbe73e7a5868b4a2c6434c468c5488aa530895962301ec471f180ac2a6
Section: Utilities
Homepage: http://twitter.com/ijulioverne
Description: 插件破解器
Author: julioverne
Depiction: http://julio.hackyouriphone.org/description.html?id=com.julioverne.cracktool3
Icon: https://invalidunit.github.io/sileodepiction/com.nan.cracktool/image.png
Name: CrackTool3
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.cracktool/js_3.json
Package: com.nan.cracktool4
Version: 4.0~beta9e
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: sed, shell-cmds, system-cmds, uikittools (>= 1.1.4), coreutils-bin, coreutils, odcctools
Conflicts: com.julioverne.cracktool4
Provides: com.julioverne.cracktool4 (=4.0~beta9e)
Filename: ./debs/iphoneos-arm/com.nan.cracktool4_4.0~beta9e_iphoneos-arm.deb
Size: 485068
MD5sum: 57cfb3866a4147bf1f460b045a990de3
SHA1: 647ae8468d2cb09fc569ef4d86bfdebc32402d22
SHA256: 5c9b55314cfcae10686e09bf08222172cee29283be993d01112ca68a78d55e05
Section: Utilities
Description: 插件破解器
Author: julioverne
Icon: https://invalidunit.github.io/sileodepiction/com.nan.cracktool/image.png
Name: CrackTool4
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.cracktool/js_4.json
Package: com.nan.cydown
Version: 7.1.1
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: coreutils-bin, coreutils, mobilesubstrate, preferenceloader
Conflicts: com.julioverne.cydown
Provides: com.julioverne.cydown (= 7.1.1)
Filename: ./debs/iphoneos-arm/com.nan.cydown_7.1.1_iphoneos-arm.deb
Size: 2601532
MD5sum: 839908475745362b1d7f596df73e5ceb
SHA1: 5ea37bc00685fcdfde82a5038b586920660a84cd
SHA256: 4d55206f65272514e0193ea0134cb9b1b6b83f00dc90d5bbfa4e86e1a910ce79
Section: Tweaks
Description: Cydia 下载管理器 & 额外功能 !
Author: julioverne <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/com.nan.cydown/image.png
Name: CyDown
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.cydown/js.json
Package: com.nan.dark-keyboard
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate
Filename: ./debs/iphoneos-arm/com.nan.dark-keyboard_0.1.0_iphoneos-arm.deb
Size: 3312
MD5sum: 5e879f104fe9c2b4de16b4638d6269be
SHA1: cd78c95ba6bc7aa37b8a3db2a55b64d8bc2cac67
SHA256: fec17c46132f51861480c6084b982f491cce7260b04a7e6a6b0dbb5f7f457c1f
Section: Tweaks
Description: 让键盘始终保持暗色
Author: null
Icon: https://invalidunit.github.io/sileodepiction/com.nan.darkkeyboard/image.png
Name: Dark Keyboard
Sileodepiction: https://invalidunit.github.io/sileodepiction/darkkeyboard/js.json
Package: com.nan.datameter
Version: 1.4-3
Architecture: iphoneos-arm
Maintainer: zhaonan
Installed-Size: 1212
Depends: firmware (>= 7.0), mobilesubstrate (>= 0.9.5000), preferenceloader (>= 2.2.2)
Filename: ./debs/iphoneos-arm/com.nan.datameter_1.4-3_iphoneos-arm.deb
Size: 243728
MD5sum: 4cb3ae8e758e822b9c475f70711e448f
SHA1: be758d553df4482e7e76714a63a9d37486a40f47
SHA256: a1e309a5ef6fc3eab2d7cfd50e3bf93db49434bb6955ebd18a727723cbc85a04
Section: Addons (NotificationCenter)
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=datameterDp
Description: DataMeter 在 iOS 7-10 通知中心
Tag: purpose::extension, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11
Author: Minuit <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=datameterDp
Dev: minuit
Icon: file:///Library/PreferenceBundles/DataMeterSettings.bundle/[email protected]
Name: DataMeter
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.nan.deleteforever
Version: 0.0.1-57
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 9.0), mobilesubstrate, preferenceloader
Filename: ./debs/iphoneos-arm/com.nan.deleteforever_0.0.1-57_iphoneos-arm.deb
Size: 250524
MD5sum: 2463b5465e5bd01ce952caefc0b87bfe
SHA1: c214e98b40b54e0764bd18928d03ca924361d0cb
SHA256: 404cfc4292660cc0a3e036037deecf5af00bc3db15326cfede5ef2bb8d00efe0
Section: Tweaks
Description: 在删除照片的时候,增加永久删除选项(Permanently)
Author: Creatix
Name: DeleteForever
Package: com.nan.disablealerts
Version: 2.4.1
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate
Conflicts: com.flex2areo.disablealerts2, netskao.disablealerts
Provides: com.flex2areo.disablealerts2, netskao.disablealerts (=2.4.1)
Filename: ./debs/iphoneos-arm/com.nan.disablealerts_2.4.1_iphoneos-arm.deb
Size: 9916
MD5sum: d4a5ad9f22cb78c4a5b6feb5ac2ea984
SHA1: 8268adeb3c2be58cbe16a396e0b42317ba3e8e02
SHA256: 3b03ba7289a7de7b9b83b80121fcb3ca558a6bbb943c88b6f72f62ab0e22012f
Section: Tweaks
Description: 强效屏蔽软件和系统弹窗,支持单独选择某个应用。
Author: aReo
Icon: https://invalidunit.github.io/sileodepiction/com.nan.disablealerts/image.png
Name: DisableAlerts
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.disablealerts/js.json
Package: com.nan.elegantsettings
Version: 1.2.1
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate, preferenceloader
Filename: ./debs/iphoneos-arm/com.nan.elegantsettings_1.2.1_iphoneos-arm.deb
Size: 34052
MD5sum: d1feda7f0e23cebd542c797b83d89c6c
SHA1: 69d02e7cc6f73e3d7a558c4b952557cea46ebc10
SHA256: 23fe921681b4e71f76f3d041743db7cbcf35466d56f619bff8971d869d4a8598
Section: Tweaks
Description: 优雅设置,更好的设置
====================
更改设置选项/箭头颜色
隐藏搜索/红点/用户应用等
禁用还原页面/去除分割线
更新支持A12
如有任何问题可邮件[email protected]
====================
Author: Netskao
Name: Elegant Settings
Package: com.nan.filza64bit
Version: 3.7.7-16
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: zip, unzip, gzip, unrar, p7zip
Conflicts: com.tigisoftware.filza, com.tigisoftware.filza64bit, com.nan.filza
Provides: com.tigisoftware.filza64bit (=3.7.7-16)
Filename: ./debs/iphoneos-arm/com.nan.filza64bit_3.7.7-16_iphoneos-arm.deb
Size: 7205848
MD5sum: 7b2cc7a0197fc1ea9fa70685b0f95f2b
SHA1: 8695570fbc7793b57186f534d4a5071b42e83f75
SHA256: 287ed2f3c6298b0acc6fa9470b5628ac7f8ed5ef8216b8476d50a7395b0d75ff
Section: Utilities
Description: iPhone, iPad, iPod Touch 的文件管理器
Author: TIGI Software
Icon: https://invalidunit.github.io/sileodepiction/com.nan.filza/image.png
Name: Filza File Manager 64-bit
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.filza/js_64bit.json
Package: com.nan.filza64bit
Version: 3.8.0-20
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: zip, unzip, gzip, unrar, p7zip
Conflicts: com.tigisoftware.filza, com.tigisoftware.filza64bit, com.nan.filza
Provides: com.tigisoftware.filza64bit (=3.8.0-20)
Filename: ./debs/iphoneos-arm/com.nan.filza64bit_3.8.0-20_iphoneos-arm.deb
Size: 6684232
MD5sum: 966acca5da41862aefc4cd110e3d1e25
SHA1: 4b349cb25fda17c166c214acf262a7647659122e
SHA256: 144e68d0f21471896dfc297300f247f878d490f79bc554a5365d98b6f4180808
Section: Utilities
Description: iPhone, iPad, iPod Touch 的文件管理器
Author: TIGI Software
Icon: https://invalidunit.github.io/sileodepiction/com.nan.filza/image.png
Name: Filza File Manager 64-bit
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.filza/js_64bit.json
Package: com.nan.filza64bit
Version: 3.8.0-24
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: zip, unzip, gzip, unrar, p7zip
Conflicts: com.tigisoftware.filza, com.tigisoftware.filza64bit, com.nan.filza
Provides: com.tigisoftware.filza64bit (= 3.8.0-24)
Filename: ./debs/iphoneos-arm/com.nan.filza64bit_3.8.0-24_iphoneos-arm.deb
Size: 6703660
MD5sum: f70f875943ab24a24702d0a1c3be3669
SHA1: 1627b43f83abce96afb1289a8960b845d0caaf3f
SHA256: 3f83c8419bc56f26e0ccb4282aa241ca7daba369e21c4106b6180641e357bb2b
Section: Utilities
Description: iPhone, iPad, iPod Touch 的文件管理器
Author: TIGI Software
Icon: https://invalidunit.github.io/sileodepiction/com.nan.filza/image.png
Name: Filza File Manager 64-bit
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.filza/js_64bit.json
Package: com.nan.fonts.zh.haipaiqiangdiaoqingxia
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts
Filename: ./debs/iphoneos-arm/com.nan.fonts.zh.haipaiqiangdiaoqingxia_0.1.0_iphoneos-arm.deb
Size: 6416596
MD5sum: 128986596341aa65fe7ab07f2e648d8b
SHA1: d6063cc28e70da43693a16957d93f985f06de257
SHA256: 813536e9361e9153c7cdc545b8803ffeaae760c147e5c96490f3cdbfe0d572b0
Section: Fonts
Description: 感谢字由心雨分享的海派腔调清夏
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 海派腔调清夏-中文
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/haipaiqiangdiaoqingxia/js_zh.json
Package: com.nan.fonts.zh.mamelon
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts
Filename: ./debs/iphoneos-arm/com.nan.fonts.zh.mamelon_0.1.0_iphoneos-arm.deb
Size: 9400784
MD5sum: f779411bd1cd0d7642c9eb55f153e9fe
SHA1: 1779f1d29020f8d6b77f4932bdc38d4ac5dc6a0d
SHA256: 3ace7221df2d89336cc22152e39ade24db853eb56ba16f72ef489335182c419a
Section: Fonts
Description: 感谢字由心雨分享的 マメロン
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: マメロン-中文
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/mamelon/js_zh.json
Package: com.nan.fonts.zh.xindixiawucha
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts
Filename: ./debs/iphoneos-arm/com.nan.fonts.zh.xindixiawucha_0.1.0_iphoneos-arm.deb
Size: 14439668
MD5sum: 227ba468a9353e416c4b039c45689da1
SHA1: 0fa8b9bda81c81526ef1851fa3c6e6fb73d4dbc8
SHA256: b5838671ecb829ffbfe9468cc7ff5266cf21b40bafae51abb906cffbdb851af4
Section: Fonts
Description: 感谢字由心雨分享的新蒂下午茶
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 新蒂下午茶-中文
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/xindixiawucha/js_zh.json
Package: com.nan.fonts11.en.haipaiqiangdiaoqingxia
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=11.0), firmware (<<12.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts11.en.haipaiqiangdiaoqingxia_0.1.0_iphoneos-arm.deb
Size: 2297288
MD5sum: 09a64d553955240314e0b3bf3a56214a
SHA1: 77f5d6f45cd1d36b15db2e470cbebcc2696696b1
SHA256: 91a79cf4866d663fe26d0d5fbda743cff6c647372803e466af87d433c2f88b70
Section: Fonts (iOS11)
Description: 感谢字由心雨分享的海派腔调清夏
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 海派腔调清夏-英文-11
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/haipaiqiangdiaoqingxia/js_en.json
Package: com.nan.fonts11.en.mamelon
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=11.0), firmware (<<12.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts11.en.mamelon_0.1.0_iphoneos-arm.deb
Size: 2324036
MD5sum: eb2fa52ad31c5afecd2ad11acf47ac1a
SHA1: fb6b56547d91e4731e3830e5ed21ef162c942b9d
SHA256: b021ee65e63be0fd40711aeb69e63e7b17fbe0821a59eeba0906b524c3317395
Section: Fonts (iOS11)
Description: 感谢字由心语分享的 マメロン
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: マメロン-英文-11
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/mamelon/js_en.json
Package: com.nan.fonts11.en.xindixiawucha
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=11.0), firmware (<<12.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts11.en.xindixiawucha_0.1.0_iphoneos-arm.deb
Size: 2325468
MD5sum: 1b9fb5d77c595d4096d6ff9c6cc0f90c
SHA1: 82290cfde2efba940f25848c7217cdf2d072704a
SHA256: 916156071feebceccca6ce53a492616e4a9b079331935255f14b50d0d8045055
Section: Fonts (iOS11)
Description: 感谢字由心雨分享的新蒂下午茶
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 新蒂下午茶-英文-11
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/xindixiawucha/js_en.json
Package: com.nan.fonts12.en.haipaiqiangdiaoqingxia
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=12.0), firmware (<<13.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts12.en.haipaiqiangdiaoqingxia_0.1.0_iphoneos-arm.deb
Size: 2296596
MD5sum: 45199abeaa9318c213c3961d1c45bca4
SHA1: df17ecc0565b99a77c1247ce36a581a1306b4513
SHA256: 689311214e35cc7980614f131a7de2835d0090fd0b0ad080708871fc710f3b0f
Section: Fonts (iOS12)
Description: 感谢字由心雨分享的海派腔调清夏
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 海派腔调清夏-英文-12
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/haipaiqiangdiaoqingxia/js_en.json
Package: com.nan.fonts12.en.mamelon
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=12.0), firmware (<<13.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts12.en.mamelon_0.1.0_iphoneos-arm.deb
Size: 2338616
MD5sum: edb24b532d3b23a45d3729498c3fbf00
SHA1: 4c7a15ad67ec751c1e2f1267bc2d3c1a6efe4c27
SHA256: 859bc487fd366baaff38628eca3d2f0dbeb51424b996ba7a8e8ada9b6f830522
Section: Fonts (iOS12)
Description: 感谢字由心语分享的 マメロン
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: マメロン-英文-12
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/mamelon/js_en.json
Package: com.nan.fonts12.en.xindixiawucha
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts , firmware (>=12.0), firmware (<<13.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts12.en.xindixiawucha_0.1.0_iphoneos-arm.deb
Size: 2325564
MD5sum: edab12a9fbbe2ddf12bda45a4c4dd21f
SHA1: 37f32ae44052076e1458b8bda86a49843639f91c
SHA256: dfa089e7638027f3d341c3d0e7bf3bbf80fef46e6bcffb74dc056e5f426c00be
Section: Fonts (iOS12)
Description: 感谢字由心雨分享的新蒂下午茶
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 新蒂下午茶-英文-12
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/xindixiawucha/js_en.json
Package: com.nan.fonts13.en.haipaiqiangdiaoqingxia
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=13.0), firmware (<<14.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts13.en.haipaiqiangdiaoqingxia_0.1.0_iphoneos-arm.deb
Size: 2123344
MD5sum: fec3b2615359d9fbfc0409ebbe302800
SHA1: 7c3065dbd5d27e580e10e5d6ad0fc8cf4afb4acf
SHA256: 68e27e7e16f9455d663a0677246fe411818be6794cc508c011802f59853cb9d4
Section: Fonts (iOS13)
Description: 感谢字由心雨分享的海派腔调清夏
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 海派腔调清夏-英文-13
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/haipaiqiangdiaoqingxia/js_en.json
Package: com.nan.fonts13.en.mamelon
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=13.0), firmware (<<14.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts13.en.mamelon_0.1.0_iphoneos-arm.deb
Size: 2180020
MD5sum: 9e017e0f7eece078903ab607f19cc55f
SHA1: bdbd79afd8a2ad21854802f17afa101bf8abf18e
SHA256: 04519640e8e8f4d66234c3f972ee5b439b8d22e8e7e0d13281f8ba817b119b5f
Section: Fonts (iOS13)
Description: 感谢字由心语分享的 マメロン
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: マメロン-英文-13
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/mamelon/js_en.json
Package: com.nan.fonts13.en.xindixiawucha
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=13.0), firmware (<<14.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts13.en.xindixiawucha_0.1.0_iphoneos-arm.deb
Size: 2194576
MD5sum: a425abfcf1691aa208a6e0b009fcc78a
SHA1: 64ce8eaa811b61c2295ad4b6b3e4438778eb93d7
SHA256: 37a803ac9301f8026b15bc3164f5b13152bc114b1e780e79bbdddc3dc7334e9b
Section: Fonts (iOS13)
Description: 感谢字由心雨分享的新蒂下午茶
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 新蒂下午茶-英文-13
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/xindixiawucha/js_en.json
Package: com.nan.fonts14.en.mamelon
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=14.0), firmware (<<15.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts14.en.mamelon_0.1.0_iphoneos-arm.deb
Size: 2910596
MD5sum: 376443892738fca00bee87dc27e702dd
SHA1: 31f9e0330101526d5b892ef0ff48e0e5b5b84b95
SHA256: 5d16d2531ef2ab4ac0d824e07ffb9e81624345d85789a1e645982437c3a9e2c5
Section: Fonts (iOS14)
Description: 感谢字由心语分享的 マメロン
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: マメロン-英文-14
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/mamelon/js_en.json
Package: com.nan.fonts14.en.xindixiawucha
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: com.nan.resetfonts, firmware (>=14.0), firmware (<<15.0)
Filename: ./debs/iphoneos-arm/com.nan.fonts14.en.xindixiawucha_0.1.0_iphoneos-arm.deb
Size: 2910072
MD5sum: c44122a5aa4605befdc4cdfd30e159a4
SHA1: f97fc3d234808385c05877a2c7c7b46320aa09f1
SHA256: 79d4027e26f58923b91bfce456f5e2d64f9692ca08aa2ebda0fd5b93603e7a40
Section: Fonts (iOS14)
Description: 感谢字由心雨分享的新蒂下午茶
Author: 字由心雨
Icon: https://invalidunit.github.io/sileodepiction/Default/image_fonts.png
Name: 新蒂下午茶-英文-14
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.fonts/xindixiawucha/js_en.json
Package: com.nan.handprintkb
Version: 0.5.5
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 13.0), mobilesubstrate
Conflicts: com.michael.handprint
Filename: ./debs/iphoneos-arm/com.nan.handprintkb_0.5.5_iphoneos-arm.deb
Size: 3324
MD5sum: 9dd92be0208dbb33015ea9f31664910b
SHA1: 791d20fbcf65303a25a40228d027a9e12b9a1063
SHA256: 0a0acbafdeff15ed539f56fbfbf57e65dbe679026680793e2f9d3a8eef4a4e67
Section: Tweaks
Description: 将键盘设置为普通手机样式,用于修复 X 手势
Author: Halo_Michael <[email protected]>
Icon: https://invalidunit.github.io/sileodepiction/Default/image_tweaks.png
Name: HandPrintKB
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.handprintkb/js.json
Package: com.nan.iamchinese
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: mobilesubstrate
Conflicts: com.castyte.iamchinese
Provides: com.castyte.iamchinese (=1.0.0)
Filename: ./debs/iphoneos-arm/com.nan.iamchinese_1.0.0_iphoneos-arm.deb
Size: 3692
MD5sum: 0de4079d151d6888a58ed8a5ac523e98
SHA1: edad0a57c2a01228909b71e23d92783f37d1ed3e
SHA256: f4b87849d7fcb565f95fb7c5745c8bab99be93df64cd37b3f390c52668eb1399
Section: Tweaks
Description: 启用通常国行才有的应用禁用 Wi-Fi 联网的选项。国行机完全不需要装。安装后在设置-蜂窝网络内可以更改程序联网权限。
Author: Castyte
Icon: https://invalidunit.github.io/sileodepiction/Default/image_tweaks.png
Name: I Am Chinese
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.iamchinese/js.json
Package: com.nan.icleanerpro
Version: 7.8.2
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 4.0), findutils, apt | apt7
Conflicts: org.altervista.exilecom.icleaner, com.exile90.icleanerpro, com.nan.icleanerpro-crack
Replaces: org.altervista.exilecom.icleaner, com.exile90.icleanerpro, com.nan.icleanerpro-crack
Filename: ./debs/iphoneos-arm/com.nan.icleanerpro_7.8.2_iphoneos-arm.deb
Size: 6707572
MD5sum: 206614546d794fb4a41a6908a3997888
SHA1: b74e97ebb4c01c31206898ec11d393da2fc7ea6e
SHA256: a75c04223ed8b78652b2d595f6a83af93cbb1ef74cfdcc0e73bf2708e5e0e7bf
Section: Utilities
Homepage: http://ib-soft.net/icleaner
Description: iOS 系统清理 & 优化
Author: Ivano Bilenchi <[email protected]>
Depiction: http://ib-soft.net/depictions/?pkgId=com.exile90.icleanerpro
Icon: https://invalidunit.github.io/sileodepiction/com.nan.icleanerpro/image.png
Name: iCleaner Pro
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.icleanerpro/js.json
Package: com.nan.icleanerpro-crack
Version: 7.8.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 4.0), findutils, apt | apt7
Conflicts: org.altervista.exilecom.icleaner, com.exile90.icleanerpro, com.nan.icleanerpro
Replaces: org.altervista.exilecom.icleaner, com.exile90.icleanerpro, com.nan.icleanerpro
Filename: ./debs/iphoneos-arm/com.nan.icleanerpro-crack_7.8.0_iphoneos-arm.deb
Size: 5286596
MD5sum: 8e88082b6fa25748181efa78f3ae96f9
SHA1: 74307422ab9f0b1b6fadc91b92b3c1d5cf07a73f
SHA256: adf00c1884bfd728e9b0c53105831f5acc457d5d0287dbfc81fa57db6788da45
Section: Utilities
Homepage: http://ib-soft.net/icleaner
Description: iOS 系统清理 & 优化
Author: Ivano Bilenchi <[email protected]>
Depiction: http://ib-soft.net/depictions/?pkgId=com.exile90.icleanerpro
Icon: https://invalidunit.github.io/sileodepiction/com.nan.icleanerpro/image.png
Name: iCleaner Pro Crack
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.icleanerpro/js_crack.json
Package: com.nan.injectipa
Version: 1.4-4
Architecture: iphoneos-arm64
Maintainer: Nets
Depends: firmware (>= 15.0)
Conflicts: netskao.injectipa-rootless
Provides: netskao.injectipa-rootless (=1.4-4)
Filename: ./debs/iphoneos-arm64/com.nan.injectipa_1.4-4_iphoneos-arm64.deb
Size: 963136
MD5sum: 02ddfcba09e8177b198e11a024bac306
SHA1: 075dd4151eeaa918af89e97a4de4865de21e541a
SHA256: 2b407e0b93862cf7267cbee5f74b5e84f8214d15887f8a2c4722e41cf8a206b0
Section: Terminal_Support
Description: injectipa 是一款命令行一键注入dylib 到 ipa 工具。用法: injectipa ipa 路径 dylib 路径 (如有多个 dylib 依次填写在末尾即可), 其它参数执行 injectipa 查看即可, 注入完成后的 IPA 需要签名使用
Author: Netskao
Name: injectipa
Package: com.nan.injectipa
Version: 1.4-4
Architecture: iphoneos-arm
Maintainer: Nets
Depends: firmware (>= 11.0)
Conflicts: netskao.injectipa
Provides: netskao.injectipa (=1.4-4)
Filename: ./debs/iphoneos-arm/com.nan.injectipa_1.4-4_iphoneos-arm.deb
Size: 945964
MD5sum: dadf6f7c4973aa6dc723c822be6a8d2f
SHA1: c7a43cdb85b6e0f2dcdad87870fbcdcd8b5b64b8
SHA256: bfc3fad3b21a44e6ca76ea9217644cac9664812fa9d94a667c54f59ae8e86635
Section: Terminal_Support
Description: injectipa 是一款命令行一键注入dylib 到 ipa 工具。用法: injectipa ipa 路径 dylib 路径 (如有多个 dylib 依次填写在末尾即可), 其它参数执行 injectipa 查看即可, 注入完成后的 IPA 需要签名使用
Author: Netskao
Name: injectipa
Package: com.nan.ioshelper122
Version: 2.0
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 12.0), mobilesubstrate, preferenceloader
Filename: ./debs/iphoneos-arm/com.nan.ioshelper122_2.0_iphoneos-arm.deb
Size: 139928
MD5sum: 41ce323104ca7939d60484ec247d6819
SHA1: 1955d2ad2db9718c64f23868efe9d327533945a5
SHA256: b344e490f4f99e3a79028be0a8acb52f1da46272bc936514f5d8b34d1a2de0a3
Section: Tweaks
Description: iOS 系统多功能定义助手
Author: iBreak
Name: iOS Helper 12
Package: com.nan.localiapstore
Version: 1.4-4
Architecture: iphoneos-arm
Maintainer: zhaonan
Depends: firmware (>= 7.0), mobilesubstrate, preferenceloader
Filename: ./debs/iphoneos-arm/com.nan.localiapstore_1.4-4_iphoneos-arm.deb
Size: 42512
MD5sum: 13764428a7c07344ea753f20af6cc06d
SHA1: 68a7874a1cd19b357b1225e5a9a8a52e4a69447d
SHA256: bcef1cd9e973277fa8fc27145989b86bf9318c771adda32e45aa9940629f3c49
Section: Tweaks
Description: 不错的内购破解
Author: PanguTeam
Icon: https://invalidunit.github.io/sileodepiction/com.nan.localiapstore/image.png
Name: LocalIAPStore
Sileodepiction: https://invalidunit.github.io/sileodepiction/com.nan.localiapstore/js.json
Package: com.nan.mcpatch
Version: 0.0.1-2
Architecture: iphoneos-arm
Maintainer: zhaonan