forked from fengziboy/yilai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Packages
1525 lines (1447 loc) · 59.8 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: applist
Version: 1.5.15~beta1
Architecture: iphoneos-arm
Maintainer: Ryan Petrich <rpetrich@gmail.com>
Installed-Size: 780
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 3.0), com.rpetrich.rocketbootstrap (>= 1.0.7~beta3) | firmware (<< 7.0)
Conflicts: com.a3tweaks.polus (<< 2.0.7)
Filename: ./debs/applist_1.5.15~beta1_iphoneos-arm.deb
Size: 104730
MD5sum: 2fca5a5135a60e2c4c58ba4cb4575e8b
SHA1: 812fddf63980694c89ff44346c7a7f18782466c2
SHA256: 55cb9b74d2201d58f3dcde5765c103d305180222fe61a18baa644d84153fa0aa
Section: System
Description: Allow extensions to read the list of installed apps
Author: Ryan Petrich <rpetrich@gmail.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=AppListDp
Dev: rpetrich
Name: AppList
Website: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=AppListDp
Package: backgrounderaction12
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: akusio <akusio-report@neko2.net>
Installed-Size: 276
Depends: mobilesubstrate, com.opa334.ccsupport
Filename: ./debs/backgrounderaction12_0.1.0_iphoneos-arm.deb
Size: 17082
MD5sum: 9a1c9400f5f201a081f1b37ef085b325
SHA1: 32d2431a9ce0d264f50364d258b140bc7dd5efee
SHA256: 606170ab1384c31a499adb52174ef79dada5d9ce0b73bf207f21067796928327
Section: Tweaks
Description: Add "Toggle Background Mode" action to ControlCenter.
Author: akusio <akusio-report@neko2.net>
Depiction: https://akusio.github.io/descriptions/backgrounderaction12/index.html
Name: BackgrounderAction for CCSupport
Package: cercube5pp
Version: 1.0.0.2
Architecture: iphoneos-arm
Maintainer: 他是个疯子 <409774743@qq.com>
Installed-Size: 69
Depends: mobilesubstrate, firmware (>= 10.0), cercube | me.alfhaily.cercube
Conflicts: net.hollr2099.cercube4pp
Filename: ./debs/cercube5pp1.0.0.2.deb
Size: 4048
MD5sum: 04a5231671ac74be9590e063e87f2cfd
SHA1: 242be48f2d618128ac89b42dfea671f514480e1a
SHA256: f1106ba912609b02ec9f04d6f239a9b0ff53d3fc630773483a2c932c35984e9a
Section: Tweaks
Homepage: https://sileo-cydia.github.io/depiction/web/cercube5pp.html
Description: 去掉 Cercube 5 for YouTube.广告
Author: SarahH12099 <409774743@qq.com>
Depiction: https://sileo-cydia.github.io/depiction/web/cercube5pp.html
Icon: https://sileo-cydia.github.io/assets/cercube5pp/icon.png
Moderndepiction: https://sileo-cydia.github.io/depiction/native/cercube5pp.json
Name: Cercube 5 for YouTube++
Sileodepiction: https://sileo-cydia.github.io/depiction/native/cercube5pp.json
Package: ch.mdaus.utils
Version: 0.0.2
Architecture: iphoneos-arm
Maintainer: Maxwell Dausch <max.dausch@gmail.com>
Installed-Size: 236
Filename: ./debs/ch.mdaus.utils_0.0.2_iphoneos-arm.deb
Size: 20000
MD5sum: 48319883e16f1519c13535a0168ae703
SHA1: d39369db249a97f1ce91bf1c8b19c8435699caa3
SHA256: b6bfc7596808da34eb7389f838c3cf37473baf2f096911b692f1e13cd75ee8b6
Section: System
Description: A collection of common functions for my tweaks. More documentation will be coming soon.
Tag: role::developer
Author: Maxwell Dausch <max.dausch@gmail.com>
Name: MDausch Utils
Package: cn.yttxcs.libiarrays
Version: 1.0.9-beta-11
Architecture: iphoneos-arm
Maintainer: IArrays <409774743@qq.com>
Depends: firmware (>=11.0)
Conflicts: com.iarrays.libiarrays1, com.iarrays.libiarrays
Filename: ./debs/libiarrays_1.0.9-beta-11.deb
Size: 287748
MD5sum: 64f855090a85e6a7c790814366bc3ce5
SHA1: 891084a5b9a8ba76f692d8e2ea4202bf0fcdffad
SHA256: 35d89aee75a25e95b992263a4dab0befccc2b6519a9c1971a3b4627090b2220e
Section: 依赖
Homepage: https://sileo-cydia.github.io
Description: 只有Iarrays产品才应使用。这是关闭的图书馆,没有支持这一包装。
Author: IArrays <409774743@qq.com>
Depiction: https://yttxcs.cn/depiction/html/libiarrays.html
Icon: https://yttxcs.cn/assets/libiarrays/icon.png
Moderndepiction: https://yttxcs.cn/depiction/sileo/libiarrays.json
Name: libarrays Cracked
Sileodepiction: https://yttxcs.cn/depiction/sileo/libiarrays.json
Package: cokepokes.jp.ashikase.libcrashreport
Version: 1.1.0-2
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Pre-Depends: firmware (>= 3.0)
Depends: cokepokes.jp.ashikase.libsymbolicate (>= 1.9.0), cokepokes.jp.ashikase.libpackageinfo
Conflicts: jp.ashikase.libcrashreport
Filename: ./debs/cokepokes.jp.ashikase.libcrashreport_1.1.0-2_iphoneos-arm.deb
Size: 50916
MD5sum: 315e6c43822c96d2264af02cc06652bd
SHA1: 71a59d90828518ec2eee5a902f1c9b4e69006f0d
SHA256: aeab02392d70e7b57dbcd962455367c65fab6404fc80c2a4c6dcf5a03e973f76
Section: Development
Homepage: http://github.com/ashikase/libcrashreport
Description: Library to parse and symbolicate crash reports.
This library is based upon CrashReporter by kennytm.
Tag: role::developer
Author: Lance Fetters (ashikase) <support@ashikase.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libcrashreportData
Dev: ashikase
Name: libcrashreport (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: cokepokes.jp.ashikase.libpackageinfo
Version: 1.1.0.1-3
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Pre-Depends: firmware (>=3.0)
Replaces: jp.ashikase.libpackageinfo
Filename: ./debs/cokepokes.jp.ashikase.libpackageinfo_1.1.0.1-3_iphoneos-arm.deb
Size: 123116
MD5sum: b3a9c152d42a76665b8e00919381f2d6
SHA1: bbf9177164a4dd42dc7eb706f7a84ebe46a25036
SHA256: 07b1a0dd90a9b9aac9ab008ac927460b10b9b87bc57590fee05818721d28575d
Section: Development
Homepage: http://github.com/ashikase/libpackageinfo
Description: Library to retrieve package information.
Tag: role::developer
Author: Lance Fetters (ashikase) <support@ashikase.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libpackageinfoData
Dev: ashikase
Name: libpackageinfo (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: cokepokes.jp.ashikase.libsymbolicate
Version: 1.9.0-2
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Pre-Depends: firmware (>=4.0)
Conflicts: jp.ashikase.libsymbolicate
Filename: ./debs/cokepokes.jp.ashikase.libsymbolicate_1.9.0-2_iphoneos-arm.deb
Size: 45996
MD5sum: 7f3ef6587700b9635be99b3a23b4c91a
SHA1: ec4d3693fb44093e4a77acfd638de4bb61cfdff1
SHA256: 4a59217581cba846631b02bc08c800e29b4e07dbda0151a0afc715caa6a7a310
Section: Development
Homepage: http://github.com/ashikase/libsymbolicate
Description: Library to symbolicate memory addresses.
This library is based upon CrashReporter by kennytm.
Tag: role::developer
Author: Lance Fetters (ashikase) <support@ashikase.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libsymbolicateData
Dev: ashikase
Name: libsymbolicate (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.a3tweaks.flipswitch
Version: 1.0.16~beta5
Architecture: iphoneos-arm
Maintainer: rpetrich & a3tweaks <rpetrich+flipswitch@gmail.com>
Installed-Size: 2396
Depends: mobilesubstrate (>= 0.9.5001), com.rpetrich.rocketbootstrap (>= 1.0.7~beta1) | firmware (<< 7.0)
Conflicts: com.rpetrich.donotdisturbtoggle (<= 1.0-1), com.jerryen.rotationlockflipswitch
Replaces: com.jerryen.rotationlockflipswitch, tw.garynil.ccfixer93, tw.hiraku.nightshift
Provides: com.jerryen.rotationlockflipswitch, tw.garynil.ccfixer93, tw.hiraku.nightshift
Filename: ./debs/com.a3tweaks.flipswitch_1.0.16~beta5_iphoneos-arm.deb
Size: 295290
MD5sum: bc4367203fea35280087c4c3cf5a8ca0
SHA1: a9633dc2922d34b760b8667d8f09f86de3d5d23f
SHA256: bf3f620e98d390ce5ed3ddf6a27168ba466089a529a2ba2c8f39717131bd4335
Section: System
Homepage: https://rpetri.ch/cydia/flipswitch/beta/
Description: Centralized toggle system for iOS
Tag: purpose::extension, role::developer
Author: rpetrich <rpetrich+flipswitch@gmail.com>
Depiction: https://rpetri.ch/cydia/flipswitch/beta/
Dev: flipswitch
Icon: file:///Applications/Preferences.app/icon-table.png
Name: Flipswitch
Package: com.bingner.plutil
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 256
Depends: firmware (>=2.0)
Conflicts: com.ericasadun.utilities
Filename: ./debs/com.bingner.plutil_0.1.0_iphoneos-arm.deb
Size: 48408
MD5sum: b913ee9e10461f94b28f4a96b7436880
SHA1: bf281df09de1eda888482c6074d833c8448608e8
SHA256: 6f51270a8ccc6f6f0a1d25ebe7d144c900343e69ecf7e38d9bf140127547b5dc
Section: Acreson-依赖(Depends)
Multi-Arch: foreign
Description: plutil as from erica sadun
Tag: role::hacker
Author: Samuel Bingner
Icon: file:///Applications/Cydia.app/Sections/Addons.png
Name: plutil
Package: com.chpwn.iconsupport
Version: 1.11.1
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 244
Pre-Depends: firmware (>= 3.0)
Depends: mobilesubstrate, firmware (>= 6.0) | jp.ashikase.bugfix.stuckpages, firmware (>= 6.0) | jp.ashikase.bugfix.duplicateicons
Filename: ./debs/com.chpwn.iconsupport_1.11.1_iphoneos-arm.deb
Size: 28706
MD5sum: aba48774c54d8272d78eb06b522d57e8
SHA1: 71c4e1896403ebf647783c9732015ef9381e6726
SHA256: f853c93ad6fcead89944cee35c8aba97c2286d622d749354ce660b3d31def50a
Section: Development
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=iconsupportData
Description: Support library for safe icon tweaks.
Tag: role::developer, purpose::extension, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11, compatible::ios12
Author: Lance Fetters (ashikase) <support@ashikase.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=iconsupportData
Dev: ashikase
Name: IconSupport
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.creaturecoding.libcspreferences
Version: 1.1.5
Architecture: iphoneos-arm
Maintainer: CreatureSurvive <support@creaturecoding.com>
Installed-Size: 3072
Pre-Depends: firmware (>= 8.0), com.ex.libsubstitute | mobilesubstrate, preferenceloader
Filename: ./debs/com.creaturecoding.libcspreferences_1.1.5_iphoneos-arm.deb
Size: 473572
MD5sum: ec9010659f80200f3d4cf8512b603c6a
SHA1: ed1b63bdc1f2632ee4d23cb02b1f4a8f9b568758
SHA256: 963e3930138a5a3d2747c888183161999dc7196a16d3e9ff9f88473e1aebd36c
Section: System
Homepage: https://creaturecoding.com/
Description: A Preference Library that doesn't suck!
Tag: compatible_min::iosiOS9
Author: CreatureSurvive <support@creaturecoding.com>
Depiction: https://creaturecoding.com/?page=depiction&id=libcspreferences
Name: libCSPreferences
Sileodepiction: https://creaturecoding.com/sileo/depiction/?package_id=libcspreferences
Package: com.creaturecoding.libcspreferences
Version: 1.1.6
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 4712
Depends: com.ex.libsubstitute | mobilesubstrate, firmware (>= 8.0), preferenceloader
Filename: ./debs/libcspreferences_1.1.6.deb
Size: 607032
MD5sum: 30848c67473a02990ce7721a1c805f3d
SHA1: a9f7b346ec69c6d2bb27742eba10ae853178e66b
SHA256: de5249c18ab7171e2a4fea1eca31fdf2b7dfb80f651a7644aeccfe4faa6d1d19
Section: Development
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libcspreferencesDp
Description: A Preference Library that doesn't suck!
Tag: purpose::extension, cydia::obsolete, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11, compatible::ios12
Author: CreatureSurvive <support@creaturecoding.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libcspreferencesDp
Dev: creaturecoding
Name: libCSPreferences
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.creaturecoding.libcspreferences
Version: 1.1.8
Architecture: iphoneos-arm
Maintainer: CreatureSurvive <support@creaturecoding.com>
Installed-Size: 4584
Pre-Depends: firmware (>= 8.0), com.ex.libsubstitute | mobilesubstrate, preferenceloader
Filename: ./debs/com.creaturecoding.libcspreferences_1.1.8_iphoneos-arm.deb
Size: 617784
MD5sum: a116bd96924e9edc501803a4eb370cdb
SHA1: f3546fa1aed6cf0142f3da9e5e2b02180cc544d7
SHA256: 35652c8f9a89accb88cc8e618bf10a4d61f7ce714af447534bc39d7419357370
Section: System
Homepage: https://creaturecoding.com/
Description: A Preference Library that doesn't suck!
Tag: compatible_min::iosiOS9
Author: CreatureSurvive <support@creaturecoding.com>
Depiction: https://creaturecoding.com/?page=depiction&id=libcspreferences
Name: libCSPreferences
Sileodepiction: https://creaturecoding.com/sileo/depiction/?package_id=libcspreferences
Package: com.creaturecoding.libcspreferences
Version: 1.1.9
Architecture: iphoneos-arm
Maintainer: CreatureSurvive <support@creaturecoding.com>
Installed-Size: 4652
Pre-Depends: firmware (>= 8.0), com.ex.libsubstitute | mobilesubstrate, preferenceloader
Filename: ./debs/com.creaturecoding.libcspreferences_1.1.9_iphoneos-arm.deb
Size: 622720
MD5sum: 3ed5658d86b3e431a4e8927325b54419
SHA1: 29771ec34231cefdac75babb460300e92c872867
SHA256: b1478737d8f873bd379e3065da173ae17b3847b03619c5c1b4e3e06d9ccb8826
Section: System
Homepage: https://creaturecoding.com/
Description: A Preference Library that doesn't suck!
Tag: compatible_min::iosiOS9
Author: CreatureSurvive <support@creaturecoding.com>
Depiction: https://creaturecoding.com/?page=depiction&id=libcspreferences
Name: libCSPreferences
Sileodepiction: https://creaturecoding.com/sileo/depiction/?package_id=libcspreferences
Package: com.creaturecoding.libcspreferences
Version: 1.2.0
Architecture: iphoneos-arm
Maintainer: CreatureSurvive <support@creaturecoding.com>
Installed-Size: 4652
Pre-Depends: firmware (>= 8.0), com.ex.libsubstitute | mobilesubstrate, preferenceloader
Filename: ./debs/com.creaturecoding.libcspreferences_1.2.0_iphoneos-arm.deb
Size: 629010
MD5sum: 6c7dacefe5e329ede71dd5e3c4984641
SHA1: f66d400bc754cca0b18d77a8ab52d7ac12f356bc
SHA256: 55215ca33d96ea69c58b7b4234a08c4eab26ff1a8fb2994f0bd491c6bd8de3c3
Section: System
Homepage: https://creaturecoding.com/
Description: A Preference Library that doesn't suck!
Tag: compatible_min::iosiOS9
Author: CreatureSurvive <support@creaturecoding.com>
Depiction: https://creaturecoding.com/?page=depiction&id=libcspreferences
Name: libCSPreferences
Sileodepiction: https://creaturecoding.com/sileo/depiction/?package_id=libcspreferences
Package: com.creaturesurvive.libcscolorpicker
Version: 1.0.3
Architecture: iphoneos-arm
Maintainer: CreatureSurvive <support@creaturecoding.com>
Installed-Size: 460
Pre-Depends: firmware (>= 7.0)
Filename: ./debs/com.creaturesurvive.libcscolorpicker_1.0.3_iphoneos-arm.deb
Size: 91700
MD5sum: 29ea3d634f859bb9e2d07e3ff98586d1
SHA1: 581f99322db502d391c456bc2b9536d1f6b4af3e
SHA256: 7abd92d2a3f4b47bcf701a32783996872f36dcd59bcfad806d6e4095528a260c
Section: System
Homepage: https://creaturecoding.com/
Description: A minimal color picker library for developers
Tag: purpose::extension, compatible_min::iosiOS7
Author: CreatureSurvive <support@creaturecoding.com>
Depiction: https://creaturecoding.com/?page=depiction&id=libcscolorpicker
Name: libCSColorPicker
Sileodepiction: https://creaturecoding.com/sileo/depiction/?package_id=libcscolorpicker
Package: com.foxfort.foxforttools
Version: 1.0.7
Architecture: iphoneos-arm
Maintainer: FoxfortMobile
Installed-Size: 640
Depends: mobilesubstrate, com.foxfort.libfoxfortutils
Conflicts: com.hackyouriphone.foxforthack, com.pulandres.foxforthack, org.cydia.kiimo.foxforthack, ru.rejail.foxforthack
Filename: ./debs/com.foxfort.foxforttools_1.0.7_iphoneos-arm.deb
Size: 141762
MD5sum: 8afe82d8b9f37cf246fd3568a2b495de
SHA1: eb9611f1d6e748a4ed5efc278330fd0fd756e7b3
SHA256: c1f1daa1011f02b7625e402a2a5da8b973a47432ae5bcaf5049e96081369589d
Section: System
Description: Helper tools for Foxfort tweaks
Tag: role::developer
Author: FoxfortMobile
Name: FoxFort Tools
Package: com.foxfort.libfoxfortutils
Version: 1.0.9
Architecture: iphoneos-arm
Maintainer: FoxfortMobile
Installed-Size: 840
Depends: firmware (>= 7.0)
Filename: ./debs/com.foxfort.libfoxfortutils_1.0.9_iphoneos-arm.deb
Size: 148738
MD5sum: 98158ee5d1584a8decadab437dedd0b9
SHA1: fd541aa9deec8d577f33263b0b357f61968086c2
SHA256: 889bf75d2a642ddc3a80da66f1f3934d251b0c5d212e9034a2d0b2bc168ac8cd
Section: System
Description: Basic utilities for Foxfort tweaks
Tag: role::developer
Author: FoxfortMobile
Name: libfoxfortutils
Package: com.hackyouriphone.libcolorpickerarm64
Version: 1.6.2-1
Architecture: iphoneos-arm
Maintainer: HackYouriPhone <repo@hackyouriphone.org>
Depends: firmware (>= 11.0)
Conflicts: org.thebigboss.libcolorpicker, me.nepeta.libcolorpicker, com.hackyouriphone.libcolorpicker
Replaces: org.thebigboss.libcolorpicker
Provides: org.thebigboss.libcolorpicker (=1.6.1)
Filename: ./debs/com.hackyouriphone.libcolorpickerarm64_1.6.2-1_iphoneos-arm.deb
Size: 37992
MD5sum: 790655eb4e7fdcaca82ce73cda33b8df
SHA1: 53493a7733510e2d2166e793d10f2cf8aaf3f58f
SHA256: 509c2d022006acedb036c7582b30bf7da415701b183a1f4cf3e261e79f31b76e
Section: HYI - Tweaks
Homepage: http://repo.hackyouriphone.org/depiction/depiction.php?filename=libcolorpickerarm64
Description: libcolorpicker with arm64e (A12) support
Author: Bailey Seymour <repo@hackyouriphone.org>
Depiction: http://repo.hackyouriphone.org/depiction/depiction.php?filename=libcolorpickerarm64
Name: libcolorpicker Arm64e (A12)
Package: com.laughingquoll.prefixui
Version: 0.7
Architecture: iphoneos-arm
Maintainer: 他是个疯子
Installed-Size: 172
Filename: ./debs/com.laughingquoll.prefixui_0.7_iphoneos-arm.deb
Size: 27870
MD5sum: 9fd1bcbe7141e03785db501bf302b3a0
SHA1: e7fe184a15d242dd4b821cebac913be96d84b00a
SHA256: b6c5cb5ac2ae7445e26767fb8c6ebea12809eb5372b1a9fe01d669fb94180c13
Section: System
Homepage: https://sileo-cydia.github.io/ms/description.html?id=ylwj
Description: noctisxi依赖
Tag: role::developer
Author: LaughingQuoll
Depiction: https://sileo-cydia.github.io/ms/description.html?id=ylwj
Name: PrefixUI「noctisxi依赖」
Sileodepiction: https://sileo-cydia.github.io/ms/msxq/ylwj.json
Package: com.laughingquoll.prefixui
Version: 1.2
Architecture: iphoneos-arm
Maintainer: LaughingQuoll
Installed-Size: 172
Depends: org.thebigboss.libcolorpicker
Filename: ./debs/com.laughingquoll.prefixui_1.2_iphoneos-arm.deb
Size: 23154
MD5sum: 6d5a74c5f8085804e03b3d4391877533
SHA1: 1a6136ac68549dc094372372f725b9b184aa9d95
SHA256: 4976220685020a90fe119756e38b53c757fec8bdb59bddd348896912b4352a5c
Section: System
Description: An awesome framework of some sort!!
Tag: role::developer
Author: LaughingQuoll
Name: PrefixUI
Package: com.laughingquoll.prefixui
Version: 1.2.1
Architecture: iphoneos-arm
Maintainer: LaughingQuoll
Installed-Size: 172
Depends: me.nepeta.libcolorpicker
Filename: ./debs/com.laughingquoll.prefixui_1.2.1_iphoneos-arm.deb
Size: 23176
MD5sum: 37078019a0bfc223dd5aaece3e721c0b
SHA1: 51c41c258d8be0c42473739591c15f68f00077b7
SHA256: d126cbcc1ccfa1100daadbc87dfe3e876e2abbb1363f866a8152bd9e62afe542
Section: System
Description: An awesome framework of some sort!!
Tag: role::developer
Author: LaughingQuoll
Name: PrefixUI
Package: com.laughingquoll.prefixui
Version: 1.2.2
Architecture: iphoneos-arm
Maintainer: LaughingQuoll
Installed-Size: 252
Depends: me.nepeta.libcolorpicker
Filename: ./debs/com.laughingquoll.prefixui_1.2.2_iphoneos-arm.deb
Size: 34040
MD5sum: 36a4d6dfd10f2650109af73a42f8b8dd
SHA1: 1f76a192c5dc4191446b75648eac4272d98e8189
SHA256: ffcad70f1d267260198d13a3375a4e2d9bca32749aaaf8dd658bf1d52d89accb
Section: System
Description: An awesome framework of some sort!!
Tag: role::developer
Author: LaughingQuoll
Name: PrefixUI
Package: com.midnightchips.ldRun
Version: 0.0.4
Architecture: iphoneos-arm
Maintainer: midnightchips
Installed-Size: 132
Filename: ./debs/com.midnightchips.ldrun_0.0.4_iphoneos-arm.deb
Size: 3490
MD5sum: 19a2fc4ff5f211f006c633c74941fd57
SHA1: a103a8a055fa42458810fd3e4851960b0ff1b59e
SHA256: 2fc1bcf5edf361abdb90dba515452556a0aa40dcb88e43ac0e4127d73e7192bc
Section: System
Description: A binary to run ldrestart as root.
Tag: role::hacker
Author: midnightchips
Name: ldRun
Package: com.modmyi.libswift4
Version: 4.2.1-2
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 170711
Depends: firmware (>= 7.0)
Filename: ./debs/com.modmyi.libswift4_4.2.1-2_iphoneos-arm.deb
Size: 18773744
MD5sum: 0e9aed2309f4121b8beb3a9ebe2b8e6b
SHA1: ec5f1cd478c8b2dc0a8232a86233458da65e4450
SHA256: 1175b9f29d2959e41989f75bce90166a3f6e49729e0deb7f71c5a48530771711
Section: Development
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libswift4Dp
Description: libswift dylibs for iOS
Tag: purpose::extension, compatible::ios10, compatible::ios11
Author: Kabir Oberai <oberai.kabir+libswift@gmail.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libswift4Dp
Dev: kabiroberai
Name: libswift4
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.muirey03.libimagepicker
Version: 1.0.4
Architecture: iphoneos-arm
Maintainer: Muirey03
Installed-Size: 324
Filename: ./debs/com.muirey03.libimagepicker_1.0.4_iphoneos-arm.deb
Size: 16246
MD5sum: b04c239c83a304cec839a17536f84cdc
SHA1: de32a1532e65a39d35ae8893285f4d72506b586b
SHA256: 7785b6a9dbbc1c64a0d5799262b5df890bd5e074549b6a40e5a98098d7d4dec6
Section: System
Description: A simple library for choosing images in preference bundles.
Tag: role::developer
Author: Muirey03
Name: libimagepicker
Package: com.muris.libgraphite
Version: 2.2.2
Architecture: iphoneos-arm
Maintainer: Geometric Software
Installed-Size: 1304
Depends: firmware(>=10.0)
Breaks: com.muris.amour(<=1.0), com.muris.intelligentpass(<=1.0.7), com.muris.lendmyphone(<=1.0.5), com.muris.bellevolume(<=1.1.1), com.muris.modernalerts(<=1.2), com.muris.extendedglyph(<=1.1)
Filename: ./debs/com.muris.libgraphite_2.2.2_iphoneos-arm.deb
Size: 346698
MD5sum: f47ffb13b8a433ec54bd1989cbd2e0f9
SHA1: 2b5d320583eb4ce154bcb52f23ecc827781b4c28
SHA256: 0040114c077d9e43ecf693fe492c00242beb8878abceffe298035db9d53cc904
Section: Development
Description: powerful library for iOS development
Tag: purpose::library role::developer
Author: Geometric Software
Depiction: https://store.geometricsoftware.se/packages/com.muris.libgraphite
Name: libgraphite
Package: com.muris.libgraphite
Version: 2.2.3
Architecture: iphoneos-arm
Maintainer: Geometric Software
Installed-Size: 1304
Depends: firmware(>=10.0)
Breaks: com.muris.amour(<=1.0), com.muris.intelligentpass(<=1.0.7), com.muris.lendmyphone(<=1.0.5), com.muris.bellevolume(<=1.1.1), com.muris.modernalerts(<=1.2), com.muris.extendedglyph(<=1.1)
Filename: ./debs/com.muris.libgraphite_2.2.3_iphoneos-arm.deb
Size: 346706
MD5sum: 285565335f4c1c21405e87539a77baaa
SHA1: fa8819e11bc5733d33c4816f26f89f8ac116a551
SHA256: d2a1286c5c40954dff4d66c9fb084acd6b01ce30df4fda822cf26f1421405c34
Section: Development
Description: powerful library for iOS development
Tag: purpose::library role::developer
Author: Geometric Software
Depiction: https://store.geometricsoftware.se/packages/com.muris.libgraphite
Name: libgraphite
Sileodepiction: https://store.geometricsoftware.se/packages/com.muris.libgraphite
Package: com.opa334.ccsupport
Version: 1.2-3
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 203
Depends: firmware (>= 11.0), mobilesubstrate (>= 0.9.5000)
Conflicts: com.ioscreatix.silo
Replaces: com.ioscreatix.silo
Provides: com.ioscreatix.silo
Filename: ./debs/com.opa334.ccsupport_1.2-3_iphoneos-arm.deb
Size: 35506
MD5sum: 5bdf900d2f1e3f7b8dca06696892ef8a
SHA1: 869427d61a45e0f6bf9803628aa0555e630d0fa8
SHA256: fd79a3b14797b0ed8b3e3eebbcb71f51e446a374307990f2ed58b3fb5982e04a
Section: Tweaks
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=ccsupportDp
Description: Support tweak for CC modules!
Tag: purpose::extension, compatible::ios11, compatible::ios12
Author: opa334 <opa334@protonmail.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=ccsupportDp
Dev: opa334
Name: CCSupport
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.opa334.ccsupport
Version: 1.2.1
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 203
Depends: firmware (>= 11.0), mobilesubstrate (>= 0.9.5000)
Conflicts: com.ioscreatix.silo
Replaces: com.ioscreatix.silo
Provides: com.ioscreatix.silo
Filename: ./debs/com.opa334.ccsupport_1.2.1_iphoneos-arm.deb
Size: 35262
MD5sum: 43abcd3e0f2f40bca25b3101bb06ee1a
SHA1: 045777be10d82d40c1f1f93f47f978b4eda56844
SHA256: 82c0a185c575d60a83d79c33ca4ead6d8eaf966a6740c323d4c4832e65956788
Section: Tweaks
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=ccsupportDp
Description: Support tweak for CC modules!
Tag: purpose::extension, compatible::ios11, compatible::ios12
Author: opa334 <opa334@protonmail.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=ccsupportDp
Dev: opa334
Name: CCSupport
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.ouraigua.jodebox
Version: 3.0.7
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 735
Depends: firmware (>= 6.0), mobilesubstrate, com.rpetrich.rocketbootstrap (>= 1.0.2) | firmware (<< 7.0)
Filename: ./debs/com.ouraigua.jodebox_3.0.7_iphoneos-arm.deb
Size: 175170
MD5sum: e8fbe3c55fb187b4a6ab490f1301c188
SHA1: 5129202c5f9cf791afd8c7d0600cc2478a298557
SHA256: ac34834c517e484bf68e70e4adf77a717a1b1678ddf7bc3097164816c65b30bb
Section: Development
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=jodeboxDp
Description: iOS7 filesystem access from sandboxed applications.
Tag: purpose::extension, role::developer, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10
Author: Jalal Ouraigua <ouraigua@me.com>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=jodeboxDp
Dev: ouraigua
Icon: file:///Library/PreferenceBundles/ChromeDownloaderPrefs.bundle/icon@2x.png
Name: JODebox
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.pulandres.adblockplus
Version: 1.1
Architecture: iphoneos-arm
Maintainer: Pulandres
Installed-Size: 264
Filename: ./debs/com.pulandres.adblockplus_1.1_iphoneos-arm.deb
Size: 12672
MD5sum: ecc822f85eb55946e494c9f9427f8ebd
SHA1: d37dcf33182d73039d2b9cc9ed3fe220d8f6977d
SHA256: b2c00261cf2693f53d88833c7014f6e9300fa6d0f1eea1343339199b12932fb2
Section: Tweaks
Description: Adblock for ++ Tweaks
Author: ReJail
Depiction: https://repo.pulandres.me/index.php?pid=377
Name: AdBlock ++
Sileodepiction: https://repo.pulandres.me/sileo.php?pid=377
Package: com.pulandres.libiarrays
Version: 1.0.11-beta-6
Architecture: iphoneos-arm
Maintainer: Pulandres
Pre-Depends: firmware (>=7.0)
Conflicts: com.iarrays.libiarrays1, com.iarrays.libiarrays
Filename: ./debs/com.pulandres.libiarrays_1.0.11-beta-6_iphoneos-arm.deb
Size: 288814
MD5sum: 91d0e2ee603abbf6bf4056f1a9546990
SHA1: 34bd847b9a98804a3ae85838136db24548165fd9
SHA256: 77246883bdab60006e69895a07bec892def0f2c26c59c185cc42fab5579593e7
Section: Development
Description: Should be used only by IArrays products. This is closed library and no support is provided for this package.
Author: IArrays <support@iarrays.com>
Depiction: https://repo.pulandres.me/index.php?pid=413
Name: libiarrays Cracked
Sileodepiction: https://repo.pulandres.me/sileo.php?pid=413
Package: com.pulandres.libiarrays
Version: 1.0.11-beta-8
Architecture: iphoneos-arm
Maintainer: Pulandres
Pre-Depends: firmware (>=7.0)
Conflicts: com.iarrays.libiarrays1, com.iarrays.libiarrays
Filename: ./debs/com.pulandres.libiarrays_1.0.11-beta-8_iphoneos-arm.deb
Size: 288284
MD5sum: d61c815627b0a2760710d0b64558f064
SHA1: 45cc59d0ea177ec8f92881220a4aaaee6c1099fa
SHA256: 6f3e78f2e3f203b696eee23951ec063780115089b94012c9a31a8daa8f1bb701
Section: Development
Description: Should be used only by IArrays products. This is closed library and no support is provided for this package.
Author: IArrays <support@iarrays.com>
Depiction: https://repo.pulandres.me/index.php?pid=657
Icon: https://repo.pulandres.me/CydiaIcon.png
Name: libiarrays Cracked
Sileodepiction: https://repo.pulandres.me/sileo.php?pid=657
Package: com.rpetrich.rocketbootstrap
Version: 1.0.7~beta3
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 596
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 3.0)
Filename: ./debs/com.rpetrich.rocketbootstrap_1.0.7~beta3_iphoneos-arm.deb
Size: 37990
MD5sum: 7c693be81595deb417858ffc5ae8cd10
SHA1: e0f1b4afbac67e3c8beb39df819997fd0cb54468
SHA256: 4b7e9c8a0c6d5fc3179e0c5f7fb880239f8c5f30e481979b9d7e4829d58cfb73
Section: Tweaks
Homepage: https://www.rpetrich.com/cydia/rocketbootstrap/beta/
Description: Support library allowing tweaks to communicate with sandboxed processes
Tag: purpose::extension, role::developer
Author: Ryan Petrich <rpetrich+rocketbootstrap@gmail.com>
Depiction: https://www.rpetrich.com/cydia/rocketbootstrap/beta/
Dev: rpetrich
Name: RocketBootstrap
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.rpetrich.rocketbootstrap
Version: 1.0.7~beta5-coolstar-1
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Installed-Size: 800
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 3.0)
Filename: ./debs/com.rpetrich.rocketbootstrap_1.0.7~beta5-coolstar-1_iphoneos-arm.deb
Size: 30320
MD5sum: 7976fff5ff57405ce196576b8c4d0a0b
SHA1: 228bf8bccbd11c398e419f04d05a0f7067913a41
SHA256: 5047444908ecdd158ce97a8fc8bd4adf6e20a4b13d81a07e79cec95678ee3e8f
Section: Tweaks
Homepage: https://www.rpetrich.com/cydia/rocketbootstrap/beta/
Description: Support library allowing tweaks to communicate with sandboxed processes
Tag: purpose::extension, role::developer
Author: Ryan Petrich <rpetrich+rocketbootstrap@gmail.com>
Depiction: https://www.rpetrich.com/cydia/rocketbootstrap/beta/
Dev: rpetrich
Name: RocketBootstrap
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.spark.libsparkapplist
Version: 1.0.3
Architecture: iphoneos-arm
Maintainer: Spark
Installed-Size: 596
Filename: ./debs/com.spark.libsparkapplist_1.0.3_iphoneos-arm.deb
Size: 31948
MD5sum: e53d3c6cbf3fd6d1f744083fc61ba5b7
SHA1: 296377c94ffc68729cdf36eae668210dbf3f3c36
SHA256: 6d3b825c2e6b91098bb354cf4bdf179049248656a777eff6ec232fd9d4bf5ea6
Section: System
Description: AppList alternative
Tag: role::developer
Author: Spark
Name: libSparkAppList
Package: com.subdiox.sud0
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: subdiox
Installed-Size: 260
Filename: ./debs/com.subdiox.sud0_1.0.1_iphoneos-arm.deb
Size: 4642
MD5sum: d659ac23395804e3d14203ea74f3e6f0
SHA1: a9642fee45ee5e56d37768f14b1666cd99bb2584
SHA256: 79f1c5879721616dd251d01d255a0db208f68a112de1b6ff22971334fb054691
Section: System
Description: sudo command, electra jailbreak supported
Tag: role::hacker
Author: subdiox
Name: sud0
Package: com.cydiami.youkuplus
Version: 1.1-2
Architecture: iphoneos-arm
Maintainer: 搬运 <TEst@qq.com>
Depends: com.cydiami.youkuplus
Filename: ./com.cydiami.youkuplus_1.1-2_iphoneos-arm.deb
Size: 746
MD5sum:
SHA1:
SHA256:
Section: 其他
Homepage:
Description: 优酷视频去广告
Author: 搬运 <Test@qq.com>
Depiction:
Icon: https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1599382945282&di=c3b71baedf0fc7e4cf6f3d5cba10641f&imgtype=0&src=http%3A%2F%2Fwww.wolonge.com%2Fuploads%2Fallimg%2F20200313%2F1-200313102235254.png
Moderndepiction:
Name: 优酷视频去广告
Sileodepiction:
Package: com.thuthuatjb.vcallers
Version: 2.1
Architecture: iphoneos-arm
Maintainer: TTJB Team <admin@thuthuatjb.com>
Installed-Size: 388
Depends: mobilesubstrate, ws.hbang.common (>= 1.11), com.muirey03.libimagepicker
Filename: ./debs/com.thuthuatjb.vcallers_2.1_iphoneos-arm.deb
Size: 48768
MD5sum: 56255f83bed36e448a1afb65f10c9ca1
SHA1: b5538aedc0ab4860c5a82c53ee9094810023198c
SHA256: 5574d653cf568698df880d49b3b70624b554862df66c2f576e5302a1550bdb57
Section: Tweaks
Description: Đặt Video làm nền cuộc gọi đến hoặc đi
Author: TTJB Team <admin@thuthuatjb.com>
Depiction: https://repo.thuthuatjb.com/index.php?pid=434
Icon: file:///Library/IconRepo/tinhchinh.png
Name: VCaller Screen
Sileodepiction: https://repo.thuthuatjb.com/sileo/com.thuthuatjb.vcallers.json
Package: com.unlimapps.uasharedtools
Version: 2.2r-76
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: com.unlimapps.uasharedtools.nostash | com.unlimapps.uasharedtools.stash
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools
Filename: ./debs/com.unlimapps.uasharedtools_2.2r-76_iphoneos-arm.deb
Size: 672
MD5sum: e9634f66f0978dd63a2ccb8c725bb05b
SHA1: 45b37869121612430d73720feb48b4ad30435597
SHA256: cbf1b44dca0743d3c33903ca68b4ec26c56adfb8c207b6375be63fda29857bef
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools
Package: com.unlimapps.uasharedtools
Version: 2.2r-77
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: com.unlimapps.uasharedtools.nostash | com.unlimapps.uasharedtools.stash
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools
Filename: ./debs/com.unlimapps.uasharedtools_2.2r-77_iphoneos-arm.deb
Size: 670
MD5sum: 780554aa35b045c7c2aa88a66e8cc775
SHA1: 311a44edecfca4787208a054d6b6f2f201305801
SHA256: 1585036c4edffc124429d50235d86a38fdc63364170416f45372e00b6ca2eac0
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools
Package: com.unlimapps.uasharedtools
Version: 2.2r-86
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: com.unlimapps.uasharedtools.nostash | com.unlimapps.uasharedtools.stash
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools
Filename: ./debs/com.unlimapps.uasharedtools_2.2r-86_iphoneos-arm.deb
Size: 670
MD5sum: 010811a3c3915c00e48b3fde722b40bb
SHA1: c9ade0fd3f25aa239f389a30293e24c9ba47a079
SHA256: 081c196d589de5620ab14bba0ac362a4cfe8ec1d7f16cb649d568432fb0e6640
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools
Package: com.unlimapps.uasharedtools
Version: 2.2r-87
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: com.unlimapps.uasharedtools.nostash | com.unlimapps.uasharedtools.stash
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools
Filename: ./debs/com.unlimapps.uasharedtools_2.2r-87_iphoneos-arm.deb
Size: 670
MD5sum: a23dbce0499eba0724f8148b6c3e88cf
SHA1: 45ea70595738970f9a8e3dee8306d12c0f3e1280
SHA256: e75b61bf410a3cbb314bf2b442b62b4a6d1a8bbbd706089f5c185dda08acb2d2
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools
Package: com.unlimapps.uasharedtools.nostash
Version: 2.2r-76
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: mobilesubstrate, firmware (>= 11.0)
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools, com.unlimapps.uasharedtools.stash, com.unlimapps.uasharedtools (<< 2.2r-36)
Replaces: com.unlimapps.uasharedtools.stash, com.unlimapps.uasharedtools (<< 2.2r-36)
Provides: com.unlimapps.uasharedtools.virtual
Filename: ./debs/com.unlimapps.uasharedtools.nostash_2.2r-76_iphoneos-arm.deb
Size: 23624784
MD5sum: 4220a2be422555a937ae039848b787da
SHA1: 5e492b7c004b7ad6787979f302da768daba47fc2
SHA256: ff946f1234667cff05e34e26cfc2fa64bc1a1aff4221a2b17a476c0ca3eb83cb
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools (iOS 11)
Package: com.unlimapps.uasharedtools.nostash
Version: 2.2r-86
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: mobilesubstrate, firmware (>= 11.0)
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools, com.unlimapps.uasharedtools.stash, com.unlimapps.uasharedtools (<< 2.2r-36)
Replaces: com.unlimapps.uasharedtools.stash, com.unlimapps.uasharedtools (<< 2.2r-36)
Provides: com.unlimapps.uasharedtools.virtual
Filename: ./debs/com.unlimapps.uasharedtools.nostash_2.2r-86_iphoneos-arm.deb
Size: 22719728
MD5sum: df594598db518303a4e3cd5c5f6db64c
SHA1: a3e662e307e61dfed70a1d621d97a3a2533f0cc8
SHA256: 4069a42f86ea1a8a10190e1b7a7242cd866d3df2dbb26e6dff78027f473f62e4
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools (iOS 11)
Package: com.unlimapps.uasharedtools.nostash
Version: 2.2r-87
Architecture: iphoneos-arm
Maintainer: BigBoss <bigboss@thebigboss.org>
Depends: mobilesubstrate, firmware (>= 11.0)
Conflicts: com.yourepo.abo1bs.uasharedtoolsno-ads, com.hackyouriphone.uasharedtools, com.unlimapps.uasharedtools.stash, com.unlimapps.uasharedtools (<< 2.2r-36)
Replaces: com.unlimapps.uasharedtools.stash, com.unlimapps.uasharedtools (<< 2.2r-36)
Provides: com.unlimapps.uasharedtools.virtual
Filename: ./debs/com.unlimapps.uasharedtools.nostash_2.2r-87_iphoneos-arm.deb
Size: 22719486
MD5sum: 01bba87353970a61bf9f1f83a3a3dda3
SHA1: a0b4ec66051de01b8521eefcc5490ad438a6602e
SHA256: 59872a0445846c5fa757a1e11c5066ba76af7484d1316ee16e2cdc5cb1234936
Section: Development
Homepage: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Description: shared tools for unlimapps tweaks
Tag: purpose::library, role::developer
Author: UnlimApps Inc. <support@unlimapps.com>
Depiction: https://beta.unlimapps.com/depiction/com.unlimapps.uasharedtools/
Dev: i4iphones
Name: uasharedtools (iOS 11)
Package: cydia-dark
Version: 1.9.3~chimera5
Architecture: iphoneos-arm
Maintainer: Jay Freeman (saurik) <saurik@saurik.com>
Installed-Size: 9416
Pre-Depends: debianutils, dpkg (>= 1.14.25-8), firmware (>=5.0)
Depends: apt7-lib | libapt, apt7-key | apt-key, cydia-lproj (>= 1.1.10), darwintools, debianutils, dpkg (>= 1.18), org.thebigboss.repo.icons, sed, shell-cmds, system-cmds, uikittools (>= 2.0.0), lzma, cydia
Conflicts: bigboss, com.sosiphone.addcydia, ispazio.net, modmyifone, ste, yellowsn0w.com, zodttd, cydia-uni, cydia-gui
Replaces: bigboss, bigbossbetarepo, com.sosiphone.addcydia, cydia-sources, ispazio.net, modmyifone, saurik, ste, yellowsn0w.com, zodttd, cydia-gui
Filename: ./debs/cydia-dark_1.9.3~chimera5_iphoneos-arm.deb
Size: 1366944
MD5sum: aecb5c5a8717db0a750a6c2a9209e81f
SHA1: 0765ca536180f7c7587d6198e925de9bb0038d6d
SHA256: d6a902c38b5a3c5c4c216cb158c9181ce114ca555ba211527122c8ff3df8d513
Section: Packaging
Priority: optional
Description: graphical iPhone front-end for APT
Tag: purpose::uikit, role::enduser
Author: Diatrus <me@diatr.us>
Depiction: http://cydia.saurik.com/info/cydia/
Icon: file:///Applications/Cydia.app/Icon-60.png
Name: Cydia for Chimera/Electra
Package: cydia-lproj
Version: 1.9.3~chimera5
Architecture: iphoneos-arm
Maintainer: Jay Freeman (saurik) <saurik@saurik.com>
Installed-Size: 712
Depends: cydia
Conflicts: org.thebigboss.russiancydia
Replaces: cydia, org.thebigboss.russiancydia
Provides: org.thebigboss.russiancydia
Filename: ./debs/cydia-lproj_1.9.3~chimera5_iphoneos-arm.deb
Size: 66940
MD5sum: 0ac90b64b5a8b8098e216c30a21f3ff4
SHA1: 9f3c842b5fb5adf84eef83fdf4fd9690ec65b585
SHA256: c238840c078db89a99e8e2208bd7a1820f9dba54ad8454c7af23060131e6b781
Section: Packaging
Priority: required
Description: languages and translations for Cydia
Tag: purpose::uikit, cydia::essential, role::enduser
Author: Jay Freeman (saurik) <saurik@saurik.com>
Depiction: http://cydia.saurik.com/info/cydia-lproj/
Name: Cydia Translations
Package: jp.akusio.backgrounderaction11
Version: 0.0.7
Architecture: iphoneos-arm
Maintainer: akusio <akusio-report@neko2.net>
Installed-Size: 72
Depends: mobilesubstrate, libactivator (>=1.9.13~beta2), Firmware(>=11.0)