-
Notifications
You must be signed in to change notification settings - Fork 17
/
quantumsource.json
2768 lines (2768 loc) · 397 KB
/
quantumsource.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": "Quantum Source",
"identifier": "com.quarksources.quantumsource",
"apiVersion": "v2",
"subtitle": "Contains all of your favorite emulators, games, jailbreaks, utilities, and more.",
"description": "This source is an automatically kept up-to-date source, powered by GitHub Actions, the Python altparse library, and the support of independent developers. In here, you'll find anything from community maintained forks of Delta Emulator, to tiny Mac utilities that no one's ever heard of. If you have an app you'd like to see here, please use our website to reach out!",
"iconURL": "https://quarksources.github.io/assets/ElementQ-Circled.png",
"headerURL": "https://quarksources.github.io/assets/quantumsource.png",
"website": "https://quarksources.github.io/",
"tintColor": "#343a40",
"featuredApps": [
"com.litritt.ignited",
"com.example.mame4ios",
"com.wh0ba.xpatcher",
"net.namedfork.minivmac",
"com.antique.emuThreeDS"
],
"apps": [
{
"name": "emuThreeDS",
"bundleIdentifier": "com.antique.emuThreeDS",
"developerName": "Antique",
"subtitle": "Nintendo 3DS emulator for iOS.",
"localizedDescription": "emuThreeDS is a Nintendo 3DS emulator for Apple TV, iPad and iPhone based on Citra.",
"iconURL": "https://i.imgur.com/XUAH0bL.png",
"tintColor": "#5CA399",
"screenshotURLs": [
"https://i.imgur.com/AhhhDIK.png",
"https://i.imgur.com/u05omA7.png"
],
"versions": [
{
"absoluteVersion": "1.0.7.1.2",
"version": "1.0.7.1",
"buildVersion": "2",
"date": "2024-03-01T03:47:43Z",
"localizedDescription": "# v1.0.7.1.2\n\n",
"downloadURL": "https://github.com/emuPlace/emuThreeDS/releases/download/v1.0.7.1.2/emuThreeDS_v1.0.7.1.2.ipa",
"size": 35010897,
"sha256": "e27a76af0128c1af81f51bfffe8983a461bb76861cf0c93a0388f9c16339bdcf"
},
{
"absoluteVersion": "1.0.6.5.6",
"version": "1.0.6.5",
"buildVersion": "6",
"date": "2023-07-31T11:16:28Z",
"localizedDescription": "# v1.0.6.5 (6) is now out!\n\nSee **[CHANGELOG.md](https://github.com/emuplace/emuthreeds/blob/main/resources/markdowns/CHANGELOG.md)** for more information.",
"downloadURL": "https://github.com/emuPlace/emuThreeDS/releases/download/1.0.6.5.6/emuThreeDS.v1.0.6.5.6.ipa",
"size": 35642893,
"sha256": "f1b0d1df9ca3ce907869aa9d18d109e1c2bceb283971f23bf42de3ecd59e28c9"
},
{
"absoluteVersion": "1.0.6.4",
"version": "1.0.6",
"buildVersion": "4",
"date": "2023-06-15T08:42:18Z",
"localizedDescription": "# Settings galore, Full controller support, Latest Vulkan and more!\n\nSee **[CHANGELOG.md](https://github.com/emuPlace/emuThreeDS/blob/main/resources/markdowns/CHANGELOG.md)** for more information.\r\n\r\nThis will be the last SwiftUI release as the project is moving back to Swift.",
"downloadURL": "https://github.com/emuPlace/emuThreeDS/releases/download/1.0.6.4/emuThreeDS_v1.0.6.4.ipa",
"size": 37520848,
"sha256": "e63fe50f820286b4124e9e758610c8e707f1d9b76f65301e9ffb1bfcda38566b"
},
{
"absoluteVersion": "1.0.6.3",
"version": "1.0.6",
"buildVersion": "3",
"date": "2023-06-08T08:31:08Z",
"localizedDescription": "# Added new virtual controller buttons and added new settings.\n\nChange-logs will go back to normal from here on out... I've not kept track properly for this version.",
"downloadURL": "https://github.com/emuPlace/emuThreeDS/releases/download/1.0.6.3/emuThreeDS_v1.0.6.3.ipa",
"size": 37590539,
"sha256": "2b41c723d5c7512a8787e22fe6029f5c7cb2dfce0f496eb8fdc3cf91f975ce28",
"minOSVersion": "15.0"
}
],
"appPermissions": {
"entitlements": [],
"privacy": []
},
"appID": "com.antique.emuThreeDS"
},
{
"name": "citra",
"bundleIdentifier": "net.rinsuki.slapps.citra.ci-artifact",
"developerName": "rinsuki",
"subtitle": "Citra Nintendo 3DS emulator for iOS.",
"localizedDescription": "Citra is a Nintendo 3DS emulator. This is a fork specifically compiled for iOS devices and is still in its early stages of development. You should not expect the same compatibility and performance that you might expect of the PC version of Citra.",
"iconURL": "https://github.com/rinsuki/citra/blob/ios_frontend/dist/icon.png?raw=true",
"tintColor": "#5CA399",
"screenshotURLs": [],
"versions": [
{
"absoluteVersion": "4865233241",
"version": "0.1.gha.4865233241.Release.5af330c0e6cac9c183a432d5839cf78780873951",
"buildVersion": "1",
"date": "2023-05-02T20:46:17Z",
"localizedDescription": "# iOS (\u03b1) CI.4865233241\n\n* Tell compiler to support only A12 or later CPU, but I'm not sure this actually improves performance\r\n\r\n## NOTE\r\n* This version requires A12 or later device (iPhone XS/XR or later)\r\n * this is coming from GPU requirements (we need layered rendering)\r\n* This version can install to iOS 14 or later device, but...\r\n * We only supports latest stable iOS.\r\n * in iOS 14.x or older, you can't use virtual controller (which means you need to use external controller, like DS4 or Xbox or MFi certificated controller)\r\n* This version doesn't supporting these features:\r\n * Audio Input (Mic)\r\n * Camera\r\n * Motion Sensor\r\n * Touch Screen\r\n * NFC\r\n * SELECT/HOME button for physical controller\r\n * Circle Pad (including Pro), ZL/ZR, SELECT/START/HOME button for virtual controller",
"downloadURL": "https://github.com/rinsuki/citra/releases/download/ios/alpha/4865233241/citra_ios_ci_4865233241_Release_5af330c0e6cac9c183a432d5839cf78780873951.ipa",
"size": 8581046,
"sha256": "bee252d9ce9b350122e5ae0e48d2ec1a6ba87cdf9ef5263a5e8b90e3c0766ca1"
}
],
"appPermissions": {
"entitlements": [],
"privacy": []
},
"appID": "net.rinsuki.slapps.citra"
},
{
"name": "WDBRemoveThreeAppLimit",
"bundleIdentifier": "com.worthdoingbadly.WDBRemoveThreeAppLimit",
"developerName": "Zhuowei",
"subtitle": "Removes three app limit from AltStore!",
"localizedDescription": "An app that removes the three app limit for free provisioning. Hit \"Go\" just before installing apps. Should work on iOS 16.1.2 and below / iOS 15.7.1 and below.\n\nThis is very limited:\n\n\u2022 Apps still expire after a week\n\u2022 They still do not get arbitrary entitlements\n\u2022 They still must be signed. It's probably not going to be that useful. It's meant more as a demo of what you can do with MacDirtyCow.",
"iconURL": "https://i.imgur.com/ODvSw7D.png",
"tintColor": "#404040",
"screenshotURLs": [
"https://i.imgur.com/6pajtgW.png"
],
"versions": [
{
"version": "1.0",
"date": "2023-02-16",
"localizedDescription": "\u2022 Updated WDBRemoveThreeAppLimit to v1.0",
"downloadURL": "https://github.com/zhuowei/WDBRemoveThreeAppLimit/releases/download/v1.0/WDBRemoveThreeAppLimit-v1.0.ipa",
"size": 88800,
"sha256": "428982c14796e7caa66d2743964fa37157d0e9db574ada326aa09a65a11c147c",
"maxOSVersion": "16.1.2"
}
]
},
{
"name": "WDBFontOverwrite",
"bundleIdentifier": "com.ginsudev.WDBFontOverwrite",
"developerName": "Zhuowei + Ginsudev",
"subtitle": "Override the iOS system fonts!",
"localizedDescription": "An app that allows you to override the system used iOS font with one of the fonts from our built in selection. It's probably not going to be that useful. It's meant more as a demo of what you can do with MacDirtyCow.",
"iconURL": "https://i.imgur.com/SXK4rhS.png",
"tintColor": "#404040",
"screenshotURLs": [
"https://user-images.githubusercontent.com/704768/209511898-a1477b66-28e4-471a-87d9-36c1c2eb25ca.png",
"https://user-images.githubusercontent.com/704768/209606970-a382c273-bdcb-425c-bca1-1b6f9b31862f.png",
"https://user-images.githubusercontent.com/704768/209753262-b8204c92-b873-41a7-8127-38bf86096470.png"
],
"versions": [
{
"absoluteVersion": "1.10.8",
"version": "1.10.8",
"date": "2023-02-09T10:15:32Z",
"localizedDescription": "# v1.10.8\n\n- Updated grant_full_disk_access.\r\n- Concurrency and code improvements/fixes.",
"downloadURL": "https://github.com/ginsudev/WDBFontOverwrite/releases/download/v1.10.8/WDBFontOverwrite.ipa",
"size": 5348316,
"sha256": "c0247494c3852c200aeececaada8476b0967958154a28cfd260b21a9c20392ec",
"maxOSVersion": "16.1.2"
}
],
"appID": "com.ginsudev.WDBFontOverwrite"
},
{
"name": "Deltroid",
"bundleIdentifier": "com.rileytestut.Deltroid",
"developerName": "SideStore Team",
"subtitle": "Multi-emulator for your classic games on the go!",
"localizedDescription": "Deltroid is an all-in-one emulator for iOS. Deltroid builds upon the strengths of its predecessor Delta while improving on it in a community supported fashion. \n\nGithub Repository (https://github.com/lonkelle/Deltroid) \n\nFEATURES\n\nSupported Game Systems\n\u2022 Nintendo Entertainment System\n\u2022 Super Nintendo Entertainment System\n\u2022 Nintendo 64\n\u2022 Game Boy (Color)\n\u2022 Game Boy Advance\n\u2022 Nintendo DS\n\u2022 Nintendo DSi\n\u2022 Sega Genesis\n\u2022 And plenty more to come!\n\nController Support\n\u2022 Supports PS4, PS5, Xbox One S, Xbox Series X, and MFi game controllers.\n\u2022 Supports bluetooth (and wired) keyboards, as well as the Apple Smart Keyboard.\n\u2022 Completely customize button mappings on a per-system, per-controller basis.\n\u2022 Map buttons to special \u201cQuick Save\u201d, \u201cQuick Load,\u201d and \u201cFast Forward\u201d actions.\n\nSave States\n\u2022 Save and load save states for any game from the pause menu.\n\u2022 Lock save states to prevent them from being accidentally overwritten.\n\u2022 Automatically makes backup save states to ensure you never lose your progress.\n\u2022 Support for \u201cQuick Saves,\u201d save states that can be quickly saved/loaded with a single button press (requires external controller).\n\nCheats\n\u2022 Supports various types of cheat codes for each supported system:\n\u2022 NES: Game Genie\n\u2022 SNES: Game Genie, Pro Action Replay\n\u2022 N64: GameShark\n\u2022 GBC: Game Genie, GameShark\n\u2022 GBA: Action Replay, Code Breaker, GameShark\n\u2022 DS: Action Replay\n\nDeltroid Sync\n\u2022 Sync your games, game saves, save states, cheats, controller skins, and controller mappings between devices.\n\u2022 View version histories of everything you sync and optionally restore them to earlier versions.\n\u2022 Supports both Google Drive and Dropbox.\n\nCustom Controller Skins\n\u2022 Beautiful built-in controller skins for all systems.\n\u2022 Import controller skins made by others, or even make your own to share with the world!\n\nHold Button\n\u2022 Choose buttons for Delta to hold down on your behalf, freeing up your thumbs to press other buttons instead.\n\u2022 Perfect for games that typically require one button be held down constantly (ex: run button in Mario games, or the A button in Mario Kart).\n\nFast Forward\n\u2022 Speed through slower parts of games by running the game much faster than normal.\n\u2022 Easily enable or disable from the pause menu, or optionally with a mapped button on an external controller.\n\n3D/Haptic Touch\n\u2022 Use 3D or Haptic Touch to \u201cpeek\u201d at games, save states, and cheat codes.\n\u2022 App icon shortcuts allow quick access to your most recently played games, or optionally customize the shortcuts to always include certain games.\n\nGame Artwork\n\u2022 Automatically displays appropriate box art for imported games.\n\u2022 Change a game\u2019s artwork to anything you want, or select from the built-in game artwork database.\n\nMisc.\n\u2022 Gyroscope support (WarioWare: Twisted! only)\n\u2022 Microphone support (DS only)\n\u2022 Support for delta:// URL scheme to jump directly into a specific game.\n\n**Deltroid and Sidestore are in no way affiliated with Nintendo. The name \"Nintendo\" and all associated game console names are registered trademarks of Nintendo Co., Ltd.**",
"iconURL": "https://i.imgur.com/Bimx1aO.png",
"tintColor": "8A28F7",
"screenshotURLs": [
"https://user-images.githubusercontent.com/64176728/215964215-34cefad0-7178-4b38-930d-fc3df1c5592b.png",
"https://user-images.githubusercontent.com/64176728/215960133-70db5b84-d2e4-4638-9f96-179b9100aa9c.png",
"https://user-images.githubusercontent.com/64176728/215962679-1c01f62f-59ab-4e7f-9a2c-d1353fb409c6.png",
"https://user-images.githubusercontent.com/64176728/215960144-930836b3-543f-4729-8b6a-e06446aca4c4.png"
],
"versions": [
{
"absoluteVersion": "0.9.1",
"version": "1.5",
"date": "2023-02-02T10:51:30Z",
"localizedDescription": "# v0.9.1\n\n\u2022 Fixes default NES / DS skins\r\n\u2022 Fixes importing `.md` files from the in-app File Picker.",
"downloadURL": "https://github.com/lonkelle/Deltroid/releases/download/v0.9.1/Deltroid.ipa",
"size": 48342198,
"sha256": "e7334a815833de25221675380d6774a3d2cb6df03fbd56caa80b0d6da553153b"
},
{
"absoluteVersion": "0.1",
"version": "0.1",
"date": "2023-2-02T03:00:00-05:00",
"localizedDescription": "Additions and Bugfixes. More info: https://github.com/lonkelle/Deltroid/releases",
"downloadURL": "https://github.com/lonkelle/Deltroid/releases/download/v0.9.1/Deltroid.ipa",
"size": 48300000
}
],
"appID": "com.rileytestut.Deltroid"
},
{
"name": "VCMI",
"bundleIdentifier": "eu.vcmi.vcmiclient",
"developerName": "VCMI Team",
"subtitle": "Heroes of Might & Magic III engine",
"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",
"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": [
{
"absoluteVersion": "1.5.7",
"version": "1.5.7",
"buildVersion": "2024-08-25-a3e3321",
"date": "2024-08-26T13:38:22Z",
"localizedDescription": "# VCMI 1.5.7\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.6 -> 1.5.7](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#156---157)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.6..1.5.7\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- - Linux release will be available on Flathub shortly -->\r\n<!-- - Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- - Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n<!-- - Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n<!-- - Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->\r\n\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI)\r\n- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.7/VCMI-iOS.ipa",
"size": 25094551,
"sha256": "af5a26894ea7c1552e02f862589501394edaf77826087ac2958c0d8b311802a7"
},
{
"absoluteVersion": "1.5.6",
"version": "1.5.6",
"buildVersion": "2024-08-04-5313b5c",
"date": "2024-08-05T10:00:11Z",
"localizedDescription": "# VCMI 1.5.6\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.5 -> 1.5.6](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#155---156)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.5..1.5.6\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- - Linux release will be available on Flathub shortly -->\r\n<!-- - Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- - Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n<!-- - Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n<!-- - Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->\r\n\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI)\r\n- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.6/VCMI-iOS.ipa",
"size": 25092792,
"sha256": "9bdc417fbaebbcb5d1f140d10468d6262bfb59d134a67f965e4a76341bd855b9"
},
{
"absoluteVersion": "1.5.5",
"version": "1.5.5",
"buildVersion": "2024-07-16-c9fb2d6",
"date": "2024-07-17T13:39:37Z",
"localizedDescription": "# VCMI 1.5.5\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.4 -> 1.5.5](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#153---154)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.4..1.5.5\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- - Linux release will be available on Flathub shortly -->\r\n<!-- - Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- - Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n<!-- - Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n<!-- - Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->\r\n\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI)\r\n- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.5/VCMI-iOS.ipa",
"size": 25087512,
"sha256": "7d0b5579598558ef461a17bc52e7c72c16eeff587b229dcb0ed8adb35481c1af"
},
{
"absoluteVersion": "1.5.4",
"version": "1.5.4",
"buildVersion": "2024-07-11-286a70c",
"date": "2024-07-11T15:12:39Z",
"localizedDescription": "# VCMI 1.5.4\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.3 -> 1.5.4](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#153---154)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.3..1.5.4\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- - Linux release will be available on Flathub shortly -->\r\n<!-- - Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- - Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n<!-- - Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n<!-- - Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->\r\n\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release will be available on Flathub shortly\r\n- Ubuntu release will be available on VCMI PPA shortly",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.4/VCMI-iOS.ipa",
"size": 25083368,
"sha256": "48c75d7e4d160de6748243b0945a9c5c1f731c99f166c7fd7c4d6df06c428fc4"
},
{
"absoluteVersion": "1.5.3",
"version": "1.5.3",
"buildVersion": "2024-06-20-099a491",
"date": "2024-06-21T11:46:48Z",
"localizedDescription": "# VCMI 1.5.3\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.2 -> 1.5.3](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#152---153)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.2..1.5.3\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- Linux release will be available on Flathub shortly -->\r\n<!-- - Linux release is available on [Flathub](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n<!-- Ubuntu release will be available on VCMI PPA shortly -->\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release will be available on Flathub shortly\r\n- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)\r\n",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.3/VCMI-iOS.ipa",
"size": 25074651,
"sha256": "a7be5b2449ec1c190a5ef3a9f1dd00a241e8aeec3441d7757e2ce8b09a6e219f"
},
{
"absoluteVersion": "1.5.2",
"version": "1.5.2",
"buildVersion": "2024-05-30-9121fcd",
"date": "2024-05-31T08:53:43Z",
"localizedDescription": "# VCMI 1.5.2\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.1 -> 1.5.2](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#151---152)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.1..1.5.2\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- Linux release is available on [Flatpak](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n<!-- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release will be available on Flatpak shortly\r\n- Ubuntu release will be available on VCMI PPA shortly",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.2/VCMI-iOS.ipa",
"size": 25079455,
"sha256": "9d3a897fd5f7f9605263e9deed1af2460a4447c00caa8349aa50771b9b59926b"
},
{
"absoluteVersion": "1.5.1",
"version": "1.5.1",
"buildVersion": "2024-05-16-194b338",
"date": "2024-05-17T08:04:33Z",
"localizedDescription": "# VCMI 1.5.1\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.5.0 -> 1.5.1](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#150---151)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.5.0...1.5.1\r\n\r\n### Additional builds\r\n<!-- - Android release will be available on Google Play shortly -->\r\n<!-- - Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- - Linux release is available on [Flatpak](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Linux release will be available on Flatpak shortly\r\n- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.1/VCMI-iOS.ipa",
"size": 25055382,
"sha256": "58499fd576b3d51731ad16ccd4ecff19ad8eebc2fa9c800b19a91fce68209593"
},
{
"absoluteVersion": "1.5.0",
"version": "1.5",
"buildVersion": "2024-05-09-d72afb1",
"date": "2024-05-09T12:36:01Z",
"localizedDescription": "# VCMI 1.5.0\n\n<!--Warning: saved games from 1.3 release are not supported-->\r\nNote: saved games from 1.4 release can be loaded in 1.5\r\n\r\n### Changelog\r\n- Player Changelog: [1.4.5 -> 1.5.0](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#145---150)\r\n- Full Changelog: https://github.com/vcmi/vcmi/compare/1.4.5...1.5.0\r\n\r\n### Additional builds\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- - Linux release is available on [Flatpak](https://flathub.org/apps/eu.vcmi.VCMI) -->\r\n- Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n- Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.5.0/VCMI-iOS.ipa",
"size": 25048690,
"sha256": "fdc0baac54c91bd11fa16cc0bcc42f651d96b7c4d08344ee5d8df0306f2a4574"
},
{
"absoluteVersion": "1.4.5",
"version": "1.4.5",
"buildVersion": "2024-01-24-3d2f691",
"date": "2024-01-24T17:52:56Z",
"localizedDescription": "# VCMI 1.4.5\n\nWarning: saved games from 1.3 release are not supported\r\n\r\n### Changelog\r\n* Fixed crash on creature spellcasting\r\n* Fixed crash on unit entering magical obstacles such as quicksands\r\n* Fixed freeze on map loading on some systems\r\n* Fixed crash on attempt to start campaign with unsupported map\r\n* Fixed crash on opening creature information window with invalid SPELL_IMMUNITY bonus\r\n* Fixed placement of guards sometimes resulting into open connection into third zone\r\n* Fixed rare crash on multithreaded access during placement of artifacts or wandering monsters\r\n* Fixed inspector using wrong editor for some values\r\n* Fixed bug leading to AI not attacking wandering monsters in some cases\r\n* Fixed crash on using StupidAI for autocombat or for enemy players \r\n\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.4.5/VCMI-iOS.ipa",
"size": 27227187,
"sha256": "16135e899edb4515a025e4914076a738c0d336c12ed3876a4967a6b083569acf"
},
{
"absoluteVersion": "1.4.4",
"version": "1.4.4",
"buildVersion": "2024-01-19-b8f3de3",
"date": "2024-01-19T19:02:38Z",
"localizedDescription": "# VCMI 1.4.4\n\nWarning: saved games from 1.3 release are not supported\r\n\r\n### Changelog\r\n- Fixed crash random map generation\r\n\r\n### Android release will be available on Google Play shortly\r\n<!-- ### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n### Ubuntu release will be available on VCMI PPA shortly\r\n<!-- ### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.4.4/VCMI-iOS.ipa",
"size": 27223271,
"sha256": "f921d6cbb20f7b7274eaaac18ac9049bfe04aa3939139dbc18125734489d89df"
},
{
"absoluteVersion": "1.4.3",
"version": "1.4.3",
"buildVersion": "2024-01-18-dceae73",
"date": "2024-01-19T10:17:45Z",
"localizedDescription": "# VCMI 1.4.3\n\nWarning: saved games from 1.3 release are not supported\r\n\r\n### Player Changelog: [1.4.2 -> 1.4.3](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#142---143)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.4.2...1.4.3\r\n\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.4.3/VCMI-iOS.ipa",
"size": 27223378,
"sha256": "470ec5b7368e690e9e992c3ebfbb0bc22c7e460584a2d61e650663ebe0ee6ffd"
},
{
"absoluteVersion": "1.4.2",
"version": "1.4.2",
"buildVersion": "2023-12-24-a577a74",
"date": "2023-12-25T10:29:14Z",
"localizedDescription": "# VCMI 1.4.2\n\nWarning: saved games from 1.3 release are not supported\r\n\r\n### Player Changelog: [1.4.1 -> 1.4.2](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#141---142)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.4.1...1.4.2\r\n\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n### Ubuntu release will be available on VCMI PPA shortly\r\n<!-- ### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa) -->",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.4.2/VCMI-iOS.ipa",
"size": 27168719,
"sha256": "3f4fcf79a665ffee78c461b6b0d627191415d45bff092a50705b94dd48be4960"
},
{
"absoluteVersion": "1.4.1",
"version": "1.4.1",
"buildVersion": "2023-12-11-17b2ce2",
"date": "2023-12-12T10:11:34Z",
"localizedDescription": "# VCMI 1.4.1\n\nWarning: saved games from 1.3 release are not supported\r\n\r\n### Player Changelog: [1.4.0 -> 1.4.1](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#140---141)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.4.0...1.4.1\r\n\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.4.1/VCMI-iOS.ipa",
"size": 27156010,
"sha256": "f7a437912af060f28efe8fdb984b63ef79a26cb8be61b6379fd60c51a6fdf045"
},
{
"absoluteVersion": "1.4.0",
"version": "1.4",
"buildVersion": "2023-12-08-7fc60a0",
"date": "2023-12-08T13:13:49Z",
"localizedDescription": "# VCMI 1.4.0\n\nWarning: saved games from 1.3 release are not supported\r\n\r\n### Player Changelog: [1.3.2 -> 1.4.0](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#132---140)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.3.2...1.4.0\r\n\r\n### Android release will be available on Google Play shortly\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n<!-- ### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.4.0/VCMI-iOS.ipa",
"size": 27153560,
"sha256": "8d9cd0768da7866d72e4f96f8e17185f3221891b36c4b4e8de41cc579b9b00b9"
},
{
"absoluteVersion": "1.3.2",
"version": "1.3.2",
"buildVersion": "2023-09-14-09d9099",
"date": "2023-09-14T14:32:26Z",
"localizedDescription": "# VCMI 1.3.2\n\nWarning: saved games from 1.2 release are not supported\r\n\r\n### Player Changelog: [1.3.1 -> 1.3.2](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#131---132)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.3.1...1.3.2\r\n\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.3.2/VCMI-1.3.2-iOS.ipa",
"size": 27910340,
"sha256": "0966c7ad34a53d72e4b393bf18e2db48717a7cb5f9f49c25e60295b00de4d442"
},
{
"absoluteVersion": "1.3.1",
"version": "1.3.1",
"buildVersion": "2023-08-17-daa8a49",
"date": "2023-08-17T19:11:01Z",
"localizedDescription": "# VCMI 1.3.1\n\nWarning: saved games from 1.2 release are not supported\r\n\r\n### Player Changelog: [1.3.0 -> 1.3.1](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#130---131)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.3.0...1.3.1\r\n\r\n<!-- ### Android release will be available on Google Play shortly -->\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.3.1/VCMI-1.3.1-iOS.ipa",
"size": 27943336,
"sha256": "242b2e8b4ba341f1b7020475548f8decfaa9f9d333716b617d5e88dc91b08fa1"
},
{
"absoluteVersion": "1.3.0",
"version": "1.3",
"buildVersion": "2023-08-04-b972924",
"date": "2023-08-04T10:23:06Z",
"localizedDescription": "# VCMI 1.3.0\n\n### Player Changelog: [1.2.1 -> 1.3.0](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#121---130)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.2.1...1.3.0\r\n\r\n<!-- ### Android release will be available on Google Play shortly --<\r\n<!-- ### Ubuntu release will be available on VCMI PPA shortly -->\r\n### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi)\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.3.0/VCMI-1.3.0-iOS.ipa",
"size": 27919866,
"sha256": "ef45fd129da7ddacd2508e5779f726c7980a839a83afcd30cd0445218c26f0d8"
},
{
"absoluteVersion": "1.2.1",
"version": "1.2.1",
"date": "2023-04-28T18:40:12Z",
"localizedDescription": "# VCMI 1.2.1\n\n### Player Changelog: [1.2.0 -> 1.2.1](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#120---121)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.2.0...1.2.1\r\n\r\n<!-- ### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) -->\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.2.1/VCMI-1.2.1-iOS.ipa",
"size": 26347869,
"sha256": "7556bb42ca0afebad75be8ccf8a00a3121313178392f6ccb5a86059f060c3b00"
},
{
"absoluteVersion": "1.2.0",
"version": "1.2",
"date": "2023-04-14T14:08:18Z",
"localizedDescription": "# VCMI 1.2.0\n\n### Player Changelog: [1.1.1 -> 1.2](https://github.com/vcmi/vcmi/blob/master/ChangeLog.md#111---120)\r\n\r\n### Full Changelog: https://github.com/vcmi/vcmi/compare/1.1.1...1.2.0\r\n\r\n<!-- ### Android release is available on [Google Play](https://play.google.com/store/apps/details?id=is.xyz.vcmi) --->\r\n### Ubuntu release is available on [VCMI PPA](https://launchpad.net/~vcmi/+archive/ubuntu/ppa)\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.2.0/VCMI-1.2.0-iOS.ipa",
"size": 26346303,
"sha256": "8f1ea600a8156eae17de80f9f72a3cb38b4be9b087b276324192f797a3516511"
},
{
"version": "1.1.1",
"date": "2023-02-03T12:00:00+04:00",
"localizedDescription": "Fixes for issues found in 1.1 release",
"downloadURL": "https://github.com/vcmi/vcmi/releases/download/1.1.1/VCMI-1.1.1-iOS.ipa",
"size": 25570455
}
],
"appPermissions": {
"entitlements": [],
"privacy": []
},
"appID": "com.vcmi.VCMI"
},
{
"name": "Delta iPac Edition",
"bundleIdentifier": "com.ianclawson.DeltaPacEdition",
"developerName": "Riley Testut & Ian Clawson",
"subtitle": "A sneak peek preview of Delta!",
"localizedDescription": "This version of Delta is essentially the base version of Delta, but with a large number of popular and highly anticipated Pull Requests merged in. Keep in mind there are some bugs and graphical glitches. Refer to https://github.com/ianclawson/Delta-iPac-Edition#readme for more details.",
"iconURL": "https://i.imgur.com/OPkKmCO.png",
"tintColor": "#8A28F7",
"screenshotURLs": [
"https://user-images.githubusercontent.com/705880/65600448-f7d9be00-df54-11e9-9e3e-d4c31296da94.PNG",
"https://user-images.githubusercontent.com/705880/65813009-f2ae8600-e183-11e9-9eb7-704effc11173.png",
"https://user-images.githubusercontent.com/705880/65601117-58b5c600-df56-11e9-9c19-9a5ba5da54cf.PNG",
"https://user-images.githubusercontent.com/705880/65601125-5b182000-df56-11e9-9e7e-261480e893c0.PNG"
],
"versions": [
{
"absoluteVersion": "1.0.1",
"version": "1",
"date": "2021-11-19T19:13:13Z",
"localizedDescription": "# iPac Edition Official Release\n\nOnly the IPA is included. The \"Source Code\" is merely the README.\r\n\r\nNew Features:\r\n* Optimized AirPlay Support\r\n* Local Mulitplayer (NES, SNES, N64, GEN)\r\n* Nintendo-Switch-Online-like Rewind\r\n* Additional MFi Inputs (L3, R3, Options, Home, and some PS/Xbox-specific inputs)\r\n* External Controller deadzones for analog inputs (allows analog sticks to work properly for d-pads)\r\n* External Controller connection now prevents game screen from rotating\r\n* SNES Audio no longer crackles\r\n* Bonus: Quick Saves now Sync",
"downloadURL": "https://github.com/ianclawson/Delta-iPac-Edition/releases/download/1.0.1/Delta-iPac.ipa",
"size": 19765623,
"sha256": "fe1eda29ab29ad408430934a35b9d46b08e10edd7eea50b072b2b54b16b1c182"
}
]
},
{
"name": "PPSSPP",
"bundleIdentifier": "org.ppsspp.ppsspp",
"developerName": "Henrik Rydg\u00e5rd",
"subtitle": "PlayStation Portable games on iOS.",
"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",
"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"
],
"versions": [
{
"absoluteVersion": "1.13.2",
"version": "1.13.2",
"date": "2022-09-18T23:59:49Z",
"localizedDescription": "# v1.13.2\n\n",
"downloadURL": "https://github.com/QuarkSources/ppsspp-builder/releases/download/v1.13.2/PPSSPP_v1.13.2.ipa",
"size": 14509458,
"sha256": "15868764789f1187ae3ed73cb7a3c9c599c9de18239a73f5cdd51fdfdcfda66d"
}
],
"appID": "org.ppsspp.ppsspp"
},
{
"name": "Firebird Emu",
"bundleIdentifier": "com.adriweb.firebird-emu",
"developerName": "nspire-emus",
"subtitle": "ARM-based TI-Nspire calculator.",
"localizedDescription": "Third-party multi-platform emulator of the ARM-based TI-Nspire calculators.",
"iconURL": "https://i.imgur.com/U2HvZFZ.png",
"tintColor": "#010f00",
"screenshotURLs": [
"https://i.imgur.com/LT1u2bi.png"
],
"versions": [
{
"absoluteVersion": "1.6",
"version": "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.",
"downloadURL": "https://github.com/nspire-emus/firebird/releases/download/v1.6/firebird-iOS.ipa",
"size": 9953289,
"sha256": "54166448ccd9eee964b36997acff30beb1a1219cbacc1278bcc5fd1c97224e79"
},
{
"absoluteVersion": "1.5",
"version": "1.5",
"date": "2020-03-28T14:25:34Z",
"localizedDescription": "# 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.5/firebird-iOS.ipa",
"size": 9680896
}
],
"appID": "com.firebird.firebird-emu"
},
{
"name": "ActiveGS iOS",
"bundleIdentifier": "com.yoshisuga.activeGS",
"developerName": "yoshisuga & Olivier Goguel",
"subtitle": "An emulator for Apple II/2GS.",
"localizedDescription": "An emulator for all things Apple.",
"iconURL": "https://i.imgur.com/7LuLkoR.png",
"tintColor": "#21486b",
"screenshotURLs": [
"https://i.imgur.com/8xekjhv.png",
"https://i.imgur.com/JFd6LiM.png",
"https://i.imgur.com/4ZE0DbB.png"
],
"versions": [
{
"absoluteVersion": "2021.9",
"version": "2021.9",
"date": "2021-09-23T09:28:59Z",
"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",
"downloadURL": "https://github.com/yoshisuga/activegs-ios/releases/download/2021.9/ActiveGS.ipa",
"size": 16593403,
"sha256": "4ce99019167c13e1fdce6005243002591586366852ddf793fa6a6521885a4910"
}
]
},
{
"name": "Ready",
"bundleIdentifier": "at.spiderlab.c64",
"developerName": "T-Pau",
"subtitle": "8-bit games for your iPad.",
"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",
"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"
],
"versions": [
{
"absoluteVersion": "1.6.1",
"version": "1.6.1",
"buildVersion": "1",
"date": "2024-05-09T23:33:26Z",
"localizedDescription": "# Release 1.6.1\n\n- Add Commodore 128.\r\n- Add Atari 8-Bit Computers.\r\n- Add Commander X16.\r\n- Add Polyplay Trap Them Controller.\r\n- Add VIC-20 32K RAM expansion.\r\n- Update Vice to 3.5.",
"downloadURL": "https://github.com/T-Pau/Ready/releases/download/release-1.6.1/Ready-1.6.1.ipa",
"size": 73079686,
"sha256": "af018a32e58099f7f476b2034eee7ae6705a54127e7df7b31e38814cf7100ad6"
},
{
"absoluteVersion": "1.6",
"version": "1.6",
"date": "2020-07-08T15:55:00Z",
"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",
"downloadURL": "https://github.com/T-Pau/Ready/releases/download/release-1.6/Ready-1.6.ipa",
"size": 63972294,
"sha256": "379a0006350f996aa3e9b26be09bd1140553071d9301192e00f86666844e1a9b"
}
],
"appPermissions": {
"entitlements": [],
"privacy": []
},
"appID": "at.spiderlab.c64"
},
{
"name": "DolphiniOS",
"bundleIdentifier": "me.oatmealdome.dolphinios-njb",
"developerName": "OatmealDome",
"subtitle": "GameCube and Wii games on the go.",
"localizedDescription": "DolphiniOS is a port of the popular Dolphin emulator to iOS. Dolphin lets you play your favourite GameCube and Wii software with enhancements like higher resolutions, save states, and more. You can even play all of Nintendo's classics from past consoles through the Wii's Virtual Console library.\n\nPlease note that devices with A8 processors and older are not compatible.",
"iconURL": "https://cdn.oatmealdome.me/dolphinios/AppIcon.appiconset/ios_marketing1024x1024.png",
"tintColor": "41cdff",
"screenshotURLs": [
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_1.PNG",
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_2.PNG",
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_3_reup.PNG",
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_4_edit.png"
],
"versions": [
{
"version": "3.2.1",
"date": "2022-09-11T18:00:00-04:00",
"localizedDescription": "This update contains the following changes:\n\n- Fixed ubershaders.\n- Fixed fastmem crashing on iOS 16.\n\nFor more information, see https://oatmealdome.me/blog/dolphinios-ver-3-2-0/.",
"downloadURL": "https://github.com/OatmealDome/dolphin/releases/download/3.2.1/DolphiniOS-NJB-Universal-3.2.1-213.ipa",
"size": 80253902,
"sha256": "dcae6e6053d6e4e3f3f44ab9e0d2f709f77f2405243e66184d7864796d80de5c"
},
{
"version": "3.2.0",
"date": "2022-05-22T18:00:00-04:00",
"localizedDescription": "This update contains the following changes:\n\n- Fixes crashing when starting a game\n- Fixes graphical problems caused by an Apple silicon GPU driver bug\n- Integrates support for AltJIT and JitStreamer\n- Adds rumble when using the Touchscreen controller on iPhones\n\nFor more information, see https://oatmealdome.me/blog/dolphinios-ver-3-2-0/.",
"downloadURL": "https://github.com/OatmealDome/dolphin/releases/download/3.2.0/DolphiniOS-NJB-Universal-3.2.0-211.ipa",
"size": 80253902
}
],
"beta": false,
"appID": "me.oatmealdome.dolphinios-njb"
},
{
"name": "DolphiniOS (Public Beta)",
"bundleIdentifier": "me.oatmealdome.DolphiniOS-njb-patreon-beta",
"developerName": "OatmealDome",
"subtitle": "Test the latest DolphiniOS.",
"localizedDescription": "DolphiniOS is a port of the popular Dolphin emulator to iOS. Dolphin lets you play your favourite GameCube and Wii software with enhancements like higher resolutions, save states, and more. You can even play all of Nintendo's classics from past consoles through the Wii's Virtual Console library.\n\nPlease note that devices with A8 processors and older are not compatible.",
"iconURL": "https://cdn.oatmealdome.me/dolphinios/AppIcon.appiconset/BetaAppStore.png",
"tintColor": "ffbb3d",
"screenshotURLs": [
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_1.PNG",
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_2.PNG",
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_3_reup.PNG",
"https://cdn.oatmealdome.me/dolphinios/altstore/screenshots/screenshot_6s_4_edit.png"
],
"versions": [
{
"version": "4.0.0b7",
"date": "2024-01-21T20:30:00.0000000Z",
"localizedDescription": "This is the first build based on the rewritten DolphiniOS code.\n\niOS 14 is required to run this build.",
"downloadURL": "https://github.com/OatmealDome/dolphin-ios/releases/download/v4.0.0b7/Non-Jailbroken.ipa",
"size": 13775833,
"sha256": "31934065e81fd76ec082814dda8cd1ad43a92c516f6c984dfa6ae4b7b39ac782",
"minOSVersion": "14.0",
"maxOSVersion": "99.0"
},
{
"version": "3.2.1b1",
"date": "2022-07-05T18:00:00-04:00",
"localizedDescription": "This update contains the following changes:\n\n- Fixed ubershaders.\n- Fixed fastmem crashing on iOS 16 betas.\n\nThe next beta build will be based off the rewritten DolphiniOS source code.\n\nFor more information, see https://oatmealdome.me/blog/dolphinios-ver-3-2-0/.",
"downloadURL": "https://github.com/OatmealDome/dolphin/releases/download/3.2.1b1-213/DolphiniOS-NJB-Beta-Universal-3.2.1b1-213.ipa",
"size": 80291610,
"sha256": "302438ec452636ff0b033ac1561f35f95ec42c644263d318978ef6fb83fc09d8"
}
],
"appPermissions": {
"entitlements": [],
"privacy": [
{
"name": "LocalNetwork",
"usageDescription": "DolphiniOS uses the local network to find and communicate with AltServer."
}
]
},
"beta": false,
"appID": "me.oatmealdome.DolphiniOS-njb-patreon-beta"
},
{
"name": "iNDS",
"bundleIdentifier": "net.nerd.iNDS",
"developerName": "iNDS Team",
"subtitle": "Revival of the Nintendo DS emulator for iOS.",
"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",
"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",
"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.",
"downloadURL": "https://github.com/iNDS-Team/iNDS/releases/download/v1.10.8/iNDS.ipa",
"size": 8553596,
"sha256": "795253059e78f7acd96af1ce6e9430bc98611cf58342e51f8e7e6e8c459a59b0"
}
]
},
{
"name": "MAME4iOS",
"bundleIdentifier": "com.example.mame4ios",
"developerName": "yoshisuga",
"subtitle": "A MAME Arcade emulator for iOS.",
"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",
"screenshotURLs": [
"https://i.imgur.com/0JkUpEA.png",
"https://i.imgur.com/UJXiIUM.png"
],
"versions": [
{
"absoluteVersion": "2022.5",
"version": "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",
"downloadURL": "https://github.com/yoshisuga/MAME4iOS/releases/download/2022.5/MAME4iOS-2022.5-139.ipa",
"size": 52332306,
"sha256": "c3c715c4d4ffedb781141733c1e645c197a6548d30bc73e22246853d36ebc35b"
},
{
"absoluteVersion": "2022.3",
"version": "2022.3",
"date": "2022-09-17T02:33:58Z",
"localizedDescription": "# 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.3/MAME4tvOS-2022.3-139.ipa",
"size": 46033990
}
],
"appID": "com.example.mame4ios"
},
{
"name": "OldOS",
"bundleIdentifier": "com.zurac.OldOS",
"developerName": "zzanehip",
"subtitle": "OldOS is a testament to the days of iOS 4.",
"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",
"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"
],
"versions": [
{
"absoluteVersion": "1.0.18",
"version": "1.0",
"buildVersion": "18",
"date": "2021-11-23T19:01:20Z",
"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",
"downloadURL": "https://github.com/zzanehip/The-OldOS-Project/releases/download/1.0_18/OldOS.ipa",
"size": 88173533,
"sha256": "60c65a79a5fda77cb6bb42280a379196ba0ed8be5d9c03dab1da8b76a97ddb18"
}
],
"appPermissions": {
"entitlements": [],
"privacy": [
{
"name": "AppleMusic",
"usageDescription": "To view, play, and experience your music in OldOS, please enable access to your music library. "
},
{
"name": "Camera",
"usageDescription": "To take photos in OldOS, please enable access to your camera."
},
{
"name": "Contacts",
"usageDescription": "To view and manage your contacts in OldOS, please enable access to your contacts list."
},
{
"name": "LocationAlwaysAndWhenInUse",
"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."
},
{
"name": "LocationAlways",
"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."
},
{
"name": "LocationWhenInUse",
"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."
},
{
"name": "Microphone",
"usageDescription": "To record your audio while filming a video in OldOS, please in enable microphone access."
},
{
"name": "PhotoLibraryAdd",
"usageDescription": "To view, manage, and add photos to your photo library in OldOS, please enable access. Then close and re-open the Photos app."
},
{
"name": "PhotoLibrary",
"usageDescription": "To view, manage, and add photos to your photo library in OldOS, please enable access. Then close and re-open the Photos app."
}
]
},
"appID": "com.zurac.OldOS"
},
{
"name": "unc0ver",
"bundleIdentifier": "science.xnu.undecimus",
"developerName": "Pwn20wnd",
"subtitle": "The most advanced jailbreak tool.",
"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",
"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"
],
"versions": [
{
"absoluteVersion": "8.0.2",
"version": "8.0.2",
"date": "2021-12-29T21:35:42Z",
"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",
"downloadURL": "https://unc0ver.dev/downloads/8.0.2/9e44edfbfd1905cadf23c3b9ad1d5bed683ce061/unc0ver_Release_8.0.2.ipa",
"size": 54489484,
"sha256": "d385c2be158c3106266b0b7795647fe2f873905bca94874b57ef35cce6cf50f6",
"minOSVersion": "11.0",
"maxOSVersion": "14.8"
}
]
},
{
"name": "iTorrent",
"bundleIdentifier": "ru.nonamedude.iTorrent",
"developerName": "XITRIX",
"subtitle": "Ordinary iOS torrent client app.",
"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",
"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",
"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)",
"downloadURL": "https://github.com/XITRIX/iTorrent/releases/download/v1.8.3/iTorrent.ipa",
"size": 21218913,
"sha256": "f6854b9b402b522dca849469b15dd8c4c41f0fe2e3efcd2b3550f6074ece5564"
}
]
},
{
"name": "GBA4iOS",
"bundleIdentifier": "com.rileytestut.GBA4iOS",
"developerName": "Riley Testut",
"subtitle": "Game Boy games in your pocket.",
"localizedDescription": "Classic Gaming, Meet iOS.\n\nWhile iPhone and iOS have brought a new era of gaming upon us, there will always be room in our hearts for those classic games from decades ago. Unfortunately, there has been no easy way for people to play these games whenever they so desired...that is, until now. GBA4iOS was made for one purpose and one purpose only: to help everyone relive their favorite games from their past. Now, every where you take your iPhone, iPad, or iPod Touch, you can bring and play your classic games with you, giving you practically endless hours of entertainment!\n\nSo that's great and all, but what features does GBA4iOS actually have? Far too many to list in one App Store description, but here are some of the biggest:\n\n\u2022 Multiplayer (iPhone 5 or newer, iPad 4 or newer). GBA4iOS allows you to link with other players nearby and play with them, allowing you to unlock or experience certain events in games that are unavailable to just one player! Plus, nothing is cooler than playing games with your friends.\n\n\u2022 Save States. Ever get frustrated when a game requires you to save only at certain points? Well be frustrated no longer, GBA4iOS fully supports Save States, allowing you to save anywhere in the game and resume right from that point later. Even better, you can protect certain save states so you never accidentally overwrite them (and as everyone knows losing game data is one of the worst things in the world).\n\n\u2022 Cheat Codes. Sometimes games are just too hard, and you need a little boost to help defeat it. GBA4iOS allows you to input and use GameShark, Action Replay, Code Breaker, and Game Genie codes as you see fit. Don't worry, we won't judge!\n\n\u2022 Fast Forward (iPhone 4s or newer, iPad 2 or newer, iPod Touch 5th Gen). Don't you wish there was a way to speed up long cutscenes in games, or to reduce the time doing boring tasks in the game? Well, now there is! GBA4iOS allows you to \"Fast Forward\" through slow parts of the game, allowing you to get back to the fun even quicker.\n\n\u2022 Customizable Controller Skins. Want to change the look of the controller to something more personal? No worries, you can download a multitude of new controller skins from within the app, or download almost countless more from the web! You'll definitely be able to find a controller skin you like.\n\n\u2022 Dropbox Sync. Have multiple devices, or worried something will happen to your games? Dropbox Sync solves both these issues! When enabled, GBA4iOS will sync your game saves, save states, and cheat codes to Dropbox, keeping any and all your devices up to date with your latest changes. Plus, this means your game data is always backed up in the cloud, so if something happens to your device, your data is safe.\n\n\u2022 MFi Controller Support. Sometimes, touchscreen buttons just aren't good enough for the level of precision needed by some games. Luckily, GBA4iOS supports MFi Controllers, allowing you to connect and use physical controllers with your games! Now you can beat that final boss without a sweat.\n\nAll this and more ensures that GBA4iOS will give you the best portable gaming experience, hands down. So what are you waiting for, download GBA4iOS now and enjoy reliving your favorite classic games immediately!",
"iconURL": "https://i.imgur.com/SBrqO9g.png",
"tintColor": "78209d",
"screenshotURLs": [
"https://i.imgur.com/L4H0yM3.png",
"https://i.imgur.com/UPGYLVr.png",
"https://i.imgur.com/sWpUAii.png",
"https://i.imgur.com/UwnDXRc.png"
],
"versions": [
{
"version": "2.1",
"date": "2020-03-24T14:30:00-07:00",
"localizedDescription": "Initial AltStore release!",
"downloadURL": "https://f000.backblazeb2.com/file/altstore/sources/demo/GBA4iOS.ipa",
"size": 7924507,
"sha256": "523ede3000e89716dc6e16f04ddd1d6e66a950a9295784769dab3e65a5ecc351"
}
],
"appID": "com.rileytestut.GBA4iOS"
},
{
"name": "RetroArch",
"bundleIdentifier": "com.libretro.RetroArchiOS11",
"developerName": "libretro",
"subtitle": "Cross-platform, sophisticated frontend for emulation.",
"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",
"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-17",
"localizedDescription": "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",
"size": 435770036,
"sha256": "d790ce8ef9c2b8f9cd2c974f4e70690aa24c0a99cdb8c65ed235b790c1f0c47e"
},
{
"version": "1.9.0",
"date": "2020-08-07",
"localizedDescription": "Many bug fixes and quality of life improvements. See full changelog for details: https://github.com/libretro/RetroArch/blob/master/CHANGES.md",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/RetroArch.ipa",
"size": 255389680
}
],
"appID": "com.libretro.RetroArchiOS11"
},
{
"name": "Rewound",
"bundleIdentifier": "com.louisanslow.record",
"developerName": "Louis Anslow",
"subtitle": "Turn your iPhone into an iPod. Classic.",
"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",
"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",
"localizedDescription": "Small fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Rewound.ipa",
"size": 5628716,
"sha256": "6fe3f0e30e23e1a0a3f224245dfdb1f804de7bedf46496110b797eb271282721"
}
],
"appID": "com.louisanslow.record"
},
{
"name": "ScummVM",
"bundleIdentifier": "org.scummvm.scummvm",
"developerName": "ScummVM Team",
"subtitle": "Point and click adventures.",
"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",
"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",
"localizedDescription": "Bug fixes.",
"downloadURL": "https://downloads.scummvm.org/frs/scummvm/2.6.0/scummvm-2.6.0-ios.ipa",
"size": 92033520,
"sha256": "2d4a5cd37e20075af432af8fb072d1a204746da8edeb469714462ae603be329a"
},
{
"version": "2.2.0",
"date": "2020-09-13",
"localizedDescription": "Bug fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/ScummVM.ipa",
"size": 57222372
}
],
"appID": "org.scummvm.scummvm"
},
{
"name": "Mini vMac",
"bundleIdentifier": "net.namedfork.minivmac",
"developerName": "Gryphel Project & zydeco",
"subtitle": "A miniature early Macintosh emulator.",
"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",
"screenshotURLs": [
"https://i.imgur.com/Huqxo8z.png",
"https://i.imgur.com/Pq2vIrO.png",
"https://i.imgur.com/A7koKUp.png",
"https://i.imgur.com/IhtYS9E.png"
],
"versions": [
{
"absoluteVersion": "2.6",
"version": "2.6",
"buildVersion": "15",
"date": "2024-07-09T16:09:01Z",
"localizedDescription": "# Mini vMac for iOS v2.6\n\n* Added 512\u00d7384 variant of Mac II\r\n* Requires iOS 13.4\r\n * Dropping 32-bit support (iOS 9) made the app smaller\r\n* Prefer pixel-perfect scaling when display scaling filter is set to nearest\r\n* Auto-hide iOS home indicator\r\n* Partially fix some command-key shortcuts going to iOS instead of the emulated Mac (#45)\r\n * \u2318-w and most others will get passed to the emulated machine if it's running\r\n * \u2318-q and \u2318-h don't seem interceptable, the app doesn't receive any key events for them, but \u2318-q doesn't do anything (or maybe it does in some other configuration?), and \u2318-h will take you to the home screen\r\n* visionOS support (only tested in simulator)\r\n\r\n**Full Changelog**: https://github.com/zydeco/minivmac4ios/compare/v2.5...v2.6",
"downloadURL": "https://github.com/zydeco/minivmac4ios/releases/download/v2.6/minivmac4ios-2.6.ipa",
"size": 668434,
"sha256": "cbe597bfd3e3e9b412ef0117a374453e51e5444db56dd46a267f9950bff64ad4"
},
{
"absoluteVersion": "2.5",
"version": "2.5",
"date": "2022-05-26T18:30:55Z",
"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",
"downloadURL": "https://github.com/zydeco/minivmac4ios/releases/download/v2.5/minivmac4ios-2.5.ipa",
"size": 1194371,
"sha256": "2d3fd7a540944d46c1c968dbc88434deffea93a14a54f06191436fc804e9796b"
}
],
"appPermissions": {
"entitlements": [],
"privacy": []
},
"appID": "net.namedfork.minivmac"
},
{
"name": "Filza Escaped",
"bundleIdentifier": "com.dry05.filzaescaped11-12",
"developerName": "Bas vT",
"subtitle": "iOS 12-13 file manager for jailed iPhones.",
"localizedDescription": "It's just normal Filza but for jailed iPhones running iOS 12.1.3 - 13.4.1. This is possible using the Psychic Paper exploit to gain greater file access on stock iOS. Since the exploit used here was patched in iOS 13.5, do not expect many further updates to this application and it will likely never work the same on iOS 13.5 and up.",
"iconURL": "https://i.imgur.com/VsEGbQN.png",
"tintColor": "#d5ad0b",
"screenshotURLs": [
"https://i.imgur.com/KBkDKkN.png"
],
"versions": [
{
"version": "3.7",
"date": "2020-05-04",
"localizedDescription": "iOS 13 support.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Filza-Escaped.ipa",