-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackages
3971 lines (3697 loc) · 150 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: xyz.cypwn.statusbar19
Maintainer: CyPwn
Architecture: iphoneos-arm
Version: 1.0
Name: StyleBar ثيم للستاتوس بار
Author: x.Sye
Description: Statusbar theme
Icon: https://repo.cypwn.xyz/assets/repo/Featured/sb19.png
Section: StatusBar (Themes)
Depictions: https://ak-47v.github.io/twex/
Filename: debs/xyz.cypwn.statusbar19_1.0_iphoneos-arm.deb
Package: libssh2
Priority: optional
Section: Development
Installed-Size: 608
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.8.0-2
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libssl1.0
Description: a client-side C library implementing the SSH2 protocol
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libssh2_1.8.0-2_iphoneos-arm.deb
Package: libnghttp2-14
Priority: standard
Section: Development
Installed-Size: 400
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.40.0-1
Pre-Depends: dpkg (>= 1.14.25-8)
Replaces: nghttp2, libnghttp2
Conflicts: nghttp2, libnghttp2
Provides: nghttp2, libnghttp2
Description: library implementing HTTP/2 protocol (shared library)
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libnghttp2-14_1.40.0-1_iphoneos-arm.deb
Package: git
Priority: optional
Section: Data_Storage
Installed-Size: 55432
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 2.20.0-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: curl, expat, libssl1.0
Description: fast content-addressable filesystem
Name: Git
Depictions: https://ak-47v.github.io/twex/
Filename: debs/git_2.20.0-1_iphoneos-arm.deb
Package: gettext
Priority: optional
Section: System
Installed-Size: 7592
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 0.19.8-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: ncurses
Description: internationalization helper for strings
Depictions: https://ak-47v.github.io/twex/
Filename: debs/gettext_0.19.8-1_iphoneos-arm.deb
Author: John Coates <[email protected]>
Maintainer: BigBoss <[email protected]>
Name: Flex 3لعمل باتشات للبرامج
Package: com.johncoates.Flex3
Depends: mobilesubstrate, firmware (>= 9.0), com.rpetrich.rocketbootstrap
Recommended: com.modmyi.libswift4 (>= 4.0.3)
Conflicts: Flexpackage, Flexpackagebeta, com.fuyuchi.flex, Flex2packagebeta, Flex2package, com.fuyuchi.flex2, Flex2Blackpackagebeta, Flex3, Flex3beta, flex3featurecatalog
Replaces: Flexpackage, Flexpackagebeta, com.fuyuchi.flex, Flex2packagebeta, Flex2package, com.fuyuchi.flex2, Flex2Blackpackagebeta, Flex3, Flex3beta, flex3featurecatalog
Section: Tweaks
Installed-Size: 57210
Version: 3~EarlyAccess4
Architecture: iphoneos-arm
Description: Develop your own tweaksإصنع باتش او اداة بنفسك
dev: acapulco1988
Tag: purpose::extension, compatible::ios9, compatible::ios10
Icon: file:///Applications/Flex.app/[email protected]
Depictions: https://ak-47v.github.io/twex/
Filename: debs/flex3_3-4.deb
Package: expat
Priority: standard
Section: Development
Installed-Size: 624
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Multi-Arch: foreign
Version: 2.2.5-1
Pre-Depends: dpkg (>= 1.14.25-8)
Description: stream-oriented XML parser written in C
Name: XML Parser Toolkit
Depictions: https://ak-47v.github.io/twex/
Filename: debs/expat_2.2.5-1_iphoneos-arm.deb
Package: curl
Priority: standard
Section: Networking
Installed-Size: 1896
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 7.65.0-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libnghttp2-14, libssh2, libssl1.0
Description: flexible multi-protocol file transfers
Name: cURL
Depictions: https://ak-47v.github.io/twex/
Filename: debs/curl_7.65.0-1_iphoneos-arm.deb
Name: GamersTouchثيم للستاتوس بار
Package: com.twickd.ray-delvalle.gamerstouch
Version: 0.3
Architecture: iphoneos-arm
Maintainer: Ray Delvalle <[email protected]>
Author: Ray Delvalle <[email protected]>
Section: StatusBar (Themes)
Depictions: https://ak-47v.github.io/twex/
Filename: debs/c8842cabad61e6b7302b422b0c832beb.deb
Package: org.mr.alizz
Name: Alizz Statusbarثيم للستاتوس بار
Author: JannikCrack
Description: The ultimate custom StatusBar Theme Pack
Maintainer: MainRepo
Version: 1.2.2
Section: StatusBar (Themes)
Architecture: iphoneos-arm
Icon: https://mainrepo.org/CydiaIcon.png
Depictions: https://ak-47v.github.io/twex/
Filename: debs/30.deb
Package: com.ra9stuff.LiNUZE
Name: LiNUZEلإرجاع إصدار الأجهزة عبر الأيفون
Version: 1.0
Architecture: iphoneos-arm
Description: Manage iOS devices using jailbroken iOS devices.التحكم بالأجهزة عبر الأيفون انزال الإصدار وغيره
Maintainer: rA9stuff
Author: rA9stuff
Section: Applications
Depends: firmware (>= 12.0), firmware (<< 16.0), libusbmuxd6, libusb-1.0-0, libirecovery3, libplist3, libimobiledevice6, usbmuxd, ldid
Icon: https://raw.githubusercontent.com/ra9labs/repo/main/Icons/LiNUZE_icon_120.png
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.ra9stuff.LiNUZE.deb
Package: am.ldid
Section: Utilities
Maintainer: TIGI Software <[email protected]>
Architecture: iphoneos-arm
Description: pseudo-codesign Mach-O files for Apps Manager. Built from ProcursusTeam/ldid
Name: ldid for Apps Manager
Author: Jay Freeman (saurik) <[email protected]>
Tag: purpose::console
Version: 2.1.5-2
Installed-Size: 4028
Depictions: https://ak-47v.github.io/twex/
Filename: debs/am.ldid_2.1.5-2_iphoneos-arm.deb
Package: com.christopher.everest
Name: Everestتأثير عند الضغط على الأيقونة
Architecture: iphoneos-arm
Description: App icon animationsتأثيرات عند الضغط على الأيقونات
Maintainer: Christopher Anderson
Author: Christopher Anderson
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000), ws.hbang.common (>= 1.17)
Version: 1.0.0
Installed-Size: 17276
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.christopher.everest_1.0.0_iphoneos-arm.deb
Package: com.galacticdev.isponsorblock
Name: iSponsorBlockحذف إعلانات اليوتيوب
Architecture: iphoneos-arm
Description: SponsorBlock For Youtube حذف إعلانات اليوتيوب
Maintainer: Galactic Dev
Author: Galactic Dev
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000), ws.hbang.alderis (>= 1.1)
Icon: https://raw.githubusercontent.com/ajayyy/SponsorBlock/master/public/icons/LogoSponsorBlocker64px.png
Version: 1.0-15
Installed-Size: 588
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.galacticdev.isponsorblock_1.0-15_iphoneos-arm.deb
Package: com.ichitaso.otadisabler
Name: OTADisablerتعطيل التحديثات للأيفون
Depends: firmware (>= 9.0), system-cmds, mobilesubstrate
Architecture: iphoneos-arm64
Description: Delete and disable OTA badgeتعطيل تحديثات الأيفون
Maintainer: ichitaso
Author: ichitaso
Section: Tweaks
Version: 0.3
Installed-Size: 200
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.ichitaso.otadisabler_0.3_iphoneos-arm.deb
Architecture: iphoneos-arm
Package: com.johnzaro.perfectcontrolcenter
Name: PerfectControlCenterالتعديل على مركز التحكم
Icon: https://johnzaro.github.io/cydia/assets/com.johnzaro.perfectcontrolcenter/icon.png
Description: Custom ControlCenter تعديل مظهر مركز التحكم
Section: Tweaks
Depends: firmware (>=13.0), mobilesubstrate, com.opa334.ccsupport, preferenceloader, ws.hbang.common (>= 1.14)
Tags: compatible_min::ios13.0, compatible_max::ios13.6
Author: Johnzaro <[email protected]>
Maintainer: Johnzaro <[email protected]>
Version: 1.6
Installed-Size: 1396
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.johnzaro.perfectcontrolcenter.deb
Package: com.rob311.sorrylowbattery
Name: SorryLowBatteryتزوير نسبة شحن الهاتف
Depends: mobilesubstrate, firmware (>= 7.0)
Description: Fake battery percentageتزوير نسبة شحن الهاتف
Maintainer: rob311 <[email protected]>
Author: rob311 <[email protected]>
Section: Tweaks
Architecture: iphoneos-arm64
Version: 1.6
Installed-Size: 1868
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.rob311.sorrylowbattery_1.6_iphoneos-arm64.deb
Package: com.sop.cachemagic
Name: Cache Magicإختصار لحذف مخلفات التطبيقات من مركز التحكم
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader
Description: Add a button to your Control Center to clear the cacheحذف مخلفات التطبيقات من مركز التحكم
Maintainer: SOPPPra
Author: SOPPPra
Section: Tweaks
Icon: https://i.postimg.cc/cJRLqR79/ss.png
Architecture: iphoneos-arm
Version: 1.3.1
Installed-Size: 180
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.sop.cachemagic_1.3.1_iphoneos-arm.deb
Package: com.sop.cpumagic
Name: Cpu Magicإضافة نسبةإستهلاك المعالج لمركز التحكم
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader
Description: Add cpu info to your control centerنسبة إستهلاك المعالج لمركز التحكم
Maintainer: SOPPPra
Author: SOPPPra
Section: Tweaks
Icon: https://i.postimg.cc/FzKLczmN/cpu.png
Sileodepiction: https://sopppra.mooo.com/depictions/com.sop.cpumagic.json
Architecture: iphoneos-arm
Version: 1.0
Installed-Size: 224
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.sop.cpumagic_1.0_iphoneos-arm.deb
Package: com.sop.killapps
Name: killappsلإغلاق التطبيقات دفعة واحدة
Description: Customize your app switcherإغلاق التطبيقات دفعة واحدة عبر السحب للأسفل
Maintainer: SOPPPra
Author: SOPPPra
Section: Tweaks
Depends: mobilesubstrate, ws.hbang.common (>= 1.11), preferenceloader, com.spark.libsparkapplist, com.mrgcgamer.libgcuniversal
Icon: https://i.postimg.cc/hGzV6VSP/icon.png
Architecture: iphoneos-arm
Version: 1.7.4
Installed-Size: 788
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.sop.killapps_1.7.4_iphoneos-arm.deb
Package: com.sop.memorymagic
Name: Memory Magic إظهار نسبة الذاكرة بمركز التحكم
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader
Description: Add ram info to your control centerإظهار الذاكرة بمركز التحكم
Maintainer: SOPPPra
Author: SOPPPra
Section: Tweaks
Icon: https://i.postimg.cc/bvXdPFnP/Zerode-Plump-Device-RAM-256.png
Architecture: iphoneos-arm
Version: 1.1.1
Installed-Size: 216
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.sop.memorymagic_1.1.1_iphoneos-arm.deb
Package: com.sop.networkmagic
Name: Network Magicإظهار سرعة التحميل والتنزيل بمركز التحكم
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader
Description: Display your current upload and download speeds in the Control Centerإظهار سرعة التحميل والتنزيل بمركز التحكم
Maintainer: SOPPPra
Author: SOPPPra
Section: Tweaks
Icon: https://i.postimg.cc/vTmZX3x4/nwicon.png
Architecture: iphoneos-arm
Version: 1.0
Installed-Size: 176
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.sop.networkmagic_1.0_iphoneos-arm.deb
Package: com.sop.settingsrevamp
Name: SettingsRevampللتعديل على مظهر الإعدادات
Description: Customize the ios settings pageتعديل على مظهر الإعدادات
Maintainer: SOPPPra
Author: SOPPPra
Section: Tweaks
Depends: mobilesubstrate, ws.hbang.common (>= 1.17), preferenceloader, com.mrgcgamer.libgcuniversal, firmware (>= 14)
Conflicts: com.creaturecoding.shuffle, com.trappledestek.ikset, pro.ikghd.iksettings, xyz.cypwn.settingswidgets, org.mr.settingswidgets, com.trappledestek.settingswidgets, com.shepgoba.settingswidgets
Icon: https://i.postimg.cc/ry1s499R/icon-3x.png
Architecture: iphoneos-arm
Version: 1.8.1
Installed-Size: 504
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.sop.settingsrevamp_1.8.1_iphoneos-arm.deb
Package: jp.akusio.backgrounderaction15
Name: BackgrounderAction15إختصار بمركز التحكم لإستمرار عمل التطبيق بالخلفيه
Depends: mobilesubstrate, com.opa334.ccsupport
Architecture: iphoneos-arm64
Description: [iOS15]Add "Toggle Background Mode"تمكين إستمرار التطبيقات بالخلفيه عبر مركز التحكم
Maintainer: @akusio_RR
Author: @akusio_RR
Section: Tweaks
Version: 0.1.0
Installed-Size: 340
Depictions: https://ak-47v.github.io/twex/
Filename: debs/jp.akusio.backgrounderaction15_0.1.0_iphoneos-arm64.deb
Name: libcolorpicker-nepeta
Package: me.nepeta.libcolorpicker
Priority: optional
Depends: firmware (>= 9.0)
Replaces: org.thebigboss.libcolorpicker
Provides: org.thebigboss.libcolorpicker
Conflicts: org.thebigboss.libcolorpicker
Version: 1.6.2-4
Architecture: iphoneos-arm
Description: libcolorpicker with arm64e (A12) support
Maintainer: BigBoss <[email protected]>
Author: Nepeta <[email protected]>
dev: pixelfiredev
Section: Development
Tag: purpose::library, role::developer, compatible::ios9, compatible::ios10, compatible::ios11, compatible::ios12, cydia::obsolete
Installed-Size: 629
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libcolorpickernepeta_1.6.2-4.deb
Package: libimobiledevice6
Priority: optional
Section: Development
Installed-Size: 432
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.3.1-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libssl1.1.1, libssl1.1.1, libplist3, libusbmuxd6
Description: Library for communicating with iPhone and other Apple devices
libimobiledevice is a library that talks the native Apple USB protocols
that the iPhone, iPad and iPod Touch use. Unlike other projects,
libimobiledevice does not depend on using any existing libraries from
Apple.
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libimobiledevice6_1.3.1-1_iphoneos-arm.deb
Package: libirecovery3
Priority: optional
Section: Development
Installed-Size: 200
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.1-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: readline, libusb-1.0-0
Description: The libirecovery library allows communication with iBoot/iBSS of iOS devices via USB - library
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libirecovery3_1.0.1-1_iphoneos-arm.deb
Package: libssl1.1.1
Priority: standard
Section: Security
Installed-Size: 16848
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.1.1n-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: ca-certificates
Description: OpenSSL Libraries for version 1.1.1
Name: OpenSSL 1.1.1 Libraries
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libssl1.1.1_1.1.1n-1_iphoneos-arm.deb
Package: libusb-1.0-0
Priority: optional
Section: Development
Installed-Size: 320
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.23-1
Pre-Depends: dpkg (>= 1.14.25-8)
Description: userspace USB programming library
Library for programming USB applications without the knowledge of Linux
kernel internals.
.
This package contains what you need to run programs that use this
library.
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libusb-1.0-0_1.0.23-1_iphoneos-arm.deb
Package: libusbmuxd6
Priority: standard
Section: Development
Installed-Size: 200
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 2.0.3-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libplist3, usbmuxd
Description: USB multiplexor daemon for iPhone and iPod Touch devices - library
usbmuxd, the USB multiplexor daemon, is in charge of coordinating
access to iPhone and iPod Touch services over USB. Synchronization and
management applications for the iPhone and iPod Touch need this daemon
to communicate with such devices concurrently.
.
This package contains the shared library.
Depictions: https://ak-47v.github.io/twex/
Filename: debs/libusbmuxd6_2.0.3-1_iphoneos-arm.deb
Package: me.luki.aestearevived
Name: Aestea Revivedتلوين الأزرار بمركزالتحكم
Architecture: iphoneos-arm
Description: Colorize your connectivity togglesتلوين أزرار مركز التحكم
Maintainer: Luki
Author: Luki
Section: Tweaks
Depends: mobilesubstrate, preferenceloader, firmware (>= 13), com.mrgcgamer.libgcuniversal
Icon: https://raw.githubusercontent.com/Luki120/AesteaRevived/main/Prefs/Resources/Assets/AesteaIcon.png
Version: 0.9.2
Installed-Size: 1660
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.luki.aestearevived_0.9.2_iphoneos-arm.deb
Package: net.cadoth.otaenabler
Name: OTAEnablerتفعيل التحديثات للأيفون
Depends: awk | gawk, com.bingner.plutil, file-cmds
Conflicts: com.apple.memecity, jp.akusio.kernbypass, jp.akusio.kernbypassbeta, jp.akusio.kernbypass-unofficial
Architecture: iphoneos-arm64
Description: Re-enable OTA software updatesتفعيل تحديثات الأيفون
Maintainer: alexia <[email protected]>
Author: alexia <[email protected]>
Section: Tweaks
Version: 0.4.2
Installed-Size: 0
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.cadoth.otaenabler_0.4.2_iphoneos-arm64.deb
Package: usbmuxd
Priority: standard
Section: Development
Installed-Size: 256
Maintainer: Sam Bingner <[email protected]>
Architecture: iphoneos-arm
Version: 1.1.2-1
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libimobiledevice6, libplist3, libusb-1.0-0
Description: USB multiplexor daemon for iPhone and iPod Touch devices
usbmuxd, the USB multiplexor daemon, is in charge of coordinating
access to iPhone and iPod Touch services over USB. Synchronization and
management applications for the iPhone and iPod Touch need this daemon
to communicate with such devices concurrently.
Depictions: https://ak-47v.github.io/twex/
Filename: debs/usbmuxd_1.1.2-1_iphoneos-arm.deb
Architecture: iphoneos-arm
Package: com.johnzaro.dateundertime13
Name: PerfectTimeإضافة التاريخ تحت الساعة
Icon: https://johnzaro.github.io/cydia/assets/com.johnzaro.dateundertime13/icon.png
Description: Adds second line in status barإضافة التاريخ تحت الساعة بالستاتوس بار
Section: Tweaks
Depends: firmware (>=13.0), mobilesubstrate, com.spark.libsparkapplist, com.spark.libsparkcolourpicker, preferenceloader, ws.hbang.common (>= 1.14)
Conflicts: com.mpg13.undertime, com.neinzedd9.dateundertimex, com.huchundong.weekrighttimex, com.huchundong.perfecttimex, com.yourepo.kingmehu.perfecttimexs
Tags: compatible_min::ios13.0
Author: Johnzaro <[email protected]>
Maintainer: Johnzaro <[email protected]>
Version: 2.0
Installed-Size: 656
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.johnzaro.dateundertime13.deb
Package: me.jjolano.fmwk.rootbridge
Name: RootBridge Framework
Depends: firmware (>= 8.0)
Architecture: iphoneos-arm64
Description: An iOS developer framework for rootless tweak development.
Maintainer: jjolano
Author: jjolano
Section: Development
Tag: role::developer
Version: 1.0.1
Installed-Size: 168
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.jjolano.fmwk.rootbridge_1.0.1_iphoneos-arm64.deb
Package: me.luki.stealthcc
Name: StealthCCتقليل ضبابية مركز التحكم
Architecture: iphoneos-arm
Description: Control the intensity of the stock CCتقليل ضبابية مركز التحكم
Maintainer: Luki
Author: Luki
Section: Tweaks
Depends: mobilesubstrate, preferenceloader
Version: 0.9.0
Installed-Size: 376
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.luki.stealthcc_0.9.0_iphoneos-arm.deb
Name: Iconerالتعديل على الأيقونات ومظهرها
Package: com.cydiageek.iconer
Priority: optional
Depends: mobilesubstrate, firmware (>= 13.0), preferenceloader, applist, org.thebigboss.libcolorpicker
Version: 1.0.2
Architecture: iphoneos-arm
Description: Custom Icons Selection/Colors/Features!التعديل على مظهر الأيقونات
Maintainer: BigBoss <[email protected]>
Author: CydiaGeek <[email protected]>
Section: Tweaks
Tag: purpose::extension
Installed-Size: 1523
dev: lucaluca86
Icon: file:///Library/PreferenceBundles/Iconer.bundle/[email protected]
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iconer_1.0.2.deb
Package: net.cadoth.nosbreload
Name: NoSBReloadإرجاع شكل الريسبرنق الإعتيادي
Architecture: iphoneos-arm
Description: Replace sbreload with traditional respring to fix autofill issues
Maintainer: alexia <[email protected]>
Author: alexia <[email protected]>
Section: XinaFix
Depends: firmware (<< 15.0)
Version: 0.1.1-1
Installed-Size: 68
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.cadoth.nosbreload_0.1.1-1_iphoneos-arm.deb
Package: com.miro.libphonenumber
Name: libPhoneNumber
Depends: firmware (>=12.0)
Architecture: iphoneos-arm
Description: Google's phone number handling library.
Maintainer: MiRO <[email protected]>
Author: MiRO <[email protected]>
Section: Development
Tag: role::developer, compatible_min::ios12, compatible_max::ios14
Version: 1.0
Installed-Size: 588
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.miro.libphonenumber_1.0_iphoneos-arm.deb
Package: dev.traurige.eneko
Name: Enekoتعيين فيديو خلفية لشاشة القفل
Depends: firmware (>= 14.0), mobilesubstrate, preferenceloader, com.mrgcgamer.libgcuniversal
Conflicts: love.litten.eneko
Architecture: iphoneos-arm
Description: Video wallpapers تعيين فيديو كخلفية لشاشة القفل
Maintainer: Traurige
Author: Traurige
Section: Tweaks
Version: 1.2
Installed-Size: 368
Depictions: https://ak-47v.github.io/twex/
Filename: debs/dev.traurige.eneko_1.2_iphoneos-arm.deb
Package: net.cadoth.noinappsafari
Name: NoInAppSafariتصفح المواقع عبر سفاري
Architecture: iphoneos-arm64
Description: Disable in-app browsersتصفح المواقع خارج التطبيق عبر سفاري
Maintainer: alexia <[email protected]>
Author: alexia <[email protected]>
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000)
Conflicts: in.net.mario.tweak.openurlprompt
Version: 0.1.2
Installed-Size: 120
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.cadoth.noinappsafari_0.1.2_iphoneos-arm64.deb
Package: twitter.nowesr1.rocketcrack
Name: Rocket Instagram Crack🛠كراك أداة
Author: nowesr1 <[email protected]>
Description: يتم تثبيتها بجانب النسخة الرسمية للأداة من سورس المطور - توجه الى اعدادات روكيت واختر upgrade ثم Restore Purchase --- use official Rocket from developer repo and this crack besides it , go to Rocket Settings- Upgrade- Restore Purchase
Depends: mobilesubstrate
Maintainer: nowesr1 <[email protected]>
Architecture: iphoneos-arm
Section: Cracks
Version: 1.0
Installed-Size: 280
Depictions: https://ak-47v.github.io/twex/
Filename: debs/RocketCrack_nowesr1.deb
Package: xyz.cypwn.yellowpagesx
Maintainer: CyPwn
Name: YellowPages Xمعرفة هوية المتصل
Depends: mobilesubstrate, preferenceloader, com.miro.libmiro (>= 1.0.19), com.miro.libmiroprefs (>= 1.0.2), ws.hbang.common (>= 1.17), com.miro.libphonenumber, xinaa15
Description: Know the caller ID before answeringمعرفة إسم المتصل قبل الرد على المكالمه
Architecture: iphoneos-arm
Author: MiRO
Section: Tweaks
Icon: https://repo.cypwn.xyz/assets/repo/Featured/yellowpages.png
Version: 1.0.8
Depictions: https://ak-47v.github.io/twex/
Filename: debs/xyz.cypwn.yellowpagesx_1.0.8_iphoneos-arm.deb
Name: ConfirmToSendالتأكيد قبل إرسال الرساله
Package: com.cydiageek.confirmtosend
Priority: optional
Depends: mobilesubstrate, firmware (>= 10.0), preferenceloader
Version: 1.1.5
Architecture: iphoneos-arm
Description: Show Confirmations Popupالتأكيد قبل إرسال الرساله
Maintainer: BigBoss <[email protected]>
Author: CydiaGeek <[email protected]>
Section: Tweaks
Tag: purpose::extension
Installed-Size: 844
dev: lucaluca86
Icon: file:///Library/PreferenceBundles/ConfirmToSend.bundle/[email protected]
Depictions: https://ak-47v.github.io/twex/
Filename: debs/confirmtosend_1.1.5.deb
Package: emt.paisseon.chocola
Name: Chocolaخلفية شاشة القفل فيديو
Architecture: iphoneos-arm
Description: Lightweight video wallpapersاختيار فيديو خلفية لشاشة القفل
Maintainer: Lilliana
Author: Lilliana
Section: Tweaks
Depends: firmware (>= 12.2), ws.hbang.common (>= 1.17), preferenceloader, com.mrgcgamer.libgcuniversal
Version: 1.2.3
Installed-Size: 492
Depictions: https://ak-47v.github.io/twex/
Filename: debs/emt.paisseon.chocola_1.2.3_iphoneos-arm.deb
Name: Gyrationتدوير الشاشة أي مكان
Package: com.cydiageek.gyration
Priority: optional
Depends: mobilesubstrate, firmware (>= 9.0), preferenceloader, applist
Version: 1.1.3
Architecture: iphoneos-arm
Description: Enable Rotation Over All the Appsتدوير الشاشة بأس مكان
Maintainer: BigBoss <[email protected]>
Author: CydiaGeek <[email protected]>
Section: Tweaks
Tag: purpose::extension
Installed-Size: 517
dev: lucaluca86
Icon: file:///Library/PreferenceBundles/Gyration.bundle/[email protected]
Depictions: https://ak-47v.github.io/twex/
Filename: debs/gyration_1.1.3.deb
Package: net.limneos.randomiconsflip
Name: Random Icon Flipتأثير عشوائي للأيقونات
Depends: mobilesubstrate, firmware (>= 4.0)
Architecture: iphoneos-arm
Description: Randomly Flips SB Iconsتأثير عشوائي للأيقونات
Maintainer: Elias Limneos
Author: Elias Limneos
Section: Tweaks
Version: 0.3-20
Installed-Size: 216
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.limneos.randomiconsflip_0.3-20_iphoneos-arm.deb
Package: xyz.cypwn.touchflowx
Maintainer: CyPwn
Name: TouchFlowإظهار اللمسات على الشاشة
Version: 1.0.6
Depends: mobilesubstrate, com.creaturesurvive.libcscolorpicker, xinaa15 | xyz.cypwn.xinaa15
Architecture: iphoneos-arm
Description: Show your touches for Xinaإظهار اللمسات على الشاشة
Author: CreatureSurvive
Section: Tweaks
Icon: https://repo.cypwn.xyz/assets/repo/Featured/touchflow.png
Depictions: https://ak-47v.github.io/twex/
Filename: debs/xyz.cypwn.touchflowx_1.0.6_iphoneos-arm.deb
Author: saurik, Cannathea <[email protected]>
Maintainer: BigBoss <[email protected]>
Name: Apple File Conduit 2 USBتصفح ملفات النظام عبر ال
Package: com.cannathea.afc2d-arm64
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: cy+cpu.arm64, mobilesubstrate, ldid, firmware (>= 11.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
Section: Tweaks
Version: 1.1.8-1
Architecture: iphoneos-arm
Description: Allow full file-system access over USBتصفح مافات النظام عبر
dev: cannathea
Tag: purpose::daemon
Installed-Size: 312
Depictions: https://ak-47v.github.io/twex/
Filename: debs/afc2kppless_1.1.8-1.deb
Package: com.ps.backupdfix
Name: IcloudBackUp FixXinaإصلاح النسخ الإحتياطي
Architecture: iphoneos-arm
Description: Fix backupd not working on Xina jailbreak.إصلاح النسخ الإحتياطي للأيكلاود
Maintainer: PoomSmart
Author: PoomSmart
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 15.0)
Version: 1.0.0
Installed-Size: 168
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.ps.backupdfix_1.0.0_iphoneos-arm.deb
Package: dev.traurige.libkitten
Version: 1.4
Section: System
Maintainer: Traurige
Depends: firmware (>= 12.0)
Conflicts: love.litten.libkitten
Provides: love.litten.libkitten (=1.3.3)
Architecture: iphoneos-arm
Installed-Size: 172
Name: libKitten
Author: Traurige
Tag: role::developer
Depictions: https://ak-47v.github.io/twex/
Filename: debs/dev.traurige.libkitten_1.4_iphoneos-arm.deb
Package: me.jjolano.fmwk.hookkit
Name: HookKit Framework
Depends: firmware (>= 5.0.0), me.jjolano.fmwk.modulous (>= 1.0.0), me.jjolano.fmwk.modulous (<< 2.0.0)
Architecture: iphoneos-arm
Description: An iOS developer framework for unified hooking methods.
Maintainer: jjolano
Author: jjolano
Section: Development
Tag: role::developer
Version: 1.0.15
Installed-Size: 172
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.jjolano.fmwk.hookkit_1.0.15_iphoneos-arm64.deb
Package: me.jjolano.fmwk.modulous
Name: Modulous Framework
Architecture: iphoneos-arm
Description: An iOS developer framework for modular software.
Maintainer: jjolano
Author: jjolano
Section: Development
Tag: role::developer
Version: 1.0.8
Installed-Size: 168
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.jjolano.fmwk.modulous_1.0.8_iphoneos-arm64.deb
Package: me.jjolano.hkmodule.dobby
Name: HookKit Module (Dobby)
Architecture: iphoneos-arm
Description: This module provides Dobby library support for HookKit Framework.
Maintainer: jjolano
Author: jjolano
Section: HookKit (Modules)
Version: 1.0.7
Installed-Size: 216
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.jjolano.hkmodule.dobby_1.0.7_iphoneos-arm64.deb
Package: me.jjolano.hkmodule.substrate
Name: HookKit Module (Cydia Substrate)
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: This module provides the Cydia Substrate API for HookKit Framework.
Maintainer: jjolano
Author: jjolano
Section: HookKit (Modules)
Version: 1.0.8
Installed-Size: 168
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.jjolano.hkmodule.substrate_1.0.8_iphoneos-arm64.deb
Package: net.limneos.answeringmachinex
Name: AnsweringMachine 15/16للرد على المكالمات برساله صوتيه
Depends: mobilesubstrate, preferenceloader, net.limneos.libbulletin (>= 0.1-158) , firmware (>= 11.0)
Conflicts: net.limneos.audiorecorder (<= 1.7-4)
Architecture: iphoneos-arm
Description: AnsweringMachine 15/16خيارات للرد على المكالمات
Maintainer: Elias Limneos <[email protected]>
Author: Elias Limneos <[email protected]>
Section: Tweaks
Version: 2.0-17
Installed-Size: 2464
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.limneos.answeringmachinex_2.0-17_iphoneos-arm.deb
Package: net.limneos.aquaboardx
Name: AquaBoard 15/16تأثير مائي للشاشة
Depends: mobilesubstrate, preferenceloader
Conflicts: net.limneos.aquaboard, net.limneos.aquaboard8, com.fuyuchi.unlockize
Icon: file:///Library/PreferenceBundles/AquaPrefs.bundle/[email protected]
Architecture: iphoneos-arm
Description: Amazing Water Effects On SpringBoardتأثير مائي للشاشة
Maintainer: Elias Limneos <[email protected]>
Author: Elias Limneos <[email protected]>
Section: Tweaks
MainLibMD5: b1e897a436e6c4d18932218b11e34fb8
Version: 2.0-58
Installed-Size: 768
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.limneos.aquaboardx_2.0-58_iphoneos-arm.deb
Package: net.limneos.autoanswerx
Name: AutoAnswer 15الرد التلقائي للمكالمات
Architecture: iphoneos-arm
Description: Auto-answer any calls!الرد التلقائي للمكالمات
Icon: file:///Library/PreferenceBundles/AutoAnswer.bundle/[email protected]
Depends: mobilesubstrate, preferenceloader
Maintainer: Elias Limneos <[email protected]>
Author: Elias Limneos <[email protected]>
Section: Tweaks
MainLibMD5: 70d90fe28fd229135a234be1f4063872
Version: 0.2-67
Installed-Size: 768
Depictions: https://ak-47v.github.io/twex/
Filename: debs/net.limneos.autoanswerx_0.2-67_iphoneos-arm.deb
Package: com.mtac.uptime
Name: Uptimeإظهار زمن تفعيل الجلبريك بمركز التحكم
Architecture: iphoneos-arm
Description: Control Center module Bootإظهار زمن تفعيل الجلبريك
Maintainer: MTAC
Author: MTAC
Section: Tweaks
Depends: mobilesubstrate (>= 0.9.5000), com.opa334.ccsupport
Version: 1.0.1
Installed-Size: 192
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.mtac.uptime_1.0.1_iphoneos-arm.deb
Name: DenyPhotoAlbumsإخفاء ألبومات الصور
Package: com.cydiageek.denyphotoalbums
Priority: optional
Depends: mobilesubstrate, firmware (>= 10.0), preferenceloader
Version: 1.1.9
Architecture: iphoneos-arm
Description: Hide Needless Photo Albumsإخفاء ألبومات الصور
Maintainer: BigBoss <[email protected]>
Author: CydiaGeek <[email protected]>
Section: Tweaks
Tag: purpose::extension
Installed-Size: 541
dev: lucaluca86
Icon: file:///Library/PreferenceBundles/DenyPhotoAlbums.bundle/[email protected]
Depictions: https://ak-47v.github.io/twex/
Filename: debs/denyphotoalbums_1.1.9.deb
Package: me.jjolano.hkmodule.fishhook
Name: HookKit Module (fishhook)
Architecture: iphoneos-arm
Description: This module provides fishhook library support for HookKit Framework.
Maintainer: jjolano
Author: jjolano
Section: HookKit (Modules)
Version: 1.0.8
Installed-Size: 172
Depictions: https://ak-47v.github.io/twex/
Filename: debs/me.jjolano.hkmodule.fishhook_1.0.8_iphoneos-arm64.deb
Package: xyz.cypwn.genesisx
Maintainer: CyPwn
Name: Genesis Xinaللتعديل على مظهر الجهاز
Version: 99.01
Section: Tweaks
Architecture: iphoneos-arm
Depends: mobilesubstrate, preferenceloader, firmware (>=15.0), firmware (<=15.1.1), ws.hbang.common (>=1.16), xyz.itznebbs.libnebbs (>=1.5.3), com.spark.libsparkapplist, org.thebigboss.libcolorpicker, com.peterdev.libpddokdo, love.litten.libkitten | xyz.cypwn.libkitten, com.smokin1337.ldrestarthelper, xinaa15 | xyz.cypwn.xinaa15
Conflicts: xyz.tylerd3v.genesis, xyz.tylerd3v.genesis13, xyz.itznebbs.genesis2, xyz.itznebbs.genesis3
Author: ItzNebbs
Description: All-in-One tweak for Xinaاداة للتعديل على مظهر الجهاز
Icon: https://repo.cypwn.xyz/assets/repo/Featured/genesisx.png
Depictions: https://ak-47v.github.io/twex/
Filename: debs/xyz.cypwn.genesisx_99.01_iphoneos-arm.deb
Package: com.rpgfarm.a-font
Name: A-Fontتغير الخط للجهاز
Depends: mobilesubstrate, preferenceloader
Architecture: iphoneos-arm
Description: Change your font!تغيير الخطوط
Maintainer: Baw Appie <[email protected]>
Author: Baw Appie <[email protected]>
Section: Tweaks
Version: 1.9.6
Installed-Size: 2380
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.rpgfarm.a-font.deb
Package: com.rpgfarm.a-shields
Name: A-Shieldsحماية التطبيقات ببصمة الوجه
Depends: mobilesubstrate, org.thebigboss.libcolorpicker (>=1.6.7), com.rpetrich.rocketbootstrap (>= 1.0.7~beta3)
Architecture: iphoneos-arm
Description: Protect your deviceحماية التطبيقات بالبصمة
Maintainer: Baw Appie <[email protected]>
Author: Baw Appie <[email protected]>
Section: Tweaks
Version: 1.6
Installed-Size: 404
Depictions: https://ak-47v.github.io/twex/
Filename: debs/com.rpgfarm.a-shields.deb
Package: iOSGods.com.Asphalt9
Name: Asphalt 9 Legends Cheats⭐️هاك لعبة
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: Asphalt 9: Legends iGMM Cheats هاك لعبة أسفلت 9
Maintainer: iOSGods.com
Author: 0xSUBZ3R0
Section: Games(Hack)
Homepage: https://iosgods.com
Version: 1.1.1.1-3.9.0+iOSGods.com
Installed-Size: 6328
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iOSGods.com.Asphalt9_1.1.1.1-3.9.0+iOSGods.com_iphoneos-arm.deb
Package: iOSGods.com.CandyCrushSaga
Name: Candy Crush Saga Cheats⭐️هاك لعبة كاندي كراش
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: Candy Crush هاك لعبة كاندي كراش
Maintainer: iOSGods.com
Author: Laxus
Section: Games(Hack)
Homepage: https://iosgods.com
Version: 1.226.0.1
Installed-Size: 9984
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iOSGods.com.CandyCrushSaga_1.226.0.1_iphoneos-arm.deb
Package: iOSGods.com.DLS
Name: Dream League Soccer Hack⚽️هاك لعبة دريم ليج
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: Dream League Soccer 2021 iGMM Cheats هاك لعبة دريم ليج
Maintainer: iOSGods.com
Author: Zahir
Section: Games(Hack)
Homepage: https://iosgods.com
Version: 10.17+iOSGods.com
Installed-Size: 6328
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iOSGods.com.DLS_10.17iOSGods.com_iphoneos-arm.deb
Package: iOSGods.com.HomeScapes
Name: HomeScapes Cheats⭐️هاك لعبة
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: HomeScapes mod menu هاك لعبة الهروب
Maintainer: iOSGods.com
Author: Laxus
Section: Games(Hack)
Homepage: https://iosgods.com
Version: 6.0.3
Installed-Size: 10112
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iOSGods.com.HomeScapes_6.0.3_iphoneos-arm.deb
Package: iOSGods.com.KineMaster
Name: KineMaster Pro⭐️تفعيل ميزة البرو
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: KineMaster - Pro تفعيل البرو لبرنامج كاين ماستر
Maintainer: iOSGods.com
Author: Laxus
Section: Apps(Hack)
Homepage: https://iosgods.com
Version: 5.1.1
Installed-Size: 10112
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iOSGods.com.KineMaster_5.1.1_iphoneos-arm.deb
Package: iOSGods.com.LastDayonEarth
Name: Last Day on Earth Hack⭐️هاك لعبة
Depends: mobilesubstrate
Architecture: iphoneos-arm
Description: Last Day on Earth هاك لعبة أخر يوم على الأرض
Maintainer: iOSGods.com
Author: Zahir
Section: Games(Hack)
Homepage: https://iosgods.com
Version: 1.20.3+iOSGods.com
Installed-Size: 6392
Depictions: https://ak-47v.github.io/twex/
Filename: debs/iOSGods.com.LastDayonEarth_1.20.3+iOSGods.com_iphoneos-arm.deb
Package: iOSGods.com.SG
Name: Six-Guns Cheats⭐️هاك لعبة