-
Notifications
You must be signed in to change notification settings - Fork 174
/
Packages
2133 lines (2010 loc) · 76.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: FiveIconDock
Version: 1
Architecture: iphoneos-arm64e
Maintainer: unknown
Depends: mobilesubstrate (>= 0.9.5000), oldabi
Filename: ./debfiles/FiveIconDock.deb
Size: 3560
MD5sum: bda89336dbbfa7aa5986d6d7ea72dcd0
SHA1: 33e1f0ecf6a51e56f1c573a05f9e36412922da70
SHA256: 3ff6daf28930eeb0957ef8ce86cd7e70ca8b2d57fd195cf80949b8ae4c715279
Section: Tweaks
Description: Five Icon Dock
Author: unknown
Name: Five Icon Dock
Package: apt.tinyapps.Renet
Version: 1.2.1
Architecture: iphoneos-arm64e
Maintainer: Tinyapps.cn
Depends: firmware (>= 15.0)
Filename: ./debfiles/apt.tinyapps.Renet-v1.2.1-arm64e.deb
Size: 245344
MD5sum: 893816434b977b856f806b0825580ca9
SHA1: 31c3728e152dc2e8964f416015cbd03b6f049343
SHA256: 88a5e2e2f45fbff384a826ab91da3f8478f4bd960afaff644095b7a1cd731519
Section: System
Priority: optional
Description: Fix Network Issue for CN Device
Author: Tinyapps.cn
Name: Renet - Network Fix
Package: ceserver
Version: 0.1
Architecture: iphoneos-arm64e
Maintainer: DoranekoSystems
Filename: ./debfiles/ceserver_iphoneos-arm64e.deb
Size: 64180
MD5sum: e37e6f6b35f166e2df9f63e13ed6448b
SHA1: 161cf38e6004fee75c85cf6383f2e3639a855f6d
SHA256: fd37555fbd3a1b36e5f51fe23308b85548815424e67db9de5d9aa8e8c65b49f8
Section: Development
Description: ceserver on ios
Author: DoranekoSystems
Name: ceserver
Sileodepiction: https://github.com/DoranekoSystems/ceserver-ios
Package: cm90.crossoveripc
Version: 1.1-1+debug
Architecture: iphoneos-arm64e
Maintainer: @CrazyMind90
Installed-Size: 368
Depends: mobilesubstrate, com.opa334.libsandy
Filename: ./debfiles/CrossOverIPC_Roothide.deb
Size: 17484
MD5sum: e9df193a414386b07306ba84d754fbe0
SHA1: 23633596c9c4c9f9fb7e89031d574672276fee11
SHA256: 1c8ea11cad2e0d6d47fb2f50d30d34bbd4ac45cd36bc35f0809138a1122027ef
Section: Tweaks
Description: A cross-process communication tool for sending and receiving messages on iOS 15 & 16 for rootless JBs
Author: @CrazyMind90
Name: CrossOverIPC
Package: com.0xkuj.3dappversionspoofer
Version: 1.3
Architecture: iphoneos-arm64e
Maintainer: 0xkuj
Installed-Size: 424
Depends: com.opa334.altlist
Filename: ./debfiles/com.0xkuj.3dappversionspoofer_1.3_iphoneos-arm64e.deb
Size: 51736
MD5sum: 577fce55475ef825a11f4fab83c17a7b
SHA1: d2f5e153ddd18aa7a5c06da3a544b98d78f14140
SHA256: 9e10961ac0dca691b1096fd040911892346466ed8fb0d367efe9c48bccae9200
Section: Tweaks
Description: A tweak to add app spoofing capabilities right from your 3D menu and prefs
Author: 0xkuj
Name: 3DAppVersionSpoofer
Package: com.0xkuj.iparanger
Version: 1.8
Architecture: iphoneos-arm64e
Maintainer: 0xkuj
Installed-Size: 3356
Depends: gawk, unzip, plutil
Filename: ./debfiles/com.0xkuj.iparanger_1.8_iphoneos-arm64e.deb
Size: 1128302
MD5sum: 52924ee1db7327bf7fbb1f5c7412c525
SHA1: bd15b9be3b904ea59bb92b2811933428529d7202
SHA256: 76064a8973bd5851a764b38affb22b1d7db4ca8b7cb586266ae246abbeee3286
Section: Applications
Description: GUI Based Application for ipatool
Author: 0xkuj
Name: IPA Ranger
Package: com.34306.2nd
Version: 2.0-3+debug
Architecture: iphoneos-arm64e
Maintainer: Little 34306
Depends: oldabi, mobilesubstrate (>= 0.9.5000), preferenceloader
Filename: ./debfiles/com.34306.2nd_2.0-3+debug_iphoneos-arm64e.deb
Size: 29532
MD5sum: 734b59969c6fddcdae8352911893e306
SHA1: 81776320d4f70a7b61cafd16543e87b3444a4454
SHA256: e0b1d8db59c24d3fa17522e90b25b20a9bbaf3bf24782d63c3dbff2245f12536
Section: Tweaks
Description: Add second line to your time on statusbar
Author: 34306
Name: 2nd
Package: com.34306.dockpad
Version: 1.1
Architecture: iphoneos-arm64e
Maintainer: Little 34306
Depends: mobilesubstrate
Filename: ./debfiles/com.34306.dockpadrl_1.1_iphoneos-arm64e.deb
Size: 3896
MD5sum: 48a7ae6a1ed71079d0a861bfc1d68a72
SHA1: f87318c4aa77c59e0aa2a6009ef7dc866eafd9f4
SHA256: 4a36d7bfcedbc5a4350bd1a1c1aa1c44cf82cb689576e36c4141c0af4fcd1569
Section: Tweaks
Description: A simple tweak that turn your dock into iPadOS dock on iOS 15!
Author: 34306
Name: DockPad
Package: com.34306.swiped
Version: 1.0-6+debug
Architecture: iphoneos-arm64e
Maintainer: Little 34306
Depends: mobilesubstrate (>= 0.9.5000), preferenceloader
Filename: ./debfiles/com.34306.swiped_1.0-6+debug_iphoneos-arm64e.deb
Size: 12056
MD5sum: 230a8b90b7577ed7339d924a0d5d4496
SHA1: 253993aee03704f6122997360c59450f70f2ae25
SHA256: 25948793c6d02811606385a37843555c669097fa5f0e933510961a12bde382c3
Section: Tweaks
Description: Swiped!
Author: 34306
Name: Swiped
Package: com.cannathea.afc2d-arm64e
Version: 1.1.7-21
Architecture: iphoneos-arm64e
Maintainer: Cannathea <[email protected]>
Installed-Size: 212
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: cy+cpu.arm64, mobilesubstrate, firmware (>= 11.0), ldid | firmware (>= 15.0)
Conflicts: com.saurik.afc2d, net.angelxwind.afc2d-arm64, com.mrmadtw.afc2forios11, repo.feng.afc2add11, us.scw.afctwoadd, net.angelxwind.afc2ios70, afc2.25pp, afc2.25pp7, afc2.91, app.taig.afc2
Replaces: com.saurik.afc2d, net.angelxwind.afc2d-arm64, com.mrmadtw.afc2forios11, repo.feng.afc2add11, us.scw.afctwoadd, net.angelxwind.afc2ios70, afc2.25pp, afc2.25pp7, afc2.91, app.taig.afc2
Provides: com.saurik.afc2d, net.angelxwind.afc2d-arm64, com.mrmadtw.afc2forios11, repo.feng.afc2add11, us.scw.afctwoadd, net.angelxwind.afc2ios70, afc2.25pp, afc2.25pp7, afc2.91, app.taig.afc2
Filename: ./debfiles/com.cannathea.afc2d-arm64e_1.1.7-21_iphoneos-arm64e.deb
Size: 12778
MD5sum: 4e462efe49097a6fe5f7a0699cc201d4
SHA1: f16bbbc395ff09169d946b832152822f31967f24
SHA256: a7ff4383a5cd8356144fbb136b5ca41006de34a90e59abad85621b592fd6cf32
Section: System
Homepage: https://cannathea.com/
Description: Allow full file-system access over USB for all arm64 devices, especially useful for those on RootHide. by Shadow-
Tag: purpose::daemon, role::enduser
Author: saurik, Cannathea, i_82, Shadow-
Depiction: https://cydia.akemi.ai/?page/com.cannathea.afc2d-arm64
Name: Apple File Conduit "2" (RootHide)
Package: com.chr1s.newtab
Version: 1.1
Architecture: iphoneos-arm64e
Maintainer: Chr1s
Installed-Size: 156
Depends: mobilesubstrate (>= 0.9.5000)
Filename: ./debfiles/com.chr1s.newtab_1.1_iphoneos-arm64e.deb
Size: 6254
MD5sum: f6787bc6aa10b5f064289a386a4895a4
SHA1: 8ec72bbac19b4cb133b61a7ed2aae4b0712b3fa0
SHA256: 0f0c1cba1a0bb6a737798cea4d15e3b7eaa167942b7672881da963eeafe631aa
Section: Tweaks
Description: Add newtab shortcut to safari toolbar
Author: Chr1s
Name: NewTab
Package: com.fouadraheb.appdata
Version: 1.3.6
Architecture: iphoneos-arm64e
Maintainer: Fouad Raheb <[email protected]>
Installed-Size: 788
Depends: firmware (>= 15.0), mobilesubstrate, preferenceloader
Filename: ./debfiles/com.fouadraheb.appdata_1.3.6_iphoneos-arm64e.deb
Size: 114020
MD5sum: 817575237d4d3687cf339f677755b652
SHA1: 69104521378a6edb01e0f011b67dc17e40f96504
SHA256: ae8c7edc076e7aa96ff274f835e072ba5a865cafb07774b6bb57c4e4fd2dfff6
Section: Tweaks
Description: View & Manage Applications Data from your Home Screen
Author: Fouad Raheb <[email protected]>
Depiction: https://apt.fouadraheb.com/package/com.fouadraheb.appdata
Name: AppData
Sileodepiction: https://apt.fouadraheb.com/package/com.fouadraheb.appdata/sileo
Package: com.ginsu.comet
Version: 1.0.5
Architecture: iphoneos-arm64e
Maintainer: Ginsu
Installed-Size: 2432
Depends: dev.theos.orion14, firmware (>= 14.0)
Filename: ./debfiles/com.ginsu.comet-_1.0.5_iphoneos-arm64e.deb
Size: 258420
MD5sum: 720ea265946ea3f8964f23c1cb3bcfaa
SHA1: 6bf982c02dab296df5f25a20ea01c4b3361f0552
SHA256: ca8ae29c8a8e763df75e1085c52d59578723789f4591f97e71a19522b2f90c0a
Section: Tweaks
Description: A SwiftUI Prefs Framework
Author: Ginsu
Name: Comet
Package: com.imkpatil.colormybattery
Version: 1.3.4
Architecture: iphoneos-arm64e
Maintainer: P2KDev <[email protected]>
Installed-Size: 436
Depends: mobilesubstrate, org.thebigboss.libcolorpicker, preferenceloader
Filename: ./debfiles/com.imkpatil.colormybattery_1.3.4_iphoneos-arm64e.deb
Size: 42360
MD5sum: 115c4e7555e04f79cb1cd80da9351f4f
SHA1: a64cce03e542df338628ed09f6f88a956397070e
SHA256: b6a3c64ae7771d59d2473a4f25ca81b5ae30c597f2f3f2beec5f5b15b783d1cb
Section: Tweaks
Description: Battery Color based on the battery percentage.
Author: P2KDev <[email protected]>
Icon: file:///Library/Application Support/ColorMyBattery/icon.png
Name: ColorMyBattery
Package: com.imkpatil.ezswipe
Version: 1.1.1-4+debug
Architecture: iphoneos-arm64e
Maintainer: P2KDev <[email protected]>
Installed-Size: 408
Depends: mobilesubstrate, preferenceloader
Filename: ./debfiles/com.imkpatil.ezswipe_1.1.1-4+debug_iphoneos-arm64e.deb
Size: 26432
MD5sum: 5203a408edb526fce8ae7f7a35b7c43a
SHA1: bada5b90b17a3bae69da480a922b41b424fd1a30
SHA256: bec6918f3792b097ba1ed0737a5a3da409091edbb83543defe881838ef2d8ca7
Section: Tweaks
Description: Give your hand a rest by using gestures instead!
Author: P2KDev <[email protected]>
Icon: file:///Library/Application Support/EZSwipe/icon.png
Name: EZSwipe
Package: com.lclrc.recordanywhere
Version: 1.1.0
Architecture: iphoneos-arm64e
Maintainer: Muirey03 & lclrc
Depends: mobilesubstrate
Filename: ./debfiles/com.lclrc.recordanywhere_1.1.0_iphoneos-arm64e.deb
Size: 4152
MD5sum: 029095d760719b9c50db9db981d9f5f0
SHA1: fe128b636279e5661f616eaa670673e639edf953
SHA256: 88e4167ef2a0fcaba26013c5ba2602b95a38c097dc30c88e6d8ca21044afed07
Section: Tweaks
Description: enable screen recorder always work even on lock screen
Author: Muirey03 & lclrc
Name: RecordAnywhere
Package: com.lnx.showtouch
Version: 1.0.4
Architecture: iphoneos-arm64e
Maintainer: LonestarX
Installed-Size: 432
Depends: mobilesubstrate, preferenceloader, org.thebigboss.libcolorpicker
Filename: ./debfiles/com.lnx.showtouch_1.0.4_iphoneos-arm64e.deb
Size: 70828
MD5sum: 5d9332db064373708f37c724dd82b644
SHA1: e1f534e8d67db5d5c19a9b8f18baa44f9fd940c3
SHA256: ae22233c1c854d338f64be847a7ebe77cbfebabb00a8eb57351876723fc7d293
Section: Tweaks
Description: Shows where you touch the screen
Author: LonestarX
Name: ShowTouch
Package: com.lnx.showtouch
Version: 1.0.5
Architecture: iphoneos-arm64e
Maintainer: LonestarX
Installed-Size: 432
Depends: mobilesubstrate, preferenceloader, org.thebigboss.libcolorpicker
Filename: ./debfiles/com.lnx.showtouch_1.0.5_iphoneos-arm64e.deb
Size: 69460
MD5sum: ca7c77481a0cd74f5ed2d93dcc58b90d
SHA1: e6b7a6f1af12c1ce5765ad104bc0f95f53388b2e
SHA256: cff3671c7127399bdea61ec91ce7dcbdcfb2bb56b1e3db712d6cea66022e54d1
Section: Tweaks
Description: Shows where you touch the screen
Author: LonestarX
Name: ShowTouch
Package: com.mtac.uptime
Version: 1.0.1
Architecture: iphoneos-arm64e
Maintainer: MTAC
Depends: mobilesubstrate, com.opa334.ccsupport
Filename: ./debfiles/com.mtac.uptime_1.0.1_iphoneos-arm64e.deb
Size: 25564
MD5sum: 0f92e141a16951b0f40d1cf4ea357153
SHA1: 7fda4ea790dacc1b4605cd6e09c7ed53f72df789
SHA256: 2c003d8ff380642aaaa82b12a7674f89e780707cda893095278f9e7338ab04f5
Section: Tweaks
Description: Control Center module to view time since boot
Author: MTAC
Name: Uptime
Package: com.opa334.altlist
Version: 1.0.10
Architecture: iphoneos-arm64
Maintainer: opa334
Installed-Size: 340
Depends: firmware (>=7.0)
Filename: ./debfiles/com.opa334.altlist_1.0.10_iphoneos-arm64.deb
Size: 27752
MD5sum: d56fbc22b9ed3f663fef1e48293efc1b
SHA1: 86a27b2fab4266e4394494310e33a1177c02bb47
SHA256: 83cb344b44fccb9187fc4bf75fa023df83ba1c24a768f4baf84c1d09daa6c9fe
Section: System
Description: A modern AppList alternative
Tag: role::developer
Author: opa334
Depiction: https://moreinfo.thebigboss.org/moreinfo/depiction.php?file=altlistDp
Name: AltList
Package: com.opa334.altlist
Version: 1.0.10
Architecture: iphoneos-arm
Maintainer: opa334
Installed-Size: 388
Depends: firmware (>=7.0)
Filename: ./debfiles/com.opa334.altlist_1.0.10_iphoneos-arm.deb
Size: 46768
MD5sum: 1667c6554431e6b6e5ef6af26bc70123
SHA1: 414c8470bed7b498d60cf5ebb7228baacad2317f
SHA256: d621b52c6180ada141b31cdc4389faed1ee8059c0961395a512779ee5f8d9f02
Section: System
Description: A modern AppList alternative
Tag: role::developer
Author: opa334
Depiction: https://moreinfo.thebigboss.org/moreinfo/depiction.php?file=altlistDp
Name: AltList
Package: com.opa334.altlist
Version: 1.0.10-3
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 340
Depends: firmware (>=7.0)
Filename: ./debfiles/com.opa334.altlist_1.0.10-3_iphoneos-arm64e.deb
Size: 29424
MD5sum: b335ef8fe1422cb70242a20c812fba29
SHA1: a2d6b12800650902759da5f8fe57513fc82a8c86
SHA256: 51dc382a266eba8ce2fbec2fa482541dd84968aae17f0dce9a868730c4725d6c
Section: System
Description: A modern AppList alternative
Tag: role::developer
Author: opa334
Depiction: https://moreinfo.thebigboss.org/moreinfo/depiction.php?file=altlistDp
Name: AltList
Package: com.opa334.altlist
Version: 1.0.11
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 340
Depends: firmware (>=7.0)
Filename: ./debfiles/com.opa334.altlist_1.0.11_iphoneos-arm64e.deb
Size: 27902
MD5sum: f1cfdb97679bc2b30b2918220ee9351f
SHA1: 9eef53971a1a30e13cfc2adf3a18b655dd2d9eb2
SHA256: 7d145977d3fbcd5030564dc429e18f7456c29f92020c36f32e61d4a82418f737
Section: System
Description: A modern AppList alternative
Tag: role::developer
Author: opa334
Depiction: https://moreinfo.thebigboss.org/moreinfo/depiction.php?file=altlistDp
Name: AltList
Package: com.opa334.ccsupport
Version: 1.3.10-2-2+debug
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 720
Depends: mobilesubstrate, firmware (>=11.0)
Conflicts: com.ioscreatix.silo
Replaces: com.ioscreatix.silo
Provides: com.ioscreatix.silo
Filename: ./debfiles/com.opa334.ccsupport_1.3.10-2-2+debug_iphoneos-arm64e.deb
Size: 78130
MD5sum: d117f9e600d0bf8e54591961e3800b86
SHA1: ad5556a31a2b9c01264b5b70a2937f7118c6f469
SHA256: 6763b47731fe68f5804c118d73f7ae84d1efbdab9784df2f748c7c1953772cd8
Section: Tweaks
Description: Support tweak for CC modules!
Author: opa334
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=ccsupportDp
Name: CCSupport
Package: com.opa334.ccsupport
Version: 1.3.13-2-15+debug
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 716
Depends: mobilesubstrate, firmware (>=11.0)
Conflicts: com.ioscreatix.silo
Replaces: com.ioscreatix.silo
Provides: com.ioscreatix.silo
Filename: ./debfiles/com.opa334.ccsupport_1.3.13-2-15+debug_iphoneos-arm64e.deb
Size: 78138
MD5sum: c08c9a3794e51d9d6ec64434f812b2ce
SHA1: 5be2c804015f0c45ec4661e1e833165972b4b312
SHA256: 51ff0060cb88235b1e098b8c5a550ed6280313ed29b42d5d4c809109b0e498bc
Section: Tweaks
Description: Support tweak for CC modules!
Author: opa334
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=ccsupportDp
Name: CCSupport
Package: com.opa334.choicy
Version: 1.4.10-3-2
Architecture: iphoneos-arm64e
Maintainer: opa334 <[email protected]>
Installed-Size: 884
Depends: mobilesubstrate, com.opa334.altlist (>=1.0.4), preferenceloader
Filename: ./debfiles/com.opa334.choicy_1.4.10-3-2_iphoneos-arm64e.deb
Size: 113144
MD5sum: 3f9928c2886fa4ca7cf928f2e2ed4396
SHA1: fc19df98cb191ff77d48c6f8c045e339897a364a
SHA256: af3c1b3bebcd68d57586f9bcfa9546617367ed5b990a70e70a1aafe5f1393d78
Section: Tweaks
Description: Advanced Tweak Configuration!
Author: opa334 <[email protected]>
Depiction: https://opa334.github.io/depic/Choicy/index.html
Name: Choicy
Package: com.opa334.choicy
Version: 1.4.10-7-2
Architecture: iphoneos-arm64e
Maintainer: opa334 <[email protected]>
Installed-Size: 900
Depends: mobilesubstrate, com.opa334.altlist (>=1.0.4), preferenceloader
Filename: ./debfiles/com.opa334.choicy_1.4.10-7-2_iphoneos-arm64e.deb
Size: 114378
MD5sum: 82d07862ca950f068ba2d3ded22c7066
SHA1: e0665b2725c9ba4bfd60d76771d90f6931c667e8
SHA256: 5b870e46ef4a1e68d2bd66cdbf018a9aaf6ccffb99433232b211aa7758ab57f6
Section: Tweaks
Description: Advanced Tweak Configuration!
Author: opa334 <[email protected]>
Depiction: https://opa334.github.io/depic/Choicy/index.html
Name: Choicy
Package: com.opa334.choicy
Version: 1.4.10.8
Architecture: iphoneos-arm64e
Maintainer: opa334 <[email protected]>
Installed-Size: 920
Depends: mobilesubstrate, com.opa334.altlist (>=1.0.4), preferenceloader
Filename: ./debfiles/com.opa334.choicy_1.4.10.8_iphoneos-arm64e.deb
Size: 112860
MD5sum: c627af5b3e248350161ed002b53b163b
SHA1: 2da18c9a93ce9a83030fcccceba3a3d8e2f1aa6e
SHA256: 431a295e7e273fb3aab3059de5508d292ab05b19e4a1d5e8a3e1536b9809a384
Section: Tweaks
Description: Advanced Tweak Configuration!
Author: opa334 <[email protected]>
Depiction: https://opa334.github.io/depic/Choicy/index.html
Name: Choicy
Package: com.opa334.choicy
Version: 1.4.10.9
Architecture: iphoneos-arm64e
Maintainer: opa334 <[email protected]>
Installed-Size: 920
Depends: mobilesubstrate, com.opa334.altlist (>=1.0.4), preferenceloader
Filename: ./debfiles/com.opa334.choicy_1.4.10.9_iphoneos-arm64e.deb
Size: 113344
MD5sum: cc2ecf7f1544e23faa30481d120cc6ce
SHA1: 3318ce057c60e0562bfefd79668d44dace952c2b
SHA256: 7d2af67d8de54633df9c8372c4a88ce15eb656da553946cc52af39fdf347f0c6
Section: Tweaks
Description: Advanced Tweak Configuration!
Author: opa334 <[email protected]>
Depiction: https://opa334.github.io/depic/Choicy/index.html
Name: Choicy
Package: com.opa334.libsandy
Version: 1.1.3-3-1+debug
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 416
Conflicts: ws.hbang.stopcrashingpls (<= 1.0.2)
Filename: ./debfiles/com.opa334.libsandy_1.1.3-3-1+debug_iphoneos-arm64e.deb
Size: 20950
MD5sum: 08232087924064f25bb55cf652bb308e
SHA1: 2ac0b33ba74db5ae9108b705c6329b66241179fb
SHA256: 69f3dc5ab72ca278d24d65d54c73b583c03c81685dd6a651a94f0cacfed68b3f
Section: System
Description: Securely extend the sandbox of system processes and user applications
Tag: role::developer
Author: opa334
Depiction: https://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libsandyDp
Name: libSandy
Package: com.opa334.libundirect
Version: 1.1.5-2+debug
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 204
Filename: ./debfiles/com.opa334.libundirect_1.1.5-2+debug_iphoneos-arm64e.deb
Size: 11114
MD5sum: feec7e2bf76c5cdf6c3d8d7a15885a18
SHA1: b9b3a7e727a69cecb02c80f5b039a4f463eec7d5
SHA256: dd1c16e6d946bf7bb0c4bef8ae2ec0962980992f0492f550a4bcf9be0344fffb
Section: System
Description: Patchfinder and rebinder for objc_direct methods
Tag: role::developer
Author: opa334
Name: libundirect
Package: com.opa334.notrecording
Version: 1.1.1-2+debug
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 368
Depends: mobilesubstrate, preferenceloader, com.opa334.altlist
Filename: ./debfiles/com.opa334.notrecording_1.1.1-2+debug_iphoneos-arm64e.deb
Size: 20462
MD5sum: 78a594c86101dfe9b889413ded8deb83
SHA1: 8257d43bb2e955c94a87734713edecebe1de22b8
SHA256: f9282ca9e40ffae437b64289cf2f327e55cfdb545feb85bbe8f67fa6ab78c000
Section: Tweaks
Description: Spoof screen recording detection!
Author: opa334
Name: NotRecording
Package: com.opa334.whitepointmodule
Version: 1.2.2-1+debug
Architecture: iphoneos-arm64e
Maintainer: opa334
Installed-Size: 248
Depends: mobilesubstrate, com.opa334.ccsupport, firmware (>= 11.0)
Filename: ./debfiles/com.opa334.whitepointmodule_1.2.2-1+debug_iphoneos-arm64e.deb
Size: 19730
MD5sum: 535d5df022619e60550a2fa29c01648f
SHA1: 5b06f7055a2b615a797ff5d4e2a34a1243d6b7e6
SHA256: 92bd44b38f465546af482369ddfb07a763a91a60e360b630e88043c99b2a49c0
Section: Control Center (Modules)
Description: Reduce White Point from Control Center!
Author: opa334
Depiction: https://opa334.github.io/depic/WhitePointModule/index.html
Icon: https://opa334.github.io/depic/WhitePointModule/Resources/icon.png
Name: White Point Module
Sileodepiction: https://opa334.github.io/depic/WhitePointModule/sileo.json
Package: com.p2kdev.underdock
Version: 1.0
Architecture: iphoneos-arm64e
Maintainer: P2KDev <[email protected]>
Depends: mobilesubstrate
Conflicts: com.restiveconch.actionbar,com.udevs.dockx
Filename: ./debfiles/com.p2kdev.underdock_1.0_iphoneos-arm64e.deb
Size: 18484
MD5sum: 6e39d43da601d790e198707736d7fe47
SHA1: 11ccc0ce102fa86e305281f056f4fe61685ce7f4
SHA256: 4276cc620733ca9fab1a82968f41ab7e3ce05a74a82f7d48cb1f6213661170ec
Section: Tweaks
Description: Useful actions on the Keyboard Dock View!
Author: P2KDev <[email protected]>
Name: UnderDock (NoSettings)
Package: com.pantsthief.flexing
Version: 1.5.0-11
Architecture: iphoneos-arm64e
Maintainer: Tanner Bennett <[email protected]>
Installed-Size: 168
Pre-Depends: firmware (>= 8.0)
Depends: libflex, mobilesubstrate
Conflicts: com.dgh0st.flexall, gg.gh0stbyte.flexivator, com.shmoopillic.flexible, applebetas.ios.tweak.devtools.flexgesture, com.creaturecoding.flexer, com.lacertosusrepo.flex4me, me.nepeta.flexxx, com.ipadkid.flexit, com.qiop1379.flexbar, com.leftyfl1p.reflex
Filename: ./debfiles/com.pantsthief.flexing_1.5.0-11_iphoneos-arm64e.deb
Size: 7516
MD5sum: cbfa6d82b5206687325d84a5ab47d910
SHA1: 9734058e7c82b56bd03b048c4ffbb4233191d442
SHA256: 2653bb5d24dc5a35124123c2ae49362993e6cc2851b0318fecec86145ed29cc5
Section: Tweaks
Description: Open FLEX anywhere!
Author: Tanner Bennett <[email protected]>
Name: FLEXing
Package: com.pantsthief.flexing
Version: 1.5.0-9+debug
Architecture: iphoneos-arm64e
Maintainer: Tanner Bennett <[email protected]>
Installed-Size: 164
Pre-Depends: firmware (>= 8.0)
Depends: libflex, mobilesubstrate
Conflicts: com.dgh0st.flexall, gg.gh0stbyte.flexivator, com.shmoopillic.flexible, applebetas.ios.tweak.devtools.flexgesture, com.creaturecoding.flexer, com.lacertosusrepo.flex4me, me.nepeta.flexxx, com.ipadkid.flexit, com.qiop1379.flexbar, com.leftyfl1p.reflex
Filename: ./debfiles/com.pantsthief.flexing_1.5.0-9+debug_iphoneos-arm64e.deb
Size: 13614
MD5sum: b150bf11cc4a0d77892176323fdc26e3
SHA1: cfc803db12a55889620af5ee6bca78246373043d
SHA256: 5653ce3afd4c9d44ab833585d5769459feda6c90e605f77d134e4571cfefaef0
Section: Tweaks
Description: Open FLEX anywhere!
Author: Tanner Bennett <[email protected]>
Depiction: https://nscake.github.io/package.html?package=com.pantsthief.flexing
Name: FLEXing
Sileodepiction: https://nscake.github.io/depictions/com.pantsthief.flexing.sileo.json
Package: com.ps.cconandoff
Version: 1.1.0
Architecture: iphoneos-arm64e
Maintainer: PoomSmart
Installed-Size: 156
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 11.0)
Conflicts: com.jakeashacks.realcc
Filename: ./debfiles/com.ps.cconandoff_1.1.0_iphoneos-arm64e.deb
Size: 7242
MD5sum: 3ec60f284ef1450271f4ab1ba1f029b5
SHA1: 97b021fae361e9a8ddbdf645d5901fa23999b871
SHA256: c6d45aab104e50e55eeb277f9599a2b544e68a8a1965e10a9c2c40f47f8eb35c
Section: Tweaks
Description: Toggle Wi-Fi and Bluetooth On/Off from Control Center (iOS 11+).
Author: PoomSmart
Depiction: https://poomsmart.github.io/repo/depictions/cconoff.html
Name: CC On & Off
Sileodepiction: https://poomsmart.github.io/repo/sileodepictions/cconoff.json
Package: com.roothide.manager
Version: 0.7-1+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 944
Depends: firmware (>= 15.0)
Filename: ./debfiles/com.roothide.manager_0.7-1+debug_iphoneos-arm64e.deb
Size: 739758
MD5sum: a4c71a349220de0ac277b7f2322a5e9f
SHA1: 2d6451dcf4b9eab2c7d265d8d4d7936e2ba10d17
SHA256: da333ea71c3c6f7cdf65a53957be08334bb62427c03ba310ba059aa166255a4c
Section: System
Description: Configuare RootHide's Features
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Name: RootHide Manager
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.manager
Version: 0.7-8+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 948
Depends: firmware (>= 15.0)
Filename: ./debfiles/com.roothide.manager_0.7-8+debug_iphoneos-arm64e.deb
Size: 740262
MD5sum: 6f9c0d86402d302f23d21577382719f3
SHA1: 7bbe6f9e7666b5242fc2274f31f9fa657b084652
SHA256: cd47e1c19e1f6d62988ad5360a68a6d2edacb891f77a6efaa3ad1ebd780765ca
Section: System
Description: Configuare RootHide's Features
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Name: RootHide Manager
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.manager
Version: 0.8-1+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 968
Depends: firmware (>= 15.0)
Filename: ./debfiles/com.roothide.manager_0.8-1+debug_iphoneos-arm64e.deb
Size: 744538
MD5sum: 025c4cfccf14eed4c5a2690f67f8d987
SHA1: c68c463f54a01a68b4608cab2ff5acf8603fe0cc
SHA256: a51d09925e95ed2675e8ecbb2c7f4ea327992f3e10bc0834bad138cbedef14ba
Section: System
Description: Configuare RootHide's Features
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Name: RootHide Manager
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.manager
Version: 0.9-1+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 968
Depends: firmware (>= 15.0)
Filename: ./debfiles/com.roothide.manager_0.9-1+debug_iphoneos-arm64e.deb
Size: 744876
MD5sum: f2ff28194dc2c76a205cf2b72a39155e
SHA1: acae234fd82d1fbead35e9d2f193d05e5f5dbe55
SHA256: 89e814e76b18774376638caa83e0d8ba67b469cbd92b8d3154194c8f7829bdfd
Section: System
Description: Configuare RootHide's Features
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Name: RootHide Manager
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.manager
Version: 1.0-2+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 972
Depends: firmware (>= 15.0)
Filename: ./debfiles/com.roothide.manager_1.0-2+debug_iphoneos-arm64e.deb
Size: 749302
MD5sum: 2b764222a228a71b1174d65d9b15a712
SHA1: 0c72fd76c73d1c2bdbac96ce0fdcac571abd6884
SHA256: 7c87f73b293453d4b2708f50549cf5495dc077ff36b2b34efeee8d033b72843d
Section: System
Description: Configuare RootHide's Features
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Name: RootHide Manager
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.manager
Version: 1.1
Architecture: iphoneos-arm64e
Maintainer: roothide
Installed-Size: 896
Depends: firmware (>= 15.0)
Filename: ./debfiles/com.roothide.manager_1.1_iphoneos-arm64e.deb
Size: 731594
MD5sum: 6d638cb99ca3cc789fd6ff4616ece7ef
SHA1: 0853511f29dbc8312a9d2236dff80935bb53d072
SHA256: 43d1dc6ab16d0976b643869591855f613208fe0d92e5386ff2d1c1f6c1667678
Section: System
Description: Configuare RootHide's Features
Author: roothide
Depiction: https://github.com/roothide/RootHideManagerApp
Name: RootHide Manager
Support: https://github.com/roothide/RootHideManagerApp
Package: com.roothide.patcher
Version: 1.4-2+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 3120
Depends: firmware (>= 15.0), odcctools, ldid, file, dpkg, gawk, plutil(>= 0.2.2-1), rsync
Filename: ./debfiles/com.roothide.patcher_1.4-2+debug_iphoneos-arm64e.deb
Size: 971084
MD5sum: 06fb8c26abc091811f296f5aeb766bc5
SHA1: 3c7ebfa13c73f941cec851c4ddc548c6e42270b0
SHA256: 6ca8f93ba227c32819413ca7c96fc5c5a5dda325caccc36d0c2c6a2caadf5bd9
Section: Utilities
Description: patch rootless package to roothide, not work for all packages.
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Icon: https://github.com/RootHide/RootHidePatcher/blob/master/derootifier-2-modified.png?raw=true
Name: RootHide Patcher
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.patcher
Version: 1.5-13+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 3120
Depends: firmware (>= 15.0), odcctools, ldid, file, dpkg, gawk, plutil(>= 0.2.2-1), rsync
Filename: ./debfiles/com.roothide.patcher_1.5-13+debug_iphoneos-arm64e.deb
Size: 971426
MD5sum: 6effd8348a44dec8ad6a8536d54580b2
SHA1: 83a2dc6c66e54ce7534d3507d2a78ac212b567e5
SHA256: 44bd9f398061746e2f44b4970ccab979b867f8dc474be6b73f081fe1517b501a
Section: Utilities
Description: patch rootless package to roothide, not work for all packages.
Author: RootHide
Depiction: https://github.com/RootHide/RootHideManagerApp
Icon: https://github.com/RootHide/RootHidePatcher/blob/master/derootifier-2-modified.png?raw=true
Name: RootHide Patcher
Support: https://github.com/RootHide/RootHideManagerApp
Package: com.roothide.patcher
Version: 1.6-2+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 3112
Depends: firmware (>= 15.0), odcctools, ldid, file, dpkg, gawk, plutil(>= 0.2.2-1), rsync
Filename: ./debfiles/com.roothide.patcher_1.6-2+debug_iphoneos-arm64e.deb
Size: 965626
MD5sum: 2c879b2c96182365c80862c875107f32
SHA1: 6cba0734b0abf86fd35fc6fab57e913269ea3b33
SHA256: 0948ba44f54d2fe68543c3f8729cd04451562844e12397eb59d37c42d8a98d88
Section: Utilities
Description: patch rootless package to roothide, not work for all packages.
Author: RootHide
Depiction: https://github.com/RootHide/RootHidePatcher
Icon: https://github.com/RootHide/RootHidePatcher/blob/master/derootifier-2-modified.png?raw=true
Name: RootHide Patcher
Support: https://github.com/RootHide/RootHidePatcher
Package: com.roothide.patcher
Version: 1.7-1+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 3124
Depends: firmware (>= 15.0), odcctools, ldid, file, dpkg, gawk, plutil(>= 0.2.2-1), rsync
Filename: ./debfiles/com.roothide.patcher_1.7-1+debug_iphoneos-arm64e.deb
Size: 967420
MD5sum: 031aa68657bf4551bd51375bf1fa6588
SHA1: d2548880c2c0d71c6c4a327d02d61bd55e474567
SHA256: 9ae3cfa913f9fb7ba79b1ada79eae6883ef16089430b987bbfcb9b8c46def4b3
Section: Utilities
Description: patch rootless package to roothide, not work for all packages.
Author: RootHide
Depiction: https://github.com/RootHide/RootHidePatcher
Icon: https://github.com/RootHide/RootHidePatcher/blob/master/derootifier-2-modified.png?raw=true
Name: RootHide Patcher
Support: https://github.com/RootHide/RootHidePatcher
Package: com.roothide.patcher
Version: 1.8-1+debug
Architecture: iphoneos-arm64e
Maintainer: RootHide
Installed-Size: 3124
Depends: firmware (>= 15.0), odcctools, ldid, file, dpkg, gawk, plutil(>= 0.2.2-1), rsync
Filename: ./debfiles/com.roothide.patcher_1.8-1+debug_iphoneos-arm64e.deb
Size: 967484
MD5sum: 6088d47da9b8dae8e1a95286d8e8509d
SHA1: 6f6a49ca86780667ce5f61109b616012ff1a55c9
SHA256: 8802c646ae7acf6245ea7857a1a1752839fd2927b3a6edd67d17ef878bc19b37
Section: Utilities
Description: patch rootless package to roothide, not work for all packages.
Author: RootHide
Depiction: https://github.com/RootHide/RootHidePatcher
Icon: https://github.com/RootHide/RootHidePatcher/blob/master/derootifier-2-modified.png?raw=true
Name: RootHide Patcher
Support: https://github.com/RootHide/RootHidePatcher
Package: com.roothide.patchloader
Version: 0.0.2-4+debug
Architecture: iphoneos-arm64e
Maintainer: roothide
Installed-Size: 148
Filename: ./debfiles/com.roothide.patchloader_0.0.2-4+debug_iphoneos-arm64e.deb
Size: 4312
MD5sum: 55ff9f67d3974074a3d921dd2e72a5fb
SHA1: 1db78e5bbd42bd9b2b894e2b776a1fb672867a1c
SHA256: 5c9962695e104bcb5c23abfd0ee51b0e245c33d12c73b9c8dd7a45534575be2d
Section: System
Description: RootHide Dynamic Patches Loader
Tag: role::developer
Author: roothide
Name: PatchLoader
Package: com.roothide.patchloader
Version: 0.0.4-1
Architecture: iphoneos-arm64e
Maintainer: roothide
Installed-Size: 148
Filename: ./debfiles/com.roothide.patchloader_0.0.4-1_iphoneos-arm64e.deb
Size: 3750
MD5sum: 5b375f9e0676e41765035a0ea299a2f2
SHA1: bc062ac345fc35bd9727deb9336efa975073c992
SHA256: 6944e1fd71de9a87371a63696f27a94dde9e95690b583bb852a33bfc56709b07
Section: System
Description: RootHide Dynamic Patches Loader
Tag: role::developer
Author: roothide
Name: PatchLoader
Package: com.roothide.patchloader
Version: 0.0.5-2
Architecture: iphoneos-arm64e
Maintainer: roothide
Installed-Size: 148
Filename: ./debfiles/com.roothide.patchloader_0.0.5-2_iphoneos-arm64e.deb
Size: 3778
MD5sum: 096a20bd2baa57b9e366d35f5f41477c
SHA1: 8e118c543539d011a0211015e397cb2edc0e62d4
SHA256: b96a931b39bc17709ed90985bf49d2d0af55829e1aca5b34f279052b987c5182
Section: System
Description: RootHide Dynamic Patches Loader
Tag: role::developer
Author: roothide
Name: PatchLoader
Package: com.roothide.patchloader
Version: 0.0.6-7
Architecture: iphoneos-arm64e
Maintainer: roothide
Installed-Size: 132
Filename: ./debfiles/com.roothide.patchloader_0.0.6-7_iphoneos-arm64e.deb
Size: 3550
MD5sum: 354403bb1669b034a7658c1d6d7beab3
SHA1: fc98a79217b73de2dc63fb070cbe5bd076684087
SHA256: 759d5a22a0f8d3d2bb9e95854cb7aacf2af5fb05233a4f4917efeee256659096
Section: System
Description: RootHide Dynamic Patches Loader
Tag: role::developer
Author: roothide
Name: PatchLoader
Package: com.simplycode.PostBox
Version: 0.8.1-4
Architecture: iphoneos-arm64e
Maintainer: PostBox Team <[email protected]>
Filename: ./debfiles/PostBox-0.8.1.deb
Size: 4089952
MD5sum: 389b434ee2152a6fae52182a1b9b23f2
SHA1: dcc845507acb8129a81bbe8139f4159e728655d5
SHA256: a54eeda08184bc0c02b08ab414041030f1856c1353874b660f997bb33a40a1a8
Section: Apps
Homepage: https://postbox.news
Description: News, package lists, and repo lists, all community centered.
Author: PostBox Team <[email protected]>
Depiction: https://postbox.news/depicts/app
Icon: https://postbox.news/depicts/app/icon.png
Name: PostBox
Sileodepiction: https://postbox.news/depicts/app/fancydeps.json
Package: com.tigisoftware.filza64bit
Version: 4.0.1-4~roothide
Architecture: iphoneos-arm64e
Maintainer: TIGI Software
Pre-Depends: patches-com.tigisoftware.filza64bit(= 4.0.1-4~roothide)
Recommends: zip, unzip, gzip, p7zip, unrar, xz-utils
Conflicts: com.tigisoftware.filza, com.tigisoftware.filza39
Filename: ./debfiles/com.tigisoftware.filza64bit_4.0.1-4_iphoneos-arm64e.deb
Size: 6972652
MD5sum: 6391c39283f2cc45dcecf101228d4e28
SHA1: 718d5c9bb34d0c749ca311e4917736804fe217ec
SHA256: 35be3aa392b06cd7ed53dd3aa05bf5c3ddaa126ee692b33fba67321fc6cec28d
Section: Utilities
Description: File Manager for iPhone, iPad, iPod Touch. Supports iOS 11+. This version only supports 64-bit devices
Author: TIGI Software
Name: Filza File Manager 64-bit
Package: com.yourcompany.paidtest
Version: 0.0.1-2+debug
Architecture: iphoneos-arm64e
Maintainer: admin
Installed-Size: 196
Filename: ./debfiles/com.yourcompany.paidtest_0.0.1-2+debug_iphoneos-arm64e.deb
Size: 4090
MD5sum: 49bb49ace19739c2f587c25415a56fa9
SHA1: 526fc155f564bba96df09d78daa91718fc9f89dd
SHA256: 58be5b680a5d5ca0491b9ac04740f5b15f77e4d45f6c5341c322500aa1de7dbe
Section: System
Description: An awesome tool of some sort!!
Tag: cydia::commercial
Author: admin
Name: paidtest
Package: com.yourepo.cydiageek.nodockground
Version: 1.0.6
Architecture: iphoneos-arm64e
Maintainer: CydiaGeek <[email protected]>
Depends: mobilesubstrate, preferenceloader
Filename: ./debfiles/NoDockGround.deb
Size: 65936
MD5sum: f5f189f09d898b02b5f7e18146858723
SHA1: 9a6f50be8ae8fd2601f2774da7a35004b7bc6cee
SHA256: 918daef565779a4bc0495c4b0fd4bae430b4f8f736ab55d76c38954e01d60645
Section: Tweaks
Description: Make Clear the Background of the Dock!
Author: CydiaGeek <[email protected]>
Depiction: https://cydiageek.yourepo.com/pack/nodockground
Name: NoDockGround
Sileodepiction: https://cydiageek.yourepo.com/sileo/depiction/nodockground
Package: dev.theos.orion14
Version: 1.0.1-2+debug
Architecture: iphoneos-arm64e
Maintainer: Theos Team <[email protected]>
Installed-Size: 1220
Depends: firmware (>= 14.0), firmware (<< 17.0), mobilesubstrate (>= 0.9.5000)
Provides: dev.theos.orion (= 1.0.1-2+debug)
Filename: ./debfiles/dev.theos.orion14_1.0.1-2+debug_iphoneos-arm64e.deb
Size: 181074
MD5sum: 91f8f4734aa92fa42c694de5b3a5325c
SHA1: c9affb318e7c69078dc10c21ae725b698fe96bce
SHA256: 34ee6ae68e80fb07bb3a1b55e9708fc56ed16e53dd8e193d812f26e2a18f15f9
Section: System
Description: Runtime for tweaks built using Orion and Swift
Tag: role::developer
Author: Theos Team <[email protected]>
Name: Orion (iOS 14-16)
Package: dev.theos.orion14
Version: 1.0.1-3+debug
Architecture: iphoneos-arm64e
Maintainer: Theos Team <[email protected]>
Installed-Size: 1220
Depends: firmware (>= 14.0), firmware (<< 18.0), mobilesubstrate (>= 0.9.5000)
Provides: dev.theos.orion (= 1.0.1-3+debug)
Filename: ./debfiles/dev.theos.orion14_1.0.1-3+debug_iphoneos-arm64e.deb
Size: 181106
MD5sum: 86b1f3a313d1d4f4bbf9aa50ce99c274
SHA1: 0fb7e6b04357773e9c9250c7156a5fdc1b96f4fd
SHA256: a2de49957df5c5211ffb7e522ee9e95c020c123979ff4faeb43c70e7c6607400
Section: System
Description: Runtime for tweaks built using Orion and Swift
Tag: role::developer
Author: Theos Team <[email protected]>
Name: Orion (iOS 14-17)