forked from quannadev/fixme.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Packages
4894 lines (4644 loc) · 198 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: git.shin.3dtools
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.5
Depends: mobilesubstrate
Conflicts: me.pulandres.appaze
Filename: ./debs/3dtools.deb
Size: 1205188
MD5sum: c0eddaaf6fba2f8b68dd235fb96fe59e
SHA1: ac92105d2db3950d23ee970ec5ab5ef47d2f6bf8
SHA256: 061bca3f7b590298925d2dbfb7ea82922db40d2def19daf1c98ed007e6d9f27d
Description: Add helpful tools to your 3D touch menu!
Name: 3DTools Cracked
Author: smokin1337 <[email protected]>
Icon: file:///Library/PreferenceBundles/3DTools.bundle/[email protected]
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.3dtools
Package: git.shin.lpm
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.1.3
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader, applist, ws.hbang.common
Filename: ./debs/RealLPM.deb
Size: 1877410
MD5sum: aef56a7f5fd7afc97281b09e2173de78
SHA1: eadb63a2e8267032e2cd309f9bd82c7501c49fee
SHA256: f8c7fc89c3be371f65fc9bdf16d951855e848cd28bba68129f29b817b023518f
Description: Save Your battery life
Name: RealLPM Cracked
Author: DylanDuff
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.lpm
Package: git.shin.a-font
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.7
Depends: mobilesubstrate, applist (>= 1.5.15~beta1)
Filename: ./debs/a-font.deb
Size: 825746
MD5sum: 42f76efadd528f8de8ff25374e120891
SHA1: 8c1ce79132c7159f7348bafdd34f056c409f3137
SHA256: f9e280b48613c0c6ecddff9d925533d41afcc6a616f0e4737f919e80e667e57e
Description: Install Font Family for your iPhone.
Name: A-Font
Author: Baw Appie <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.a-font
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.acehighsierra
Section: Themes
Maintainer: iAnas
Architecture: iphoneos-arm
Version: 5.1
Filename: ./debs/acesh.deb
Size: 12788868
MD5sum: b65a978d9df03e09df3962f84ec6f8e3
SHA1: 05d89124c3294de1372c77d8b1b1ee1bc2330fd9
SHA256: 8822f464d16f2011d788c06f300db03fde19c21b89e6df306f783cf1110b0fb2
Description: macOS Mojave for iOS
Name: Ace High Sierra
Author: iAnas
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.acehighsierra
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.acehsxi
Section: Themes
Maintainer: iAnas
Architecture: iphoneos-arm
Version: 5.1
Filename: ./debs/aceshxi.deb
Size: 12788888
MD5sum: 5b826eddfbcab485adfef4427eed5bfc
SHA1: 5e1b2119de4a427d1ee2e66310271addacba5245
SHA256: b4fa9e7f15976291e43b94f1b5fb4a9cd147b816f1e47a83f1d3c8b1de74fe94
Description: macOS Mojave for iOS
Name: Ace High Sierra XI
Author: iAnas
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.acehsxi
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.activatorvi
Section: Addons
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.0
Depends: mobilesubstrate, libactivator
Filename: ./debs/activatorvi.deb
Size: 9126
MD5sum: 7b5779f97879e238c92aebd1c9df037f
SHA1: cc7b19d89139152cbcdce75773dca55315edfb99
SHA256: 6aad1b92e3bb55c0b0bb59805b328193856a792ed2be48300278807fc35f07b8
Description: Add Vietnamese language for Activator
Name: Activator (vi)
Author: shin-dev
Icon: file:///Library/IconRepo/tienichbosung.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.activatorvi
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.chanqcytb
Priority: optional
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.7
Depends: firmware (>= 8.0)
Filename: ./debs/adblock-for-yt.deb
Size: 46612
MD5sum: 499a12243d7a757e37d0e783eb7de751
SHA1: 4a405ab90d9b412b71dc47c47aff5d34dec80f61
SHA256: ed778cbad7f9926afaf8d10f29b4a0d1a820d3372f1e1b5b19c1cc4ce917bb96
Description: Block ads for Youtube.
Name: Adblock for YouTube
Author: Majd Alfhaily
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.chanqcytb
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.adblockplus
Priority: optional
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.2.4
Filename: ./debs/adblockplus.deb
Size: 12756
MD5sum: 5302361bb228eb8f5dffab4172e28329
SHA1: 87bde383dc36f2b1e017a5a4775b632a62b8e9be
SHA256: 0e4b33a468087b7bf58567a17c8c312611e81ded6c5d49ec10ad291fadc7efe2
Description: Block ads for app++.
Name: AdBlock++
Author: ReJail
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.adblockplus
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.aerial
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.1
Depends: firmware (>= 9.0), mobilesubstrate (>= 0.9.6110), preferenceloader
Filename: ./debs/aerial.deb
Size: 872450
MD5sum: 763ceb6070efbf85277add2794b1709e
SHA1: bf9d789bed99572f0b22e8c2edbd8cab6f333857
SHA256: 5629b9979d318842e285bbb1151988fa7a6a031dcc1338d4899030a265f4cf4f
Description: Colour your status bar icons!
Name: Aerial
Author: Surenix <[email protected]>
dev: surenix
Tag: purpose::extension, compatible::ios9, compatible::ios10
Icon: file:///Library/PreferenceBundles/AerialSettings.bundle/[email protected]
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.aerial
Package: git.shin.aerial2
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.1
Depends: mobilesubstrate, preferenceloader
Filename: ./debs/aerial2.deb
Size: 903154
MD5sum: 80df6f27c3c51390b8e91698173bf1ef
SHA1: 9ca4f3e47f2a45e262b4c1c308434b462b8340d2
SHA256: 6bfffacc3a4a5f0a5a9f6663c4369b9712db9ced2d3aee5183bf2e7e3ac1ce04
Description: Colour Status Bar Icons
Name: Aerial 2
Author: PolyTweaks
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.aerial2
Package: git.shin.afaker
Section: Tools
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 2.0
Depends: firmware (>= 8.0), mobilesubstrate (>= 0.9.5000), preferenceloader, com.rpetrich.rocketbootstrap
Filename: ./debs/afaker.deb
Size: 70986
MD5sum: 8f13120f000df46941a61298199a9f26
SHA1: b2860fa9884be3b5341c64071dfc40ba39a40279
SHA256: 1eb0eda6d5271ba851ea581945775354cb6cb2644a41e5be5d1d3539bec28ea5
Description: fake carrier/battery; dialer passcode app launching
Name: AFaker
Author: shin-chan
Icon: file:///Library/PreferenceBundles/AFaker.bundle/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.afaker
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.alizz
Section: Designs (Statusbar)
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.2.2
Filename: ./debs/alizz.deb
Size: 540788
MD5sum: 015637e0321df86c71e758002a0e9a29
SHA1: 713a509822f1f05289fd9f1e8636d0ae5ea05f42
SHA256: 80c79346958229f2524a5955ac66c5f227076880de7bfbc5d9abf5088e82b8c2
Description: The ultimate custom StatusBar Theme Pack
Name: Alizz Statusbar
Author: JannikCrack
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.alizz
Package: git.shim.alkaline
Priority: extra
Section: Tweaks
Maintainer: Ben
Architecture: iphoneos-arm
Version: 1.6
Depends: firmware (>= 7.0), mobilesubstrate, preferenceloader
Filename: ./debs/alkasine.deb
Size: 1381224
MD5sum: b6f6c091834a2c43daa5dd61badf6c53
SHA1: 0618b60e1af6938b9b4310c44e4468a0d2e02f3a
SHA256: d0702df6eb274e30e28cf6a0d2352021ea82a0710c38210f556d655a47d7b072
Description: Themeable status bar battery replacement for iOS 7.
Name: Alkasine
Author: Ben software
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shim.alkaline
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.anemone
Priority: optional
Section: Tweaks
Installed-Size: 8112
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 2.1.8-2
Replaces: org.coolstar.themelib, anemoneteam.anemone, org.coolstar.classicdock, winterboard, org.coolstar.classicbadges, com.codethemed.iconbundles, com.idd.iconomatic
Provides: org.coolstar.themelib, anemoneteam.anemone, org.coolstar.classicdock, winterboard, org.coolstar.classicbadges, org.coolstar.customclock, com.codethemed.iconbundles, com.idd.iconomatic
Depends: firmware (>= 7.0), mobilesubstrate (>= 0.9.5000), com.rpetrich.rocketbootstrap, pincrush
Conflicts: org.coolstar.themelib, anemoneteam.anemone, winterboard, com.codethemed.iconbundles, com.idd.iconomatic
Filename: ./debs/anemone.deb
Size: 4038120
MD5sum: 52e6834903f7521a1571ce46e05de7d6
SHA1: aec906ef1dd47449ddef46edb4e5b8d42bf1dbf0
SHA256: 43dc401ca9380544ddb9555bb5cdc0d8bc7674df874b02610ec5f04a3237209e
Description: An awesome theme manager!
Name: Anemone
Author: AnemoneTeam
dev: anemonetheming
Tag: purpose::extension, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11
Icon: file:///Applications/Anemone.app/icon.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.anemone
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.animatoonpro
Section: Themes
Maintainer: Tykology <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.3
Depends: com.va2ron1.toonsy
Filename: ./debs/animatoon.deb
Size: 17971396
MD5sum: 394b02acba22dbb79ed4dcbbdd5f6126
SHA1: 4ce34af2c309995f92d3bd5c4cfe07068d7c81a3
SHA256: bdaa281371e2c4756dfc7683497165882b3ab7492aae142077057c565dc01c9d
Description: Awesome animated theme
Name: Animatoon PRO
Author: Tykology <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.animatoonpro
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.ants
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.0.4
Depends: mobilesubstrate, preferenceloader
Filename: ./debs/ants.deb
Size: 124618
MD5sum: 27f419b25d0b3781d2beac2f8bb9465f
SHA1: ab631bb58ac8edd332a42e1bf0b955365f2308bb
SHA256: a547a47ab82df5c9f32088d4a126ab031d7caa8ab49cbd4c3384b8a2e5179132
Description: A classic iOS tweak!
Name: Ants
Author: Spark
Icon: file:///Library/PreferenceBundles/AntsPrefs.bundle/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.ants
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.appcake4
Section: Utilities
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 4.96
Filename: ./debs/appcake4.deb
Size: 4609296
MD5sum: 977a2038bb9071ece0ce7507819f0bfb
SHA1: eda8d07d5f60a7bf17653168ebc3c86d003b56ab
SHA256: 708752f1e75f90601780d235b61f5d598bfbb63a4ade6385d8b9deeb1d7632ea
Description: AppCake 4 Legacy version.
Name: AppCake 4
Author: hotsjf <[email protected]>
Icon: file:///Applications/iPhoneCake.app/AppIcon57x57.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.appcake4
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.appcake5
Section: Utilities
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 5.6.0.2
Depends: mobilesubstrate
Pre-Depends: firmware (>= 7.0)
Filename: ./debs/appcake5.deb
Size: 10919084
MD5sum: 3482161655473072e81c261edfeb6688
SHA1: 9930c16b9010e5faa86519c36088267e66d3034c
SHA256: d2c132fe7c93828fbd87fab8e6f02dddb5394dc139fa2dfebb7b04016cf50b2f
Description: Appcake for iOS 10.3.x
Name: AppCake 5
Author: Mickael liang
Sponsor: nguyenthanh
Icon: file:///Applications/AppCake.app/icon57x57.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.appcake5
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.appcake6
Section: Utilities
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 6.1.3
Conflicts: cydia.net.angelxwind.appsyncunified
Filename: ./debs/appcake6.deb
Size: 20773908
MD5sum: 5f9978f6838adc62241f5fec81ff2349
SHA1: 4c86917486d740d4756b8a0dfb84713c23a5cde0
SHA256: a2a0a2d7135674a08030aac48b4161630a9787b09eb766997e2aa2fca6cdab1c
Description: Appcake for iOS11+
Name: AppCake 6
Author: hotsjf
Sponsor: nguyenthanh
Icon: file:///Applications/AppCake.app/icon57x57.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.appcake6
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.apphub
Priority: optional
Section: System
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0r-29
Depends: firmware (>= 7.0), mobilesubstrate
Filename: ./debs/apphub.deb
Size: 884276
MD5sum: 91ea548b8880b86543d7c9083d4a1301
SHA1: 9a7f2f79bd4694665860a9fbfd5d4c94eb4adb49
SHA256: 4f5cfc63ff6a4cba0575f82a3db3aee16ceb78442a5ab5800a7ca71284daf2c6
Description: Cydia is great but finding new packages can be tough. TweakHub can show you all available tweaks in Cydia land for the apps you have installed. Once installed go to the more tab of Cydia and click TweakHub. ***It now hooks the "Find Extensions for Applications" button on the Cydia main page***
Name: TweakHub for Cydia [BETA]
Author: Enea Gjoka
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.apphub
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.apppercent
Priority: optional
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 2.0.2
Depends: mobilesubstrate, firmware (>= 9.0), preferenceloader, net.limneos.libbulletin
Filename: ./debs/apppercent.deb
Size: 23018
MD5sum: dff84634fa1022c3fa312441d6b2d17d
SHA1: 7f3145186d39896f6ca0d8378c20d24e5c03ba31
SHA256: a8ad9203501b9da32f98a29c7f3f1fc03dffd0765dc7637c4ba13b025d9cb879
Description: Apps Installation in Percent (%) and Notification
Name: App Percent
Sponsor: nguyenthanh
Author: pxcex <[email protected]>
Tag: purpose::extension, compatible::ios9, compatible::ios10
dev: pxcex
Icon: file:///Library/PreferenceBundles/AppPercent.bundle/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.apppercent
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.aquaboard8
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 2.2-29k
Depends: mobilesubstrate (>= 0.9.5000), preferenceLoader (>= 2.2.2), firmware (>= 8.0)
Conflicts: net.limneos.aquaboard, com.fuyuchi.unlockize
Filename: ./debs/aquaboard8.deb
Size: 104386
MD5sum: d210bafdf3ebc9fb2c83a8353e537903
SHA1: f6091b8ae53bd3a8a47cf3f433cf78d1d81cb72a
SHA256: 65656365a3d9b1bb97c7efcca247c68db1e3d062f040328374a8ebc5c9a5690e
Description: Amazing Water Effects On SpringBoard
Name: AquaBoard (iOS 10/9/8) Cracked
Author: Elias Limneos
Icon: file:///Library/PreferenceBundles/AquaPrefs.bundle/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.aquaboard8
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.aqueous
Section: Themes (SpringBoard)
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.4
Depends: com.anemonetheming.anemone
Filename: ./debs/aqueous.deb
Size: 32844340
MD5sum: 750723272647ec0ca6210ad0c2f084a3
SHA1: d84ca8fb23f4c24ee3f5d3410fa8d1f5edb56da0
SHA256: 45287d0a1a6bc6ee7880903550c3e0b417be18245cf4958e04fcb18dbfa1fe0c
Description: A solution to all your problems.
Name: Aqueous
Author: Creasigner <[email protected]>
Sponsor: nguyenthanh
Tag: cydia::commercial, purpose::theme, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11
dev: creasigner
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.aqueous
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.audiorecorder2
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.9-2
Depends: mobilesubstrate, preferenceloader, com.rpetrich.rocketbootstrap, com.yourepo.mohadu31.limneosos, firmware (<= 12)
Conflicts: net.limneos.callrecorder, com.repo.xarold.com.callrecorder, mn.lii.lj
Filename: ./debs/audiorecoder2.deb
Size: 3907484
MD5sum: 247e8d313070f16e8afa170ad7649082
SHA1: ec93e51e9b98667898b670603a65fcc197345cac
SHA256: 416d1ab08a3184715862a421af9673d10798dd33b58409c5ca2901eb755539ce
Description: Record your calls!
Name: AudioRecorder 2 Cracked
Author: Elias Limneos
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.audiorecorder2
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.audiorecorderxs
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 3.0-78k
Replaces: net.limneos.audiorecorder, net.limneos.audiorecorderx, net.limneos.audiorecorderxs
Depends: mobilesubstrate, preferenceloader, firmware(>=12.0)
Conflicts: net.limneos.callrecorder
Filename: ./debs/audiorecoderxs.deb
Size: 8758322
MD5sum: 5221d40c7f172eef567234ffa66f0da6
SHA1: 02353ffbb2dda98e64fee7a9b9a52f4833360e29
SHA256: 2aff99776430f29fb3476810d19fad954735af2ed10e684a97f6568f7fc4ec70
Description: Most Advanced iOS Call Recorder Ever!
Name: AudioRecorder XS Cracked
Author: Elias Limneos
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.audiorecorderxs
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.aupm
Section: Packaging
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.0~beta1
Depends: dpkg, cydia
Filename: ./debs/aupm.deb
Size: 3349254
MD5sum: e41128ed38824ce820f5577a6a7f7020
SHA1: de875b0fa997aacecc3b4b00625bbcb7805d9025
SHA256: 17d306955985061381d01b6f7bb938c9a34e2051ed6188ef067b9151841e3d2b
Name: AUPM (BETA)
Author: Wilson Styres <[email protected]>
Sponsor: nguyenthanh
Tag: purpose::x
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.aupm
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.autolowpowermode
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 0.0.1-2+debug
Depends: mobilesubstrate
Filename: ./debs/autolowpowermode.deb
Size: 5392
MD5sum: ca38b00562ab83dd12ff439c11760cfb
SHA1: d1015e4a54e60de300fa88a621ad3a6ee705091f
SHA256: a686f3633c8389862d83c886fc0a6941ab284af0456405dc9ba252311fe6d0aa
Description: Automatically turn on Low Power Mode when device's battery is low.
Name: AutoLowPowerMode
Author: fidele007 <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.autolowpowermode
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.autoscroll
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 0.0.3
Depends: mobilesubstrate, ws.hbang.common, preferenceloader
Filename: ./debs/autoscroll.deb
Size: 34334
MD5sum: 5ad5d2da939c4edae1ca4d3dfdd11475
SHA1: 8290c56ccc7e50abc06565e925ca428c95e9d830
SHA256: d4737d5240ef1ddf4be26af4ec68e1dae515a1010edf3e5b926e9c307b2107fa
Description: Smart Auto Scroll & Faster Scrolling on all app.
Name: AutoScroll
Author: pxcex
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.autoscroll
Package: git.shin.autotouch8
Priority: optional
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 5.0.0
Depends: firmware (>= 8.0), mobilesubstrate, com.rpetrich.rocketbootstrap (>= 1.0.2)
Conflicts: com.repo.xarold.com.autotouch8, repo.biteyourapple.net.autotouch8, repo.biteyourapple.net.autotouch, com.hackyouriphone.autotouch8
Filename: ./debs/autotouch8.deb
Size: 11356128
MD5sum: 3099418d46eca9dca94cb03f68ffa5ab
SHA1: 6089f0203ded5e610d0ae2b4f23954f88794ebbb
SHA256: 0027f8276157ff28d67c8d636a45014e469c320777436f202e85dbcc510d2442
Description: Record and playback touch operations, play macro scripts automatically.
Name: AutoTouch Cracked
Sponsor: nguyenthanh1995.github.io <http://nguyenthanh1995.github.io>
Author: Kent Krantz <[email protected]>
Tag: purpose::extension, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11, compatible::ios12
dev: kentkrantz
Icon: file:///Applications/AutoTouch.app/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.autotouch8
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.backupaz3cmd
Section: System
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0
Depends: firmware (>= 10.0), coreutils-bin, dpkg, apt7, shell-cmds
Filename: ./debs/backupaz3cmd.deb
Size: 138386
MD5sum: 16c938408580939b51bc0f1b8f736135
SHA1: 054bba9d8bb8090e9e79aa1cf49df190ab9a90d3
SHA256: 6a7382b3e7d14eefefd0883bbad4a679d83e0571c45964b6ec4b9e4787528431
Description: A complete command line backup tool
Name: BackupAZ 3 Commmand Line Version (iOS 10 - 13)
Author: SynnyG <[email protected]>
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.backupaz3cmd
Package: git.shin.badgebar
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.7.3
Depends: mobilesubstrate, ws.hbang.common (>= 1.14), org.thebigboss.libcolorpicker
Filename: ./debs/badgebar.deb
Size: 390668
MD5sum: 0018232b41560bade9c9af9ddd7abca5
SHA1: f149ea47084f00b27fc7b3e486ead2ea1a513084
SHA256: fd45e6445976a4556c6909f7f7b762ed44bdfbad0058aa5a291930bcbfa9ccf8
Description: Change your ugly badge notification!
Name: BadgeBar
Author: JannikCrack
Icon: file:///Applications/Cydia.app/Sections/tinhchinh.png
Tag: purpose::extension, compatible_min::ios12.2, compatible_max::ios13.3
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.badgebar
Package: git.shin.badgebarvi
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 0.1
Depends: mobilesubstrate, git.shin.badgebar
Filename: ./debs/badgebarvi.deb
Size: 1868
MD5sum: 3881cefb6f19b3ca5156fe09b7ee421d
SHA1: ad35e7920126a101fec252e9aa64862b7073b590
SHA256: 26240841945105da1c06ca815ed5383be503d9c37f6f8382a3640df189a43f45
Description: Add Vietnamese for BadgeBar Tweak
Name: BadgeBar vi
Author: shin-chan
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.badgebarvi
Package: git.shin.ballast
Section: Tweaks
Installed-Size: 398
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 2.0.5~beta2
Depends: firmware (>=9.0), mobilesubstrate, com.chpwn.iconsupport, preferenceloader
Conflicts: com.broganminer.anchor
Filename: ./debs/ballast.deb
Size: 105704
MD5sum: 63791c778bc35bf4e5d1004b49f3c515
SHA1: fbe93fd73b9069d7bd1dcb98802e19ed77db4517
SHA256: 65a3d4f610b73fd3dda9bb16d34bf689148c3043b91882dfa7fbe13f391a4e87
Description: Keep your icons where you want them. Forked version of Anchor by Brogan Miner.
Name: Ballast
Author: tateu (Josh Harris) <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.ballast
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.barsxi
Section: System
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 0.0.3
Filename: ./debs/barsxi.deb
Size: 3415876
MD5sum: a1a5d97d20df3e57574bb102b349de5f
SHA1: 4169e27c9c9a337f7653b73c739469c5df66f620
SHA256: 886cf82a8d2c87c477b18404453a98ddb60f461d48a15e449b7f4045eb6ea5a0
Description: Signal Bars from iOS11
Name: BarsXI
Author: bboyheadman
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.barsxi
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.batchomatic
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 4.2
Depends: firmware (>= 11.0), mobilesubstrate, coreutils
Filename: ./debs/batchomatic.deb
Size: 100546
MD5sum: b21455d2d025daeab9b4556ecdea0cdb
SHA1: b7f00123a9544db88c97f2d657e1fb723c71c860
SHA256: d29046fac13c38a2d559eaaa3beb42c04592a46128fdd35f0c5be7350030eebb
Description: Batch install your tweaks, repos, saved .debs, tweak preferences, and hosts file!
Author: Capt Inc <[email protected]>
Name: Batchomatic
dev: captinc
Tag: compatible::ios11, compatible::ios12, compatible::ios13
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.batchomatic
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.batterylifeplugin
Section: Tweak
Maintainer: Nguyen Thanh <[email protected]>
Architecture: iphoneos-arm
Version: 1.7.0
Depends: firmware (>= 6.0), mobilesubstrate (>= 0.9.5000), preferenceloader, iokittools
Filename: ./debs/battLife-plugin.deb
Size: 210428
MD5sum: 8e958c81d413e6a217dcef9369f3bb09
SHA1: 984539d9fd4e31b108de91a69e81650a92c2ebfc
SHA256: e01a6c9907d1feffe334681d60edc8dc9c02909a37e55f5f2c50b506d2c5b134
Description: Plugin for BatteryLife iPA
Author: shin-chan
Name: BatteryLife Plugin
Tag: purpose::uikit, role::enduser, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11
Icon: file:///Applications/BatteryLife.app/AppIcon57x57.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.batterylifeplugin
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.batterylifeplugin
Section: Tweak
Maintainer: Nguyen Thanh <[email protected]>
Architecture: iphoneos-arm
Version: 1.7.0
Depends: firmware (>= 6.0), mobilesubstrate (>= 0.9.5000), preferenceloader, iokittools
Filename: ./debs/batterylifeplugin.deb
Size: 210424
MD5sum: 7e9a1604b068bb9c848344217c569b57
SHA1: 5e5d4db51a4fd3e7837172c61419889885f73a0e
SHA256: 5af045e6a1b6d49c1beb43908ddd82e12ecb4041e67643091a9e23d61d6d3e40
Description: Plugin for BatteryLife iPA
Author: shin-chan
Name: BatteryLife Plugin
Tag: purpose::uikit, role::enduser, compatible::ios7, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11
Icon: file:///Applications/BatteryLife.app/AppIcon57x57.png
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.batterylifeplugin
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.bettersettings
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 0.0.9
Depends: mobilesubstrate, com.laughingquoll.prefixui, com.muirey03.libimagepicker, com.creaturesurvive.libcscolorpicker, com.creaturecoding.libcspreferences, org.thebigboss.libcolorpicker
Filename: ./debs/bettersettings.deb
Size: 1952056
MD5sum: e771a31f3e53c683439730ced35cc508
SHA1: ac9edafc0961c60ad623f0bbf5b72e5cbe2667f1
SHA256: 59fab68b43b35b0af7159371f9d25adfc22c43caf10f16f1f20b6af955c396fc
Description: Settings your way
Name: BetterSettings
Author: midnightchips
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.bettersettings
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.bettersettings10
Section: Tweaks
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 0.0.1
Depends: mobilesubstrate, com.creaturesurvive.libcscolorpicker, com.creaturecoding.libcspreferences, org.thebigboss.libcolorpicker, firmware(<<11)
Filename: ./debs/bettersettings10.deb
Size: 118276
MD5sum: b60d7f04f50f68438d8b4260e56ad56c
SHA1: 2a06c6c6e1562ad9061a1b169dc9d0ebf6aaf165
SHA256: f3a694bed952810f2a1ff9cc355ce170cbc613df9deb30068a2f2bedbd63436d
Description: Settings your way
Name: BetterSettings10
Author: midnightchips
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.bettersettings10
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.blackie
Section: Themes
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.2
Depends: winterboard
Filename: ./debs/blackie.deb
Size: 14216684
MD5sum: 619024386144ed087fce19994d32a806
SHA1: cf02dab4eadae7cce3ba905a7233e20dea6bf57f
SHA256: be5586c9ecfe4eea802e84a6554cc169672f6d5c53a978db3bb671603bc24eb5
Description: Wanna taste the dark?
Name: Blackie
Author: Axel4
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.blackie
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.blackie2
Section: Themes
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.1
Filename: ./debs/blackie2.deb
Size: 10233102
MD5sum: 87e90266e81ff5849203fe7950479297
SHA1: 60ab2db88781c7ba60b58a5b8f3b1e6bb853d244
SHA256: ce014bff5d0f7a26dfec205c031f126d9620480711398b5850106862f61b88db
Description: Blackie 2
Name: Blackie 2
Author: Axel4
Sponsor: nguyenthanh
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.blackie2
Homepage: https://nguyenthanh1995.github.io/
Package: git.shin.bottomtoolbar
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.1.5
Depends: mobilesubstrate
Filename: ./debs/bottomtoolbar.deb
Size: 411530
MD5sum: 4a7c9406478c28e638036c0159a9d053
SHA1: 7eca39a9c179aa3f889507d270bffd9f8730e0c5
SHA256: c67f77670061944d2c96c926c8a2c7a292f7938dcff3e168d190f73a8695da56
Description: Control your devices within easy reach.
Name: BottomToolBar Cracked
Author: XCXiao
Icon: https://repo.packix.com/api/Packages/5d7da1d31bdd82001aaa3a63/icon/download?size=medium
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.bottomtoolbar
Package: git.shin.boxy2
Priority: extra
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 2.1.1
Depends: mobilesubstrate, preferenceloader, com.chpwn.iconsupport
Filename: ./debs/boxy2.deb
Size: 2670176
MD5sum: b8e1dbbbd1b8e9926939b92468003687
SHA1: 9877384ffea4b715f1226f5b97940b0bfe773dd9
SHA256: e156cb08033163803983646ec37d7ae3e0c821167c425c31f59ba9ef61697e2b
Description: Fully customize your icon layout!
Name: Boxy 2
Author: william_vab <[email protected]>
tag: cydia::commercial
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.boxy2
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.boxy3
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 3.6.2
Depends: mobilesubstrate, preferenceloader, com.chpwn.iconsupport
Conflicts: info.rpdev.betterfiveicondock, info.rpdev.betterfivecolumnhomescreen, net.r-ch.iconoclasm, ca.ndoizo.bolders
Filename: ./debs/boxy3.deb
Size: 2798976
MD5sum: d2fc539a894c3e2bdd437a2099345639
SHA1: 6076ea1f9340a2b4e50e9afc49b4d156e1b52748
SHA256: 0491d5afd32f3fac30fe792518a26fa9a0bdb5a788420af14b0a54989598b82c
Description: Modify your icons
Name: Boxy 3 (iOS 11 - 12) Cracked
Author: William Vabrinskas <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.boxy3
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.boxy4
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 4.0.4
Depends: mobilesubstrate, preferenceloader
Conflicts: info.rpdev.betterfiveicondock, info.rpdev.betterfivecolumnhomescreen, net.r-ch.iconoclasm, ca.ndoizo.bolders, com.irepo.boxy3
Filename: ./debs/boxy4.deb
Size: 2820452
MD5sum: 684a78f76637f53ea911d6b7e71eeb80
SHA1: 9d77801ddeab3a44317580d7ab5eea3c166d4146
SHA256: b8af267435c43483b7bf37589b752b4c2bf5c709d747e1f7288ba5c91b07dac4
Description: Fully customize your icon layout! Have you ever run into an issue with space in your SpringBoard or are you just bored with the default layout of icons? Well, Boxy can fix both of those issues. Your icon layout is fully customizable with the variety of options configurable in the settings pane. You can adjust how far each icon is from each edge of the screen and how far each icon is from one another. These combinations can provide some pretty cool layouts. If you aren't the creative type or don't want to be bothered with testing each setting, there are presets available for you to choose from. You can align you icons in the the top half of the screen or the bottom half or even the top corners of the screen. Anything is really possible.Boxy also allows for more space for Dashboard X widgets. You no longer have to compromise with which apps you want on the home page of your SpringBoard, you can now have all of them on the screen plus your favorite widgets! Use it however you like, if you find a use for it that I didn't mention please don't hesitate to contact me and let me know, I love hearing feedback about my tweaks. Boxy is fully compatible with all current devices!
Name: Boxy 4 (iOS 13)
Author: William Vabrinskas <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.boxy4
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.bytafont3
Section: System
Maintainer: nguyenthanh <[email protected]>
Architecture: iphoneos-arm
Version: 3.2
Depends: firmware (>= 9),unzip,mobilesubstrate,git.shin.bytafonttmnc
Filename: ./debs/bytafont3.deb
Size: 2003216
MD5sum: bd3598098c4198680659623a2af4e805
SHA1: 2f8c0d06c02874c82000632b87d749769fa1ba27
SHA256: 7b9f4d0d3548980a8bbaa7ff4e6fc3d3f005770630e3999fe41527b265625c02
Description: BytaFont 3 lets you apply fonts to your iDevice in few taps.
Name: BytaFont 3 for iOS10
Author: shin-chan <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.bytafont3
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.bytafonttmnc
Section: Tweaks
Installed-Size: 200
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 1.1.7
Depends: mobilesubstrate
Filename: ./debs/bytafonttmnc.deb
Size: 27732
MD5sum: edaf6c317338cfcab1527fb024ccf4c2
SHA1: c7287d597b945f2a4936b30c5bd3bf200d7e4498
SHA256: 85021cef7231dd0b3f0f3ee4a4b70ffb00058d4300c460b0ec60a8c454834d35
Description: BytaFont Tweak Mode substrate for BytaFont
Name: BytaFont Tweak Mode NC
Author: shin-chan <[email protected]>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.bytafonttmnc
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.cachewipe
Section: Addons
Maintainer: nguyenthanh
Architecture: iphoneos-arm
Version: 0.0~beta1
Depends: mobilesubstrate, com.a3tweaks.flipswitch
Filename: ./debs/cachewipe.deb
Size: 17190
MD5sum: 67d9479dc1201cd9919ea2ccb2ffdcec
SHA1: e6ee91d540927be97227eb58fdfcae77194648ae
SHA256: a425cf7cd8bdb375b396be79e183bb5f13df551f9c6c41788d86083866701ea3
Description: Apps Caches Switch
Name: CacheWipe
Author: julioverne
Icon: file:///Library/Switches/CacheWipe.bundle/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.cachewipe
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.callbar7
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.3-169
Depends: mobilesubstrate (>= 0.9.5100), firmware (>= 7.0), preferenceloader (>= 2.2.2), com.rpetrich.rocketbootstrap ( >= 1.0.4)
Conflicts: org.thebigboss.callbar, com.repo.xarold.com.callbar
Filename: ./debs/callbar7.deb
Size: 1397850
MD5sum: 75f863f971157b9e2ce15fb6e385c397
SHA1: eaf5b71860ba281e4ebdaaaede7e4e29da24892b
SHA256: 1729580ce06b51dd5d4ca7b93ec32224c41aa6b92188ecbc392a30dd90e3918d
Description: Don't let incoming calls interrupt you!
Name: CallBar (iOS 10/9/8/7)
Author: Elias Limneos & Josh Tucker
Icon: file:///Library/PreferenceBundles/CallBar.bundle/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.callbar7
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.calllogpro
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 11.0.1-beta-9
Depends: firmware(>= 8.0), mobilesubstrate, com.rpetrich.rocketbootstrap, com.pulandres.libiarrays
Filename: ./debs/calllogpro.deb
Size: 5593512
MD5sum: f2668d194fbf4e64da2d17dde8b00a89
SHA1: 41727fa2519076eb7588720c8b36b4baf5189de3
SHA256: b9285ae9a4c9fec67acc7cac43100bc4c599cccf05a78ac59fb52785efaa0ced
Description: Manage history and delete call records.
Name: CallLogPro (iOS 13/12/11/10/9/8) Cracked
Author: IArrays <[email protected]>
Icon: file:///Applications/CallLogPro.app/[email protected]
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.calllogpro
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Package: git.shin.carbonite
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.4
Depends: mobilesubstrate
Filename: ./debs/carbonite.deb
Size: 58620
MD5sum: 7acf72c7873f7e421bc8217febc09e16
SHA1: 9cff295f2754accebbae22c0579d6ade09c01823
SHA256: 3a9bf68d0befe3dd697a5ac277fafc91717552297246ef2ae1de5dfe8afc1d33
Description: Functionality added to the currently pointless Reachability window.
Name: Carbonite
Author: Antique <[email protected]>
Icon: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAB0VBMVEX/LVX/OmD/UHL/Wnr/Y4H/YX//UHH/PmP/L1f/PWL/dZD/pbb/09z/8/X//////v7/7vH/wc3/jKL/Vnb/Mln/eZL/xtH//f3/8vT/qbr/S27/iaD/6u7/u8j/3+X/rLz/N13/MFj/mq3/4eb/WXj/NVz/ws7//Pz/fpb/Nlz/zdb/dI7/vsr/aYb/+Pr/TW///f7/yNL/Llb/3OP/+fr/usf/co3/UnP/O2D/SWz/aob/pLb/7fD/d5H/f5f/tML/PWL/jaP/7PD/OF7/MVj/6Oz/VXX/5er/epP/cYz/8PP/xdD/x9L/n7H/bIj/QGT/6u7/wMz/g5r/Y4D/prf/9/j/L1b/5uv/w8
Tag: purpose::extension, compatible_min::ios12.2, compatible_max::ios13.3
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.carbonite
Package: git.shin.ccmodulespro
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.1.1
Depends: mobilesubstrate, firmware (>= 11.0), preferenceloader, com.opa334.ccsupport (>= 1.2.1), ws.hbang.common
Filename: ./debs/ccmodulespro.deb
Size: 327716
MD5sum: 6c2b7dfc9f464828865fe7d3c10986b2
SHA1: f665f45e70005cc11c1e02e7fafa04f36e313e51
SHA256: 96afd83a45718df1088d699630fee07ca99000ff04220643350788fd2ef6c8f4
Description: Increase the usability of your control center.
Name: CCModules Pro Cracked
Author: jailbreak365 <[email protected]>
Homepage: https://nguyenthanh1995.github.io/
Sponsor: nguyenthanh1995 <https://nguyenthanh1995.github.io>
Depiction: https://nguyenthanh1995.github.io/description.html?goto=git.shin.ccmodulespro
Package: git.shin.ccrecorder
Priority: optional
Section: Tweaks
Maintainer: nguyenthanh1995 <[email protected]>
Architecture: iphoneos-arm
Version: 1.0.2.2
Depends: firmware (>= 10.0), mobilesubstrate, preferenceloader
Filename: ./debs/ccrecorder.deb
Size: 131282