-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
sidecommunity.json
1151 lines (1151 loc) · 69.7 KB
/
sidecommunity.json
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
{
"name": "SideStore Team Picks",
"identifier": "com.sidestoreapps.community",
"sourceURL": "https://community-apps.sidestore.io/sidecommunity.json",
"iconURL": "https://i.imgur.com/JP0Fncv.png",
"userinfo": {},
"apps": [
{
"name": "PPSSPP",
"bundleIdentifier": "org.ppsspp.ppsspp",
"developerName": "Henrik Rydg\u00e5rd",
"version": "1.13.2",
"versionDate": "2022-09-18T23:59:49Z",
"versionDescription": "# v1.13.2\n\n",
"downloadURL": "https://github.com/QuarkSources/ppsspp-builder/releases/download/v1.13.2/PPSSPP_v1.13.2.ipa",
"localizedDescription": "PPSSPP can run your PSP games on your iPhone and iPad in full HD resolution. It can even upscale textures that would otherwise be too blurry as they were made for the small screen of the original PSP. Even on modern iPhones and iPads, you can often run at double the original resolution.",
"iconURL": "https://i.imgur.com/JP0Fncv.png",
"tintColor": "#21486b",
"size": 14509458,
"screenshotURLs": [
"https://i.imgur.com/CWl6GgH.png",
"https://i.imgur.com/SxmN1M0.png",
"https://i.imgur.com/sGWgR6z.png",
"https://i.imgur.com/AFKTdmZ.png"
],
"subtitle": "PlayStation Portable games on iOS.",
"absoluteVersion": "1.13.2",
"appID": "org.ppsspp.ppsspp",
"versions": [
{
"version": "1.13.2",
"date": "2022-09-18T23:59:49Z",
"downloadURL": "https://github.com/QuarkSources/ppsspp-builder/releases/download/v1.13.2/PPSSPP_v1.13.2.ipa",
"localizedDescription": "# v1.13.2\n\n",
"size": 14509458,
"absoluteVersion": "1.13.2"
}
]
},
{
"name": "RetroArch",
"bundleIdentifier": "com.libretro.RetroArchiOS11",
"developerName": "libretro",
"subtitle": "Cross-platform, sophisticated frontend for emulation.",
"version": "1.12.0",
"versionDate": "2022-10-17",
"versionDescription": "Many bug fixes and quality of life improvements. See full changelog for details: https://github.com/libretro/RetroArch/blob/master/CHANGES.md",
"downloadURL": "https://buildbot.libretro.com/stable/1.12.0/apple/ios-arm64/RetroArch.ipa",
"localizedDescription": "RetroArch is a frontend for a plethora of emulators. Almost every Retro console can be run using one of RetroArch's downloadable cores.\n\nThere are several ways to customize your experience by installing different themes, rearranging your touchscreen controls, and downloading game box art.\nRetroArch enables you to run classic games on a wide range of computers and consoles through its slick graphical interface. Settings are also unified so configuration is done once and for all.\n\nIn addition to this, you will soon be able to run original game discs (CDs) from RetroArch.\n\nRetroArch has advanced features like shaders, netplay, rewinding, next-frame response times, runahead, machine translation, blind accessibility features, and more!\n\nCheck out all of RetroArch's awesome features at our website: https://www.retroarch.com/",
"iconURL": "https://i.imgur.com/pqgVB0v.png",
"tintColor": "#000000",
"size": 435770036,
"screenshotURLs": [
"https://i.imgur.com/uv1x1c4.png",
"https://i.imgur.com/qJdyNl2.png",
"https://i.imgur.com/fijaR4n.png",
"https://i.imgur.com/B3J5zMB.png",
"https://i.imgur.com/4Mj77IY.png"
],
"versions": [
{
"version": "1.12.0",
"date": "2022-10-18",
"downloadURL": "https://buildbot.libretro.com/stable/1.12.0/apple/ios-arm64/RetroArch.ipa",
"localizedDescription": "Many bug fixes and quality of life improvements. See full changelog for details: https://github.com/libretro/RetroArch/blob/master/CHANGES.md",
"size": 255389680
},
{
"version": "1.9.0",
"date": "2020-08-07",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/RetroArch.ipa",
"localizedDescription": "Many bug fixes and quality of life improvements. See full changelog for details: https://github.com/libretro/RetroArch/blob/master/CHANGES.md",
"size": 255389680
}
],
"appID": "com.libretro.RetroArchiOS11"
},
{
"name": "Flappy Bird",
"bundleIdentifier": "org.brandonplank.flappybird",
"developerName": "Brandon Plank",
"subtitle": "A revival of the once popular game.",
"version": "4.3",
"versionDate": "2022-06-14T20:54:11Z",
"versionDescription": "# 4.3\n\n**Full Changelog**: https://github.com/crypticplank/flappybird/compare/4.2.0...4.3\r\n* Removed Leaderboard\r\n* Removed Accounts\r\n* Removed Anti-Cheat",
"downloadURL": "https://github.com/crypticplank/flappybird/releases/download/4.3/org.brandonplank.flappybird.ipa",
"localizedDescription": "This Flappy Bird is a revival of the original Flappy Bird by Dong Nguyen. There are a many new features to enhance gameplay as well!\n\n\u2022 Tap to flap\n\u2022 Avoid the hitting the pipes\n\u2022 Flap for infinity!",
"iconURL": "https://i.imgur.com/tIUJeSs.png",
"tintColor": "#49cc48",
"size": 2099365,
"screenshotURLs": [
"https://i.imgur.com/nIq1VVv.png",
"https://i.imgur.com/TZBdg7M.png",
"https://i.imgur.com/41u9JUh.png"
],
"absoluteVersion": "4.3",
"versions": [
{
"version": "4.3",
"date": "2022-06-14T20:54:11Z",
"downloadURL": "https://github.com/crypticplank/flappybird/releases/download/4.3/org.brandonplank.flappybird.ipa",
"localizedDescription": "# 4.3\n\n**Full Changelog**: https://github.com/crypticplank/flappybird/compare/4.2.0...4.3\r\n* Removed Leaderboard\r\n* Removed Accounts\r\n* Removed Anti-Cheat",
"size": 2099365,
"absoluteVersion": "4.3"
}
]
},
{
"bundleIdentifier": "app.ish.iSH",
"name": "iSH",
"developerName": "Theodore Dubois and contributors",
"iconURL": "https://ish.app/assets/icon-full.png",
"tintColor": "000000",
"subtitle": "Linux shell for iOS",
"localizedDescription": "iSH is a project to get a Linux shell environment running locally on your iOS device, using a usermode x86 emulator.",
"screenshotURLs": [
"https://ish.app/assets/front-iphone-full.png",
"https://user-images.githubusercontent.com/64176728/216813647-1f660131-b5fe-4951-b46b-44fcfad0c2f2.png"
],
"version": "iSH 1.3 (build 482)",
"versionDate": "2023-04-23T04:37:22+00:00",
"versionDescription": "New stuff:\r\n- iSH now supports custom themes\r\n- Preferences are now exposed via procfs\r\n- Some more app icon choices\r\n- Hyperlinks created by OSC 8 are underlined instead of invisible\r\n\r\nFixed bugs:\r\n- Forward SO_RCVTIMEO, SO_SNDTIMEO in setsockopts to support snac\r\n- Add about four dozen SIMD instructions to improve support for nodejs and Rust\r\n- Fix bottom keyboard inset for iPad, Stage Manager, and devices with no home button\r\n- Implement /proc/pid/task to fix recent versions of GDB\r\n- Fix VoiceOver focus stealing keyboard focus on iOS 15+\r\n- Resolve an issue with xadd causing git clones to hang\r\n- Trigger segfault on unaligned cmpxchg8b, which iSH does not support\r\n- Fix a race condition that causes some output to be lost\r\n- Fix toolbar button sizing",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/482/iSH.ipa",
"size": 4183791,
"versions": [
{
"version": "iSH 1.3 (build 482)",
"date": "2023-04-23T04:37:22+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/482/iSH.ipa",
"localizedDescription": "New stuff:\r\n- iSH now supports custom themes\r\n- Preferences are now exposed via procfs\r\n- Some more app icon choices\r\n- Hyperlinks created by OSC 8 are underlined instead of invisible\r\n\r\nFixed bugs:\r\n- Forward SO_RCVTIMEO, SO_SNDTIMEO in setsockopts to support snac\r\n- Add about four dozen SIMD instructions to improve support for nodejs and Rust\r\n- Fix bottom keyboard inset for iPad, Stage Manager, and devices with no home button\r\n- Implement /proc/pid/task to fix recent versions of GDB\r\n- Fix VoiceOver focus stealing keyboard focus on iOS 15+\r\n- Resolve an issue with xadd causing git clones to hang\r\n- Trigger segfault on unaligned cmpxchg8b, which iSH does not support\r\n- Fix a race condition that causes some output to be lost\r\n- Fix toolbar button sizing",
"size": 4183791
},
{
"version": "Build 484",
"date": "2023-04-23T10:05:03+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/484/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4225426
},
{
"version": "Build 483",
"date": "2023-04-23T06:07:57+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/483/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4225981
},
{
"version": "Build 482",
"date": "2023-04-23T04:37:22+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/482/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183791
},
{
"version": "Build 481",
"date": "2023-04-22T06:08:01+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/481/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183616
},
{
"version": "Build 480",
"date": "2023-04-21T06:08:02+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/480/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183618
},
{
"version": "Build 479",
"date": "2023-04-19T06:08:28+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/479/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183615
},
{
"version": "Build 478",
"date": "2023-04-14T06:08:22+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/478/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183062
},
{
"version": "Build 477",
"date": "2023-04-10T06:09:44+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/477/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183084
},
{
"version": "Build 476",
"date": "2023-04-07T06:08:10+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/476/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183193
},
{
"version": "Build 475",
"date": "2023-04-06T06:07:21+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/475/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183183
},
{
"version": "Build 474",
"date": "2023-04-01T06:07:15+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/474/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183196
},
{
"version": "Build 473",
"date": "2023-03-31T06:07:35+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/473/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183189
},
{
"version": "Build 472",
"date": "2023-03-30T06:07:34+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/472/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183201
},
{
"version": "Build 471",
"date": "2023-03-29T06:07:32+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/471/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183199
},
{
"version": "Build 470",
"date": "2023-03-27T06:07:58+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/470/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183201
},
{
"version": "Build 469",
"date": "2023-03-26T06:06:51+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/469/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183205
},
{
"version": "Build 468",
"date": "2023-03-25T06:07:28+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/468/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183183
},
{
"version": "Build 467",
"date": "2023-03-24T06:10:23+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/467/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183196
},
{
"version": "Build 466",
"date": "2023-03-23T06:07:10+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/466/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183189
},
{
"version": "Build 465",
"date": "2023-03-18T06:07:18+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/465/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183185
},
{
"version": "Build 454",
"date": "2023-02-16T06:07:30+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/454/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183985
},
{
"version": "Build 452",
"date": "2023-02-14T06:07:48+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/452/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4183981
},
{
"version": "Build 451",
"date": "2023-02-12T06:07:00+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/451/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4177809
},
{
"version": "Build 450",
"date": "2023-02-11T06:06:55+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/450/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4177826
},
{
"version": "Build 449",
"date": "2023-02-10T06:27:51+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/449/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4177822
},
{
"version": "Build 448",
"date": "2023-02-08T06:25:45+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/448/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4177813
},
{
"version": "Build 447",
"date": "2023-02-03T06:07:41+00:00",
"downloadURL": "https://github.com/ish-app/ish/releases/download/builds/447/iSH.ipa",
"localizedDescription": "Automated daily build",
"size": 4177818
}
],
"appID": "app.ish.iSH"
},
{
"name": "iNDS",
"bundleIdentifier": "net.nerd.iNDS",
"developerName": "iNDS Team",
"subtitle": "Revival of the Nintendo DS emulator for iOS.",
"version": "1.10.8",
"versionDate": "2021-03-01T22:39:20Z",
"versionDescription": "Version 1.10.8 fixes the cover art system, thus closing #190. ~~There also appears to be an issue with the previous Cydia release being corrupted, so hopefully, that is fixed in this version.~~\r\n\r\n**Full Changelog**\r\n- Fixed cover art system (#203). Thanks, @unlmtd.\r\n- Fixed compilation errors (#191). Thanks, @jdkula.",
"downloadURL": "https://github.com/iNDS-Team/iNDS/releases/download/v1.10.8/iNDS.ipa",
"localizedDescription": "iNDS is a derivation of the previous Nintendo DS emulator apps for iOS: nds4ios and Nitrogen. The iNDS Team release of iNDS is a fork of the original iNDS emulator by William Cobb. The iNDS Team aims to create a version that is driven by support from the community, adding trusted contributors to the team over time so that pull requests and issues do not sit untouched.\n\nCurrently, emulation is powered by the DeSmuME threaded ARM interpreter and runs at nearly full speed on the iPhone 5 and above. Due to the need to mmap the entire ROM into memory, older devices with only 256MB of RAM are not supported. These devices include the iPod Touch 4, iPad 1, iPhone 3GS, and anything below those devices.",
"iconURL": "https://i.imgur.com/DbWJeF8.png",
"tintColor": "#fc2125",
"size": 8553596,
"permissions": [
{
"type": "photos",
"usageDescription": "Allows iNDS to use images from your Photo Library as game artwork."
}
],
"screenshotURLs": [
"https://i.imgur.com/ap8Er1K.png",
"https://i.imgur.com/EgfrobI.png",
"https://i.imgur.com/9gLwHGD.png"
],
"versions": [
{
"version": "1.10.8",
"date": "2021-03-01T22:39:20Z",
"downloadURL": "https://github.com/iNDS-Team/iNDS/releases/download/v1.10.8/iNDS.ipa",
"localizedDescription": "Version 1.10.8 fixes the cover art system, thus closing #190. ~~There also appears to be an issue with the previous Cydia release being corrupted, so hopefully, that is fixed in this version.~~\r\n\r\n**Full Changelog**\r\n- Fixed cover art system (#203). Thanks, @unlmtd.\r\n- Fixed compilation errors (#191). Thanks, @jdkula.",
"size": 8553596
}
]
},
{
"name": "Play!",
"bundleIdentifier": "com.virtualapplications.play",
"appID": "com.virtualapplications.play",
"developerName": "Jean-Philip Desjardins",
"subtitle": "PlayStation 2 Games on iOS.",
"version": "0.58-8-g70a126e3",
"versionDate": "2023-01-10",
"versionDescription": "Update submodules. [70a126e3]",
"downloadURL": "https://s3.us-east-2.amazonaws.com/playbuilds/70a126e3/Play.ipa",
"localizedDescription": "Play! is a portable PlayStation2 emulator. The focus of the project is on making PlayStation2 emulation easy and accessible. Just pop in your favorite game's disc and have fun!\n\n\u2022 No BIOS required. Play! is an high-level emulator.\n\u2022 Easy configuration. No custom settings to fix specific games.\n\u2022 Available on many platforms, making sure the experience is the same quality everywhere.",
"iconURL": "https://i.imgur.com/NOi1cdl.png",
"tintColor": "#5f5fff",
"size": 33200000,
"screenshotURLs": [
"https://user-images.githubusercontent.com/64176728/209461585-74b856e0-ae30-41be-91ce-d3eb262be260.png",
"https://user-images.githubusercontent.com/64176728/209461763-c122f9f6-5103-4c59-b730-0e5b34b5937b.png",
"https://user-images.githubusercontent.com/64176728/209461593-f771a49d-a44d-4d9c-8bb7-dfab48c5dd25.png"
],
"versions": [
{
"version": "0.58-8-g70a126e3",
"date": "2023-01-10",
"downloadURL": "https://s3.us-east-2.amazonaws.com/playbuilds/70a126e3/Play.ipa",
"localizedDescription": "Update submodules. [70a126e3]",
"size": 33200000
},
{
"version": "0.58-7-gdf46379d",
"date": "2023-01-03",
"downloadURL": "https://s3.us-east-2.amazonaws.com/playbuilds/df46379d/Play.ipa",
"localizedDescription": "Add copy Qt DLL phase. [df46379d]",
"size": 33200000
},
{
"version": "0.57-22-g1126c39c",
"date": "2022-10-17",
"downloadURL": "https://s3.us-east-2.amazonaws.com/playbuilds/1126c39c/Play.ipa",
"localizedDescription": "Bug fixes and improvements.",
"size": 13371703
},
{
"version": "0.5",
"date": "2022-03-07",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Play.ipa",
"localizedDescription": "Bug fixes.",
"size": 12346902
}
]
},
{
"name": "iDOS",
"bundleIdentifier": "com.litchie.idosgames",
"developerName": "litchie",
"subtitle": "Play DOS games on iOS.",
"version": "2.1",
"versionDate": "2020-10-20",
"versionDescription": "- Support Mfi game controllers\n- Support external bluetooth keyboard (Text input only).\nYou can use Command-1, Command-2 .. for function keys.",
"downloadURL": "https://github.com/litchie/dospad/releases/download/2.1/iDOS.ipa",
"localizedDescription": "Play classic DOS games on your iPhone and iPad!\n\niDOS turns your device right into a powerful DOS gaming PC, with modern game control to make your old favorites as playable as possible.\n\nYou can also use iDOS for non-gaming purposes, such as word processing, casual programming. Apps in the DOS days are often simpler and surprisingly productive.\n\nKEYBOARD\n\niDOS provides a PC compatible on-screen keyboard with carefully designed layouts for different devices and orientations. The keyboard has a sliding control in landscape mode so that you can keep it from covering critical part of the screen.\n\nBluetooth keyboard is partially supported. We support ESC, function keys, and ordinary CTRL and ALT key bindings. Unfortunately the arrow keys can't be used for game control. You should use a bluetooth game controller instead.\n\nGAMEPAD\n\niDOS provides a virtual gamepad with key bindings that are fairly common in DOS games. You can customize the bindings. The DPAD works in 8-axis way. It can also be toggled into a joystick.\n\nExternal bluetooth game controllers are supported. Make sure your game controller is connected (System Settings->Bluetooth). To customize button bindings, go to iDOS in landscape mode, tap on bluetooth icon on the auto-hiding top bar.\n\nMOUSE\n\n* The screen area serves as a trackpad for moving mouse pointer.\n* Tap on the screen for left click. If direct touch is enabled, the mouse pointer will move to where you tap.\n* Hold one finger on the screen, and tap with another finger for right click.\n* On-screen mouse buttons are also provided for your convenience.\n* Bluetooth mice are only partially supported.\n\nSUPPORT\n\n- Visit https://litchie.com/dospad for more information.\n- Send email to [email protected]\n- Follow the developer on Twitter: https://twitter.com/litchiedev\n- iDOS is open source, report issues on https://github.com/litchie/dospad",
"iconURL": "https://i.imgur.com/Yah6zFk.png",
"tintColor": "#042eef",
"size": 5704322,
"screenshotURLs": [
"https://i.imgur.com/hRMA2Zr.png",
"https://i.imgur.com/gvhvQpo.png",
"https://i.imgur.com/NHOE1ba.png",
"https://i.imgur.com/eBEqmnt.png"
],
"versions": [
{
"version": "2.1",
"date": "2020-10-20",
"downloadURL": "https://github.com/litchie/dospad/releases/download/2.1/iDOS.ipa",
"localizedDescription": "- Support Mfi game controllers\n- Support external bluetooth keyboard (Text input only).\nYou can use Command-1, Command-2 .. for function keys.",
"size": 5704322
}
]
},
{
"name": "Firebird Emu",
"bundleIdentifier": "com.adriweb.firebird-emu",
"developerName": "nspire-emus",
"version": "1.5",
"versionDate": "2023-01-07T16:36:46Z",
"versionDescription": "# A heap of improvements: Firebird 1.5\n\n**New features:**\r\n* UI language can be switched\r\n* The debugger has a command history, press Up and Down arrow keys\r\n* On Android, the system file picker is used now, which fixes \"Could not start the emulation\" in many cases\r\n* The color scheme follows the system now\r\n* Improved performance of CX flash access by ignoring certain cache flush requests\r\n\r\n**Improvements:**\r\n* LCD can be resized freely now\r\n* Performance improvements for the ARM and AArch64 JITs\r\n* Supports macOS 10.15 Catalina\r\n* The Android APK includes arm64-v8a now\r\n* The Windows ZIP includes software OpenGL now, so should work on more systems\r\n\r\n**Bugfixes:**\r\n* Fix the external LCD sometimes being invisible\r\n* Allows building with recent versions of the Android NDK with clang\r\n* Does not crash on exit due to use of incompatible compile flags with GCC\r\n* Android devices with a lower w/h ratio are marked as supported now\r\n* firebird-send supports different implementations of netcat now\r\n* GDB and remote debugger work after emulation autostart as well\r\n* Moving the cursor over keypad buttons no longer clicks\r\n* On Windows, the filename for snapshots can now include non-ASCII characters\r\n* Fix crash on emulation start on certain x86-64 systems\r\n* Fix freeze on exit on JIT builds for the iOS version\r\n\r\nNote: Firebird Emu requires Qt 5.9 now.\r\n\r\n_Repo for Arch, Debian, Fedora, Ubuntu and openSUSE: [via OBS](https://software.opensuse.org/download.html?project=home%3AVogtinator%3Afirebird-emu&package=firebird-emu&locale=en)._\r\n",
"downloadURL": "https://github.com/nspire-emus/firebird/releases/download/v1.6/firebird-iOS.ipa",
"localizedDescription": "Third-party multi-platform emulator of the ARM-based TI-Nspire calculators.",
"iconURL": "https://i.imgur.com/U2HvZFZ.png",
"tintColor": "#010f00",
"size": 9953289,
"screenshotURLs": [
"https://user-images.githubusercontent.com/64176728/211237020-f12974b6-5836-4bf1-a927-002f9e48a00f.png",
"https://user-images.githubusercontent.com/64176728/211237030-6c613bae-3a5e-4826-9fd6-20dfa628bd4a.png",
"https://user-images.githubusercontent.com/64176728/211237032-e8a72501-9c94-4d5f-b50c-ea65ef84c361.png"
],
"subtitle": "ARM-based TI-Nspire calculator.",
"absoluteVersion": "1.5",
"versions": [
{
"absoluteVersion": "1.6",
"date": "2023-01-07T16:36:46Z",
"localizedDescription": "# New year, new version: Firebird 1.6\n\n**New features:**\r\n* New dialog for creating Flash images, which is also available in the Mobile UI! (#262) \r\n* Running as 64bit application on Windows is supported now (#234)\r\n* Polish translation is available now (#207)\r\n* CX II (/-T/CAS) calculators can now be emulated (#165)! However, with the current dumping programs you will not get a complete bootrom and booting the OS will fail.\r\n\r\n**Improvements:**\r\n* Multiple files can be sent in the Mobile UI and by dropping them into the main window on desktop (#279)\r\n Reimplemented emulation speed control: Now it's more accurate, especially on Windows\r\n* GitHub actions now performs automated builds for Android (armeabi-v7a and arm64-v8a in one APK), macOS and Windows (32bit and 64bit) on releases and pull requests (#283, #284, #285)\r\n* The \"installer\" for OS 4.5.3.14 (and later?) works now. It requires [fastboot RAM](https://hackspire.org/index.php?title=Memory-mapped_I/O_ports_on_CX#90030000_-_Fastboot_RAM) to persist state across reboots, which is now implemented.\r\n* More accurate emulation of the On button: It's now possible to enter Press-To-Test mode (#271)\r\n* Faster saving and loading of snapshots (#231)\r\n* More reliable USB file transfers\r\n* The debugger console now includes entered commands in the log\r\n* Support for PIE (position-independent executables) on x86_64. Previously, care needed to be taken that PIE was disabled, otherwise it would crash on start. (#211)\r\n* Building the JIT is disabled automatically if the platform does not support it (#197)\r\n* Firebird builds on FreeBSD now (#228, #248)\r\n\r\n**Bugfixes:**\r\n* File access on Android got fixed (#202 and its various duplicates)\r\n* Fix placement of keypad buttons in the touchpad area (#41)\r\n* Various fixes for the Mobile UI layout (#201)\r\n* The kit configuration page in the Mobile UI no longer causes the keyboard to pop up by default (#257)\r\n* Connecting with GDB on windows works now (#259, #260)\r\n* Some shades of grey were not displayed properly when emulating pre-CX models (#270)\r\n* Fix crash on AArch64/arm64 when executing certain instructions\r\n* The keypad reacts to touch events in the desktop version as well now (#292, #293)\r\n* Some places were no longer translated correctly after the introduction of language switching in 1.5\r\n* Keys could get stuck on focus changes. Now they're all released when the keypad loses focus (#287)\r\n* The Ctrl key now changes color when pressed\r\n* Emulation speed no longer remains unlimited after a failed file transfer\r\n\r\n_Repo for Arch, Debian, Fedora, Ubuntu and openSUSE: [via OBS](https://software.opensuse.org/download.html?project=home%3AVogtinator%3Afirebird-emu&package=firebird-emu&locale=en)._\r\n\r\nThere is work in progress to implement and improve support for running in the browser on Qt for WebAssembly (#294). A preview is available on https://nspire-emus.github.io/firebird/wasm/\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"size": 9953289,
"version": "1.5",
"downloadURL": "https://github.com/nspire-emus/firebird/releases/download/v1.6/firebird-iOS.ipa"
}
],
"appID": "com.firebird.firebird-emu"
},
{
"name": "ActiveGS iOS",
"bundleIdentifier": "com.yoshisuga.activeGS",
"developerName": "yoshisuga & Olivier Goguel",
"version": "2021.9",
"versionDate": "2021-09-23T09:28:59Z",
"versionDescription": "# 2021.9\n\nThis is a fork of Olivier Goguel's ActiveGS emulator for iOS.\r\n\r\nI've been tinkering it over the years and added some experimental features such as:\r\n\r\n- Support for iOS 15\r\n- Remap keyboard to supported wireless controller buttons (mFi/PS4/PS5/XBox One)\r\n- Custom split keyboard usable in landscape mode (written in Swift)\r\n\r\n![Simulator Screen Shot - iPhone 13 Pro Max - 2021-09-22 at 22 43 15](https://user-images.githubusercontent.com/564774/134484167-3c17c2a7-1d6a-467c-ac82-d7bfae7f281b.png)\r\n\r\n- A memory debugger/rudimentary memory-editing cheat engine (also written in Swift). Accessible via the \"D\" button in the right pane custom keyboard. Browse the memory map and change memory values. Not sure how the bank switching works and how it's mapped to memory but you get some representation of memory. \r\n![Simulator Screen Shot - iPhone 13 Pro Max - 2021-09-22 at 23 25 55](https://user-images.githubusercontent.com/564774/134484125-b984318a-b089-4484-b306-b976521963c3.png)\r\n\r\n\r\n",
"downloadURL": "https://github.com/yoshisuga/activegs-ios/releases/download/2021.9/ActiveGS.ipa",
"localizedDescription": "An emulator for all things Apple.",
"iconURL": "https://i.imgur.com/7LuLkoR.png",
"tintColor": "#21486b",
"size": 16593403,
"screenshotURLs": [
"https://i.imgur.com/8xekjhv.png",
"https://i.imgur.com/JFd6LiM.png",
"https://i.imgur.com/4ZE0DbB.png"
],
"subtitle": "An emulator for Apple II/2GS.",
"absoluteVersion": "2021.9",
"versions": [
{
"version": "2021.9",
"date": "2021-09-23T09:28:59Z",
"downloadURL": "https://github.com/yoshisuga/activegs-ios/releases/download/2021.9/ActiveGS.ipa",
"localizedDescription": "# 2021.9\n\nThis is a fork of Olivier Goguel's ActiveGS emulator for iOS.\r\n\r\nI've been tinkering it over the years and added some experimental features such as:\r\n\r\n- Support for iOS 15\r\n- Remap keyboard to supported wireless controller buttons (mFi/PS4/PS5/XBox One)\r\n- Custom split keyboard usable in landscape mode (written in Swift)\r\n\r\n![Simulator Screen Shot - iPhone 13 Pro Max - 2021-09-22 at 22 43 15](https://user-images.githubusercontent.com/564774/134484167-3c17c2a7-1d6a-467c-ac82-d7bfae7f281b.png)\r\n\r\n- A memory debugger/rudimentary memory-editing cheat engine (also written in Swift). Accessible via the \"D\" button in the right pane custom keyboard. Browse the memory map and change memory values. Not sure how the bank switching works and how it's mapped to memory but you get some representation of memory. \r\n![Simulator Screen Shot - iPhone 13 Pro Max - 2021-09-22 at 23 25 55](https://user-images.githubusercontent.com/564774/134484125-b984318a-b089-4484-b306-b976521963c3.png)\r\n\r\n\r\n",
"size": 16593403,
"absoluteVersion": "2021.9"
}
]
},
{
"name": "Ready",
"bundleIdentifier": "at.spiderlab.c64",
"developerName": "T-Pau",
"version": "1.6",
"versionDate": "2020-07-08T15:55:00Z",
"versionDescription": "# Release 1.6\n\n- Rename to Ready.\r\n\r\n- Add Commodore 16 and Plus/4 emulation.\r\n\r\n- Add ZX Spectrum emulation. Supported models are 16k, 48k, Specturm+, 128k, +2.\r\n\r\n- Add new app icons, one for each supported computer.\r\n",
"downloadURL": "https://github.com/T-Pau/Ready/releases/download/release-1.6/Ready-1.6.ipa",
"localizedDescription": "Ready is an open source emulator for the following 8 bit home computers:\n* Commodore 64\n* Commodore VIC-20\n* Commodore 16, Plus/4\n* Sinclair ZX Spectrum (16k, 48k, Spectrum+, 128k, +2)\n\nWith preliminary support for these computers:\n* Atari 600XL, 800XL\n* Commodore 128\n* Commander X16\n\nIt is based on atari800, fuse, Vice, and x16-emulator, which provide accurate emulation of many hardware variants and peripherals. Ready requires at least iPadOS 13.5.\n\nReady aims to approximate the feeling of using actual hardware. Rather than configuring abstract settings, you select hardware components. The software keyboard is a facsimile of the original, reflecting the different existing styles. Even the noise of the disk drive is emulated. The Library section offers a way to organize a large collection of games, demos and programs. The emulated hardware can be customized for each entry.\n\nThe Inbox provides a place to quickly try new programs. You can easily move the ones you want to keep to the library.\n\nTools mode allows attaching a cartridge like Action Replay or Final Cartridge and a collection of disks with your favorite tools, to help you dig into the programs, like back in the day.",
"iconURL": "https://i.imgur.com/S9WS2C2.png",
"tintColor": "#1c71c6",
"size": 63972294,
"screenshotURLs": [
"https://i.imgur.com/CN3fR34.png",
"https://i.imgur.com/q8ueM8W.png",
"https://i.imgur.com/2EHk0Wp.png",
"https://i.imgur.com/F3bXlmW.png"
],
"subtitle": "8-bit games for your iPad.",
"absoluteVersion": "1.6",
"versions": [
{
"version": "1.6",
"date": "2020-07-08T15:55:00Z",
"downloadURL": "https://github.com/T-Pau/Ready/releases/download/release-1.6/Ready-1.6.ipa",
"localizedDescription": "# Release 1.6\n\n- Rename to Ready.\r\n\r\n- Add Commodore 16 and Plus/4 emulation.\r\n\r\n- Add ZX Spectrum emulation. Supported models are 16k, 48k, Specturm+, 128k, +2.\r\n\r\n- Add new app icons, one for each supported computer.\r\n",
"size": 63972294,
"absoluteVersion": "1.6"
}
]
},
{
"name": "MAME4iOS",
"bundleIdentifier": "com.example.mame4ios",
"developerName": "yoshisuga",
"subtitle": "A MAME Arcade emulator for iOS.",
"version": "2022.5",
"versionDate": "2022-12-12T02:16:35Z",
"versionDescription": "# 2022.3\n\n# Version 2022.3\r\n\r\n* iOS 16 support\r\n",
"downloadURL": "https://github.com/yoshisuga/MAME4iOS/releases/download/2022.5/MAME4iOS-2022.5-139.ipa",
"localizedDescription": "MAME stands for Multi Arcade Machine Emulator. This app lets you play arcade games from the past 30+ years on your iPhone, iPad, macOS, or AppleTV.\n\nMore than 2000 games are supported, and the currently supported romset version is MAME 0.139u1 (September 2010).\n\nOther nifty features include:\n* 64-bit binary to run on modern and future iOS devices\n* Supports modern device screen sizes, including iPhone X/XR/XS/XS Max and iPad Pro\n* A native iOS/iPadOS/tvOS frontend (by @ToddLa, new in 2020!)\n* A native Metal rendering engine (by @ToddLa, new in 2020!)\n* tvOS support (new in 2019!)\n* An in-app web server to transfer files from your computer (new in 2019!)\n* Transfer ROMs, Artwork, and ROMSETs via AirDrop or iOS File Sharing (new in 2020!)\n* Multiple MFI controllers (up to 4 with dual analog support - @DarrenBranford)\n* Supports using the touch screen as a lightgun\n* Turbo mode toggle for buttons\n* Touch analog for games like Arkanoid\n* Builds in Xcode 11.x/12.x and runs on latest iOS 13/14 versions",
"iconURL": "https://i.imgur.com/gZCjhLl.png",
"tintColor": "#51bacc",
"size": 52332306,
"permissions": [
{
"type": "bluetooth",
"usageDescription": "We need bluetooth for peer play and steam controllers."
}
],
"screenshotURLs": [
"https://i.imgur.com/0JkUpEA.png",
"https://i.imgur.com/UJXiIUM.png"
],
"absoluteVersion": "2022.3",
"appID": "com.example.mame4ios",
"versions": [
{
"absoluteVersion": "2022.5",
"date": "2022-12-12T02:16:35Z",
"localizedDescription": "# 2022.5\n\n* Updated to [MAME 250](https://www.mamedev.org/releases/whatsnew_0250.txt).\r\n* tvOS UX: use a Alert instead of a inline Segmented Control.\r\n* Show upload feedback in Web Server UX.\r\n* Added `Make First Favorite` to game context menu.\r\n",
"size": 52332306,
"version": "2022.5",
"downloadURL": "https://github.com/yoshisuga/MAME4iOS/releases/download/2022.5/MAME4iOS-2022.5-139.ipa"
},
{
"version": "2022.3",
"date": "2022-09-17T02:33:58Z",
"downloadURL": "https://github.com/yoshisuga/MAME4iOS/releases/download/2022.3/MAME4tvOS-2022.3-139.ipa",
"localizedDescription": "# 2022.3\n\n# Version 2022.3\r\n\r\n* iOS 16 support\r\n",
"size": 46033990,
"absoluteVersion": "2022.3"
}
]
},
{
"name": "OldOS",
"bundleIdentifier": "com.zurac.OldOS",
"developerName": "zzanehip",
"subtitle": "OldOS is a testament to the days of iOS 4.",
"version": "1.0",
"versionDate": "2021-11-23T19:01:37Z",
"versionDescription": "# IPA V1.0 Build 18\n\n1.0 (18):\r\n- Mail is here! This is a full-blown email client, no ifs, ands, or buts\r\n- View mailboxes, read emails, move emails, manage inbox, and send emails\r\n- Fixes to YouTube backend\r\n- Other bug fixes",
"downloadURL": "https://github.com/zzanehip/The-OldOS-Project/releases/download/1.0_18/OldOS.ipa",
"localizedDescription": "OldOS is a testament to the days of yesteryear, showcasing what iOS once was ten years ago. The ethos of the app is to merge the technologies of today with a pixel-perfect recreation of the user experience of the past. The vast majority of apps in OldOS are fully functional \u2014 meaning they seamlessly integrate with the data on your phone to deliver a live, emulator-esque experience. What does this mean? Well, you can play your music in iPod, get directions in Maps, surf the web in Safari, view the current weather in Weather, and much more. By the same token, no shortcuts were taken in fully fleshing out the operating system. You can change your background, adjust settings, search apps, et cetera. There are a few apps still not ready for primetime but don't worry, they're coming soon.\n\nWith OldOS, you no longer need to worry about securing a legacy iPhone to experience nostalgia \u2014 it's available on your daily driver.\n\nPart of the goal with OldOS is to enable anyone to understand how iOS works and demonstrate just how powerful SwiftUI truly is. For that reason, the entire app is open-sourced \u2014 enabling developers to learn about, modify, and add to the app. I thought building this over my last six or so months in high school and sharing it with the world would be a fun and productive endeavor.\n\nSpecial Features:\n* \ud83e\uddd1\u200d\ud83d\udcbb Built almost entirely using SwiftUI.\n* \ud83c\udfa8 Designed to be as close to pixel-perfect as possible.\n* \ud83d\udcf1 Fully functional, perhaps even usable as a second OS.\n* \u2764\ufe0f A testament to the work of Apple employees of both the past and the present.\n* \ud83d\uddfa\ufe0f Fully open source for all to learn, modify, and build on.",
"iconURL": "https://raw.githubusercontent.com/zzanehip/The-OldOS-Project/master/OldOS/OldOS/Assets.xcassets/AppIcon.appiconset/1024.png",
"tintColor": "#181818",
"size": 88173533,
"screenshotURLs": [
"https://github.com/zzanehip/The-OldOS-Project/raw/master/Images/Market_1.jpg",
"https://github.com/zzanehip/The-OldOS-Project/raw/master/Images/Market_2.jpg",
"https://github.com/zzanehip/The-OldOS-Project/raw/master/Images/Market_3.jpg",
"https://github.com/zzanehip/The-OldOS-Project/raw/master/Images/Market_4.jpg",
"https://github.com/zzanehip/The-OldOS-Project/raw/master/Images/Market_5.jpg"
],
"permissions": [
{
"type": "camera",
"usageDescription": "To take photos in OldOS, please enable access to your camera."
},
{
"type": "photos",
"usageDescription": "To view, manage, and add photos to your photo library in OldOS, please enable access. Then close and re-open the Photos app."
},
{
"type": "music",
"usageDescription": "To view, play, and experience your music in OldOS, please enable access to your music library."
},
{
"type": "location",
"usageDescription": "To enable maps to work properly, and see your current wifi network in Settings, please enable access to your location. Then close and re-open the Maps app."
},
{
"type": "microphone",
"usageDescription": "To record your audio while filming a video in OldOS, please in enable microphone access."
},
{
"type": "contacts",
"usageDescription": "To view and manage your contacts in OldOS, please enable access to your contacts list."
}
],
"absoluteVersion": "1.0_18",
"versions": [
{
"version": "1.0",
"date": "2021-11-23T19:01:37Z",
"downloadURL": "https://github.com/zzanehip/The-OldOS-Project/releases/download/1.0_18/OldOS.ipa",
"localizedDescription": "# IPA V1.0 Build 18\n\n1.0 (18):\r\n- Mail is here! This is a full-blown email client, no ifs, ands, or buts\r\n- View mailboxes, read emails, move emails, manage inbox, and send emails\r\n- Fixes to YouTube backend\r\n- Other bug fixes",
"size": 88173533,
"absoluteVersion": "1.0_18"
}
]
},
{
"name": "unc0ver",
"bundleIdentifier": "science.xnu.undecimus",
"developerName": "Pwn20wnd",
"subtitle": "The most advanced jailbreak tool.",
"version": "8.0.2",
"versionDate": "2021-12-29T21:35:42Z",
"versionDescription": "# v8.0.2 Release\n\n- Add exploit guidance to improve reliability on A12-A13 iPhones running iOS 14.6-14.8\r\n- Fix exploit reliability on iPhone XS devices running iOS 14.6-14.8",
"downloadURL": "https://unc0ver.dev/downloads/8.0.2/9e44edfbfd1905cadf23c3b9ad1d5bed683ce061/unc0ver_Release_8.0.2.ipa",
"localizedDescription": "unc0ver is an advanced jailbreaking tool for iOS devices. Jailbreaking with unc0ver unlocks the true power of your iDevice. Customize the appearance of your device, gain full control over how your device operates, obtain access to hidden features of iOS, and more.\n\nCompatibility:\n* unc0ver supports iOS 11.0 through to iOS 14.3 (Excluding 13.5.1 and 13.3.1)\n\nStability:\n* Utilizing the latest stable APT and Mobile Substrate, stability is guaranteed.\n\nSecurity:\n* Utilizing native system sandbox exceptions, security remains intact while enabling access to jailbreak files.",
"iconURL": "https://i.imgur.com/5aehDxj.png",
"tintColor": "#101216",
"size": 54489484,
"screenshotURLs": [
"https://i.imgur.com/ItMaRRV.png",
"https://i.imgur.com/bjzyqpY.png",
"https://i.imgur.com/3TMGkaO.png",
"https://i.imgur.com/gTYfncm.png"
],
"absoluteVersion": "8.0.2",
"versions": [
{
"version": "8.0.2",
"date": "2021-12-29T21:35:42Z",
"downloadURL": "https://unc0ver.dev/downloads/8.0.2/9e44edfbfd1905cadf23c3b9ad1d5bed683ce061/unc0ver_Release_8.0.2.ipa",
"localizedDescription": "# v8.0.2 Release\n\n- Add exploit guidance to improve reliability on A12-A13 iPhones running iOS 14.6-14.8\r\n- Fix exploit reliability on iPhone XS devices running iOS 14.6-14.8",
"size": 54489484,
"absoluteVersion": "8.0.2"
}
]
},
{
"name": "iTorrent",
"bundleIdentifier": "ru.nonamedude.iTorrent",
"developerName": "XITRIX",
"subtitle": "Ordinary iOS torrent client app.",
"version": "1.8.3",
"versionDate": "2020-09-20",
"versionDescription": "What's new:\n\n\u2022 Text accessibility support added\n\u2022 Huge backend refactoring\n\u2022 Libtorrent updated to 1.2.9\n\u2022 Minor UI improvements\n\u2022 Many bugs fixed (possibly new ones added)",
"downloadURL": "https://github.com/XITRIX/iTorrent/releases/download/v1.8.3/iTorrent.ipa",
"localizedDescription": "iTorrent is an ordinary torrent client for iOS with Files app support.\n\nWhat can this app do:\n\n\u2022 Download in the background\n\u2022 Sequential download (use VLC to watch films while loading)\n\u2022 Add torrent files from Share menu (Safari and other apps)\n\u2022 Add magnet links directly from Safari\n\u2022 Store files in Files app (iOS 11+)\n\u2022 File sharing directly from app\n\u2022 Download torrent by link\n\u2022 Download torrent by magnet\n\u2022 Send notification on torrent downloaded\n\u2022 FTP Server (unstable)\n\u2022 Select files to download or not\n\u2022 Change UI to dark theme\n\nNow supporting these localizations:\n\u2022 English\n\u2022 Russian\n\u2022 Turkish",
"iconURL": "https://i.imgur.com/C3KwMP5.png",
"tintColor": "#e32b3c",
"size": 21218913,
"permissions": [
{
"type": "photos",
"usageDescription": "Allows iTorrent to save files to Photos app."
}
],
"screenshotURLs": [
"https://i.imgur.com/0o7qou3.png",
"https://i.imgur.com/sO510zC.png",
"https://i.imgur.com/MQPWxYz.png",
"https://i.imgur.com/xTAo5uE.png"
],
"versions": [
{
"version": "1.8.3",
"date": "2020-09-20",
"downloadURL": "https://github.com/XITRIX/iTorrent/releases/download/v1.8.3/iTorrent.ipa",
"localizedDescription": "What's new:\n\n\u2022 Text accessibility support added\n\u2022 Huge backend refactoring\n\u2022 Libtorrent updated to 1.2.9\n\u2022 Minor UI improvements\n\u2022 Many bugs fixed (possibly new ones added)",
"size": 21218913
}
]
},
{
"name": "Rewound",
"bundleIdentifier": "com.louisanslow.record",
"developerName": "Louis Anslow",
"subtitle": "Turn your iPhone into an iPod. Classic.",
"version": "2019.7",
"versionDate": "2019-12-09",
"versionDescription": "Small fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Rewound.ipa",
"localizedDescription": "Rewound uses your Apple Music library and displays it in the nostalgic style of an old spin-wheel iPod.",
"iconURL": "https://i.imgur.com/LfIRxqb.png",
"tintColor": "#9e968d",
"size": 5628716,
"permissions": [
{
"type": "music",
"usageDescription": "Rewound needs access to your music library to control your music."
}
],
"screenshotURLs": [
"https://i.imgur.com/IfLobOR.png",
"https://i.imgur.com/IJcJ6WG.png",
"https://i.imgur.com/dVjieD9.png",
"https://i.imgur.com/kmC3NtZ.png"
],
"versions": [
{
"version": "2019.7",
"date": "2019-12-09",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Rewound.ipa",
"localizedDescription": "Small fixes.",
"size": 5628716
}
],
"appID": "com.louisanslow.record"
},
{
"name": "ScummVM",
"bundleIdentifier": "org.scummvm.scummvm",
"developerName": "ScummVM Team",
"subtitle": "Point and click adventures.",
"version": "2.6.0",
"versionDate": "2022-07-25",
"versionDescription": "Bug fixes.",
"downloadURL": "https://downloads.scummvm.org/frs/scummvm/2.6.0/scummvm-2.6.0-ios.ipa",
"localizedDescription": "ScummVM is a program which allows you to run certain classic graphical point-and-click adventure games and role-playing games, provided you already have their data files. The clever part about this: ScummVM just replaces the executables shipped with the games, allowing you to play them on systems for which they were never designed!\n\nScummVM supports a huge library of adventures with over 250 games in total. It supports many classics published by legendary studios like LucasArts, Sierra On-Line, Revolution Software, Cyan, Inc. and Westwood Studios. Next to ground-breaking titles like the Monkey Island series, Broken Sword, Myst, Blade Runner and countless other games you will find some really obscure adventures and truly hidden gems to explore.",
"iconURL": "https://i.imgur.com/sSQhbwJ.png",
"tintColor": "#bf6a27",
"size": 92033520,
"screenshotURLs": [
"https://i.imgur.com/7BHTMT0.png",
"https://i.imgur.com/Fp24Isf.png",
"https://i.imgur.com/vD3UJfE.png"
],
"versions": [
{
"version": "2.6.0",
"date": "2022-07-25",
"downloadURL": "https://downloads.scummvm.org/frs/scummvm/2.6.0/scummvm-2.6.0-ios.ipa",
"localizedDescription": "Bug fixes.",
"size": 92033520
},
{
"version": "2.2.0",
"date": "2020-09-13",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/ScummVM.ipa",
"localizedDescription": "Bug fixes.",
"size": 57222372
}
],
"appID": "org.scummvm.scummvm"
},
{
"name": "Mini vMac",
"bundleIdentifier": "net.namedfork.minivmac",
"developerName": "Gryphel Project & zydeco",
"subtitle": "A miniature early Macintosh emulator.",
"version": "2.5",
"versionDate": "2022-05-26T18:30:55Z",
"versionDescription": "# Mini vMac for iOS 2.5\n\n* Update to Mini vMac 37.03 beta\r\n* Fixed crash when deleting disk images on iPad\r\n* Adds recently used disks to quick actions menu\r\n* Removed custom presentation modes for disk and settings screens\r\n* Doesn't show \"The developer of this app needs to update it to work with this version of iOS\" error when installing IPA on iOS 15",
"downloadURL": "https://github.com/zydeco/minivmac4ios/releases/download/v2.5/minivmac4ios-2.5.ipa",
"localizedDescription": "Features\n\n\u2022 Emulates Mac Plus, Mac II or Mac 128K\n\u2022 Full simulated keyboard (including all Mac keys)\n\u2022 Full sound output\n\u2022 Uses external keyboard if available\n\u2022 Regulable emulation speed\n\u2022 Easy(ish) to import/export disk images\n\nPlease check out the github README for usage instructions: https://github.com/zydeco/minivmac4ios",
"iconURL": "https://i.imgur.com/MGxGvKR.png",
"tintColor": "#dd2b03",
"size": 1194371,
"screenshotURLs": [
"https://user-images.githubusercontent.com/64176728/211237407-e79d6562-c6c2-4a69-b8ea-4414e6b97be0.png",
"https://user-images.githubusercontent.com/64176728/211237433-ca07c970-747e-4fd1-a206-be07384183cb.png",
"https://user-images.githubusercontent.com/64176728/211237435-27c3a84c-7213-4a55-b4d9-b7a9362ffb36.png"
],
"permissions": [
{
"type": "background-audio",
"usageDescription": "This allows the application to continue running audio in the background."
}
],
"absoluteVersion": "2.5",
"versions": [
{
"version": "2.5",
"date": "2022-05-26T18:30:55Z",
"downloadURL": "https://github.com/zydeco/minivmac4ios/releases/download/v2.5/minivmac4ios-2.5.ipa",
"localizedDescription": "# Mini vMac for iOS 2.5\n\n* Update to Mini vMac 37.03 beta\r\n* Fixed crash when deleting disk images on iPad\r\n* Adds recently used disks to quick actions menu\r\n* Removed custom presentation modes for disk and settings screens\r\n* Doesn't show \"The developer of this app needs to update it to work with this version of iOS\" error when installing IPA on iOS 15",
"size": 1194371,
"absoluteVersion": "2.5"
}
]
},
{
"name": "XPatcher",
"bundleIdentifier": "com.wh0ba.xpatcher",
"developerName": "Wh0ba",
"subtitle": "A Rom-patcher utility for your iOS device.",
"version": "2.2",
"versionDate": "2022-01-07T10:15:55Z",
"versionDescription": "# File hashes when selecting files\n\n### XPatcher 2.2\r\n### A small updated with a little feature \r\n\r\nNow when you select a file in the Documents tab, it will show SHA1, MD5, and CRC32 hashes of the selected file.\r\nclosing #5\r\nother changes might be adding .vcdiff to the recognized patch formats (XDelta) but so far it seems kinda broken as stated in #6 .\r\n\r\n**Full Changelog**: https://github.com/Wh0ba/XPatcher/compare/2.0...v2.2",
"downloadURL": "https://github.com/Wh0ba/XPatcher/releases/download/v2.2/XPatcher_2.2.ipa",
"localizedDescription": "XPatcher is a GUI front-end for flips, libppf, xdelta, and libRUP patching libraries.\n\nThis app allows you to apply patches to files on your iOS devices, mostly used to apply rom hacks to video game roms with a simple to use interface to make it as user-friendly as possible.",
"iconURL": "https://i.imgur.com/cgrsWgC.png",
"tintColor": "#ff767d",
"size": 357189,
"screenshotURLs": [
"https://i.imgur.com/nFunb9n.png",
"https://i.imgur.com/7UvBK4J.png"
],
"absoluteVersion": "2.2",
"versions": [
{
"version": "2.2",
"date": "2022-01-07T10:15:55Z",
"downloadURL": "https://github.com/Wh0ba/XPatcher/releases/download/v2.2/XPatcher_2.2.ipa",
"localizedDescription": "# File hashes when selecting files\n\n### XPatcher 2.2\r\n### A small updated with a little feature \r\n\r\nNow when you select a file in the Documents tab, it will show SHA1, MD5, and CRC32 hashes of the selected file.\r\nclosing #5\r\nother changes might be adding .vcdiff to the recognized patch formats (XDelta) but so far it seems kinda broken as stated in #6 .\r\n\r\n**Full Changelog**: https://github.com/Wh0ba/XPatcher/compare/2.0...v2.2",
"size": 357189,
"absoluteVersion": "2.2"
}
]
},
{
"name": "blurt.blog",
"bundleIdentifier": "blog.blurt.blurt",
"developerName": "sagarkothari88",
"subtitle": "A fair world of social liberty",
"version": "1.0.7",
"versionDate": "2023-01-01",
"versionDescription": "https://blurt.blog/blurt/@sagarkothari88/h350a80ssgii-ct0j-9x",
"downloadURL": "https://github.com/sag333ar/blurt-releases/releases/download/1.0.7(36)/Runner.ipa",
"localizedDescription": "The build which was also submitted to the Apple for AppStore review",
"iconURL": "https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/512x512.png",
"tintColor": "8A28F7",
"size": 857669,
"permissions": [],
"screenshotURLs": [
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/01.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/02.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/03.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/04.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/05.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/06.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/07.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/08.png",
"https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/appstore-screenshots/se/09.png"
],
"beta": false,
"versions": [
{
"version": "1.0.7",
"date": "2023-01-01",
"downloadURL": "https://github.com/sag333ar/blurt-releases/releases/download/1.0.7(36)/Runner.ipa",
"localizedDescription": "https://blurt.blog/blurt/@sagarkothari88/h350a80ssgii-ct0j-9x",
"size": 857669
},
{
"version": "1.0.6",
"date": "2020-11-20",
"downloadURL": "https://github.com/sag333ar/blurt-releases/releases/download/1.0.6(35)/Runner.ipa",
"localizedDescription": "https://blurt.blog/blurt/@sagarkothari88/we-are-ready-to-submit-to-appstore-and-curation-report-18th-and-19th-nov-2022",
"size": 857669
},
{
"version": "1.0.3",
"date": "2020-11-20",
"downloadURL": "https://gitlab.com/blurt/openblurt/blurt-mobile-app/-/raw/main/ios/releases/1.0.3/app.ipa",
"localizedDescription": "https://blurt.blog/blurt/@sagarkothari88/we-are-ready-to-submit-to-appstore-and-curation-report-18th-and-19th-nov-2022",
"size": 857669
}
],
"appID": "blog.blurt.blurt"
},
{
"beta": false,
"name": "VCMI",
"bundleIdentifier": "eu.vcmi.vcmiclient",
"developerName": "VCMI Team",
"subtitle": "Heroes of Might & Magic III engine",
"version": "1.3.2",
"versionDate": "2023-09-15T12:00:00+04:00",
"versionDescription": "Stability improvements and fixes for issues found in 1.3 release",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.3.2/VCMI-1.3.2-iOS.ipa",
"localizedDescription": "VCMI is a open source cross-platform HoMM3 engine written from scratch. \n\nYou need data copied from original game to play. \nFollow instructions from https://wiki.vcmi.eu/Installation_on_iOS",
"iconURL": "https://github.com/vcmi/vcmi/raw/develop/client/icons/vcmiclient.512x512.png",
"tintColor": "CD8526",
"size": 27910340,
"screenshotURLs": [
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot1.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot2.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot3.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot4.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot5.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot6.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot7.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot8.png",
"https://raw.githubusercontent.com/vcmi/vcmi-updates/master/altstore/screenshots/screenshot9.png"
],
"versions": [
{
"version": "1.3.2",
"date": "2023-09-15T12:00:00+04:00",
"localizedDescription": "Stability improvements and fixes for issues found in 1.3 release",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.3.2/VCMI-1.3.2-iOS.ipa",
"size": 27910340,
"sha256": "0966c7ad34a53d72e4b393bf18e2db48717a7cb5f9f49c25e60295b00de4d442"
},
{
"version": "1.3.1",
"date": "2023-08-18T12:00:00+04:00",
"localizedDescription": "Stability improvements and fixes for issues found in 1.3 release",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.3.1/VCMI-1.3.1-iOS.ipa",
"size": 27943336,
"sha256": "242b2e8b4ba341f1b7020475548f8decfaa9f9d333716b617d5e88dc91b08fa1"
},
{
"version": "1.2.1",
"date": "2023-04-28T12:00:00+04:00",
"localizedDescription": "Fixes for issues found in 1.2 release",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.2.1/VCMI-1.2.1-iOS.ipa",
"size": 26347869
},
{
"version": "1.2.0",
"date": "2023-04-14T12:00:00+04:00",
"localizedDescription": "Rendering improvements, revamped UI, translations support, bugfixes and many more!",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.2.0/VCMI-1.2.0-iOS.ipa",
"size": 26346303
},
{
"version": "1.1.1",
"date": "2023-02-03T12:00:00+04:00",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.1.1/VCMI-1.1.1-iOS.ipa",
"localizedDescription": "Fixes for issues found in 1.1 release",
"size": 25570455
},
{
"version": "1.1.0",
"date": "2022-12-23T12:00:00+04:00",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.1.0/VCMI-1.1.0-5278271-iOS.ipa",
"localizedDescription": "VCMI was ported on iOS",
"size": 25501741
}
],
"appID": "eu.vcmi.vcmiclient",
"appPermissions": {
"entitlements": [],
"privacy": []
}
},
{
"name": "3Speak.tv - Acela",
"bundleIdentifier": "com.example.acela",
"developerName": "sagarkothari88",
"subtitle": "Tokenized Video Communities",
"version": "1.0.3",
"versionDate": "2022-12-08",
"versionDescription": "https://ecency.com/hive-181335/@sagarkothari88/3speak-development-update-from-sagarkothari88-7cd51a3b88448",
"downloadURL": "https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/Runner.ipa",
"localizedDescription": "The build which was also submitted to the Apple for TestFlight review",
"iconURL": "https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/AppIcon-512.png",
"tintColor": "AFEEEE",
"size": 857669,
"permissions": [],
"screenshotURLs": [
"https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/IMG_5651.PNG",
"https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/IMG_5652.PNG",
"https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/IMG_5653.PNG",
"https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/IMG_5654.PNG",
"https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/IMG_5655.PNG"
],
"beta": false,
"versions": [
{
"version": "1.0.3",
"date": "2022-12-08",
"downloadURL": "https://github.com/spknetwork/Android-App/releases/download/v1.0.3_48/Runner.ipa",
"localizedDescription": "https://ecency.com/hive-181335/@sagarkothari88/3speak-development-update-from-sagarkothari88-7cd51a3b88448",
"size": 857669
}
],
"appID": "com.example.acela"
}
],
"news": [
{
"title": "unc0ver 5.0.0 OUT NOW!",
"identifier": "uncover-v5-release",