-
Notifications
You must be signed in to change notification settings - Fork 17
/
quantumsource++.json
1979 lines (1979 loc) · 149 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 tweaked apps, free streaming, cracked apps, 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 streaming services without ads, to custom themed App Store apps. 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.spotify.client",
"com.streamer.ios",
"com.google.ios.youtube",
"com.marcuszhou.NineAnimator",
"com.hammerandchisel.discord"
],
"apps": [
{
"name": "Emnity",
"bundleIdentifier": "com.hammerandchisel.discord",
"developerName": "Emnity Team",
"subtitle": "The power of addons, all in your hand.",
"localizedDescription": "Add plugins and themes to Discord!",
"iconURL": "https://files.enmity.app/icon-altstore.png",
"tintColor": "#6D00FF",
"screenshotURLs": [
"https://i.imgur.com/Xg65i1U.png",
"https://i.imgur.com/97x9gcA.png"
],
"versions": [
{
"absoluteVersion": "2.2.6",
"version": "177.1",
"date": "2023-05-13T14:40:38Z",
"localizedDescription": "# Enmity v2.2.6\n\n",
"downloadURL": "https://github.com/enmity-mod/tweak/releases/download/v2.2.6/Enmity.ipa",
"size": 94911970,
"sha256": "c22949b6a99acfd32080b27e268d52173ad8917dc5020c7f1f982c4a428ed994"
},
{
"absoluteVersion": "2.2.5",
"version": "175.0",
"date": "2023-04-16T13:31:23Z",
"localizedDescription": "# Enmity v2.2.5\n\n",
"downloadURL": "https://github.com/enmity-mod/tweak/releases/download/v2.2.5/Enmity.ipa",
"size": 87875692,
"sha256": "98f1769f8edaa10fac44b75997b7e7820b7d52a69568111282d3325fa8922d62"
},
{
"absoluteVersion": "2.1.4",
"version": "155.0",
"date": "2022-11-29T00:39:49Z",
"localizedDescription": "# v2.1.4\n\n",
"downloadURL": "https://github.com/enmity-mod/tweak/releases/download/v2.1.4/Enmity.ipa",
"size": 79750354
}
],
"appID": "com.hammerandchisel.discord"
},
{
"name": "iVanced for YouTube",
"bundleIdentifier": "com.google.ios.youtube",
"developerName": "TherionRO",
"subtitle": "A strong suite of improvements to YouTube!",
"localizedDescription": "iVanced for YouTube is a modded application for iPhone user with or without jailbreak. iVanced supports adblocking, dislikes, skip sponsors (iSponsorBlock) and many more customizations and features! All of this without charging you anything: no subscriptions, no unlocks.",
"iconURL": "https://i.imgur.com/ZCtZ5W4.png",
"tintColor": "#6D00FF",
"screenshotURLs": [],
"versions": [
{
"absoluteVersion": "19.08.2",
"version": "19.08.2",
"buildVersion": "19.08.2",
"date": "2024-02-27T14:56:49Z",
"localizedDescription": "# iVanced 19.08.2\n\niVanced for YouTube 19.08.2 |\r\n\r\nDownload from AppDb : https://appdb.to/app/cydia/1900001075 or download the .ipa file from this release.",
"downloadURL": "https://github.com/TherionRO/YouTubeiVanced/releases/download/release19.08.2/iVanced_19.08.2.ipa",
"size": 132283385,
"sha256": "6d0cd99497c71fc29b41b6858978f005ec89ba772e374b7136bc8d940c507dc9"
},
{
"absoluteVersion": "19.06.2",
"version": "19.06.2",
"buildVersion": "19.06.2",
"date": "2024-02-12T17:27:29Z",
"localizedDescription": "# iVanced 19.06.2\n\niVanced for YouTube 19.06.2 |\r\n\r\nDownload from AppDb : https://appdb.to/app/cydia/1900001075 or download the .ipa file from this release.",
"downloadURL": "https://github.com/TherionRO/YouTubeiVanced/releases/download/release19.06.2/iVanced_19.06.2.ipa",
"size": 126381167,
"sha256": "345a5e7c665380bbd1ae86da9fa7434acdb01bf3f7e938773d9390620c7c0f18"
},
{
"absoluteVersion": "19.05.5",
"version": "19.05.5",
"buildVersion": "19.05.5",
"date": "2024-02-07T16:16:52Z",
"localizedDescription": "# iVanced 19.05.5\n\niVanced for YouTube 19.05.5 |\r\n\r\nDownload from AppDb : https://appdb.to/app/cydia/1900001075 or download the .ipa file from this release.",
"downloadURL": "https://github.com/TherionRO/YouTubeiVanced/releases/download/release19.05.5/iVanced_19.05.5.ipa",
"size": 127403638,
"sha256": "cde72a24ef5b9db8a25b52bf440e64545dfccab2c0d52b1d9ffc4f756470a911"
},
{
"absoluteVersion": "19.05.3",
"version": "19.05.3",
"buildVersion": "19.05.3",
"date": "2024-02-05T13:29:38Z",
"localizedDescription": "# iVanced 19.05.3\n\niVanced for YouTube 19.05.3 |\r\n\r\nDownload from AppDb : https://appdb.to/app/cydia/1900001075 or download the .ipa file from this release.",
"downloadURL": "https://github.com/TherionRO/YouTubeiVanced/releases/download/release19.05.3/iVanced_19.05.3.ipa",
"size": 134004996,
"sha256": "1a40d70adb2dfc28c5576da151a1e804b532d7df43413a650e19b3c041437f4e"
},
{
"absoluteVersion": "19.04.3",
"version": "19.04.3",
"buildVersion": "19.04.3",
"date": "2024-02-03T12:02:11Z",
"localizedDescription": "# iVanced 19.04.3\n\niVanced for YouTube 19.04.3 |\r\n\r\nDownload from AppDb : https://appdb.to/app/cydia/1900001075 or download the .ipa file from this release.\r\n\r\nQuick note: iVanced logo and other small patches will come back in a future update.This is a quick update to the latest youtube base,uyou&uyouplus and other tweaks.",
"downloadURL": "https://github.com/TherionRO/YouTubeiVanced/releases/download/release19.04.3/iVanced_19.04.3.ipa",
"size": 127321489,
"sha256": "79fabe06f85e0d01e2d0075ab52507e4402b761d6df712b3c8baba78e9b2b88c"
},
{
"absoluteVersion": "18.20.03",
"version": "18.20.3",
"buildVersion": "18.20.3",
"date": "2023-05-25T16:14:47Z",
"localizedDescription": "# iVanced 18.20.03\n\niVanced for YouTube 18.20.03 |\r\n\r\nDownload from AppDb : https://appdb.to/app/cydia/1900001075 or download the .ipa file from this release.",
"downloadURL": "https://github.com/TherionRO/YouTubeiVanced/releases/download/release18.20.03/iVanced_18.20.3.ipa",
"size": 121168063,
"sha256": "37740aeb43b7faca359bcb46ecfaca410739a2c027d01424967e530495ed0c6e"
}
],
"appPermissions": {
"entitlements": [],
"privacy": [
{
"name": "AppleMusic",
"usageDescription": "This lets you add your own audio files to your videos."
},
{
"name": "BluetoothPeripheral",
"usageDescription": "YouTube needs bluetooth access to scan for nearby Cast devices."
},
{
"name": "Camera",
"usageDescription": "This lets you create videos using the app."
},
{
"name": "Contacts",
"usageDescription": "Your contacts will be sent to YouTube servers to help you find friends to share videos with."
},
{
"name": "LocalNetwork",
"usageDescription": "Access to your network allows YouTube to discover and connect to devices such as your TV."
},
{
"name": "LocationWhenInUse",
"usageDescription": "Makes it easier for you to attach location information to your videos and live streams and allows for features such as improved recommendations and ads."
},
{
"name": "Microphone",
"usageDescription": "This lets you include audio with your videos and search using your voice."
},
{
"name": "PhotoLibrary",
"usageDescription": "This lets you upload media you've already created."
}
]
},
"appID": "com.google.ios.youtube.ivanced"
},
{
"name": "Streamer",
"bundleIdentifier": "com.streamer.ios",
"developerName": "StreamerApp",
"subtitle": "App for Streaming Movies and TV shows",
"localizedDescription": "App for Streaming Movies and TV shows on iOS and tvOS.\n\n- Stream all TV shows and Movies from multiple websites without any annoying ads\n- Supports Chromecast to stream to FireTV and Chromecasts\n- Supports multi-language subtitles for iOS and tvOS\n- Favorite functionality to quickly access your favorite shows and movies\n",
"iconURL": "https://i.imgur.com/JbUuxP9.png",
"tintColor": "#5e5e5e",
"screenshotURLs": [
"https://user-images.githubusercontent.com/96978272/191682372-93158122-160c-446e-9384-282833cc5626.png",
"https://user-images.githubusercontent.com/96978272/191682918-b644aa53-3084-4c3b-b809-97f1b010f985.png",
"https://user-images.githubusercontent.com/96978272/191682352-3cb452c1-081e-4981-9dcc-6246a4b6ff4c.png",
"https://user-images.githubusercontent.com/96978272/191682345-f882e099-3ba3-4851-b5db-b9709bc64abe.png"
],
"versions": [
{
"absoluteVersion": "1.2.38",
"version": "1.2.38",
"buildVersion": "344",
"date": "2024-04-24T21:37:13Z",
"localizedDescription": "# V 1.2.38 Release\n\n- **New Feature: Custom Stremio Addon Support**\r\n - You can now add your own custom Stremio addons to Streamer! These addons currently support IMDB and direct links, but torrent support is not available. Most self-hosted addons should work seamlessly.\r\n\r\n- **Enhancements: Jackett and Annatar Configurations**\r\n - We've updated the support for Jackett and Annatar configurations. Enjoy improved performance and compatibility.\r\n\r\n- **Bug Fixes and New Provider: Filma24**\r\n - The Flixtor provider has been fixed, and we've also added a new Albanian provider called Filma24.\r\n - Additionally, this release includes various small bug fixes and overall improvements.\r\n\r\n<img width=\"627\" alt=\"Custom Stremio Addon Support\" src=\"https://github.com/StreamerApp/Streamer/assets/96978272/50aceceb-27ca-4807-ac95-ced248552149\">\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.38/Streamer-iOS.ipa",
"size": 37008501,
"sha256": "cf23743736ebdcbb8f0329e9ac02aac9553510a69a59c97ff23f9b5d460c8b08"
},
{
"absoluteVersion": "1.2.37",
"version": "1.2.37",
"buildVersion": "338",
"date": "2024-03-10T21:25:19Z",
"localizedDescription": "# V 1.2.37 Release\n\n- Fixes WeCima, Shahid4U, FilmPalast and KinoKiste\r\n- Fixes Jackett integration and updated Annatar integration\r\n- squashed a lot of bugs ",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.37/Streamer-tvOS.ipa",
"size": 27989205,
"sha256": "76dd28962d1adc0898b3d0606e74360f3ba2d49f6a8688a038906686a4f9ac41"
},
{
"absoluteVersion": "1.2.36",
"version": "1.2.36",
"buildVersion": "337",
"date": "2024-02-26T17:38:17Z",
"localizedDescription": "# V 1.2.36 Release\n\n- **Jackett and Annatar Integration**: Streamer now supports connecting to your own Jackett or Annatar servers, or using the ones hosted by Elfhosted. This allows you to access a wide range of torrent providers and sources for your streaming needs.\r\n\r\n- **Provider Management**: You can now customize the list of available providers by hiding the ones you don't want to use in the Advanced settings. Additionally, you can enable the \"Multi-Provider Search\" feature, which will search across all the enabled providers and display the results from each one when you look for a TV show or a movie.\r\n\r\n- **Catalog Browser**: You can now browse the catalog of your debrid services in the Debrid settings page. This lets you see what content is available on your debrid accounts and stream them directly from there.\r\n\r\n- **Trakt and Favourites**: You can now choose to replace the Trakt tab with the Favourites tab in the tabbar. This gives you quick access to your favourite TV shows and movies without having to log in to Trakt.\r\n\r\n- **Universal Resolvers UI**: We have revamped the user interface for the Universal Resolvers settings, making it easier and more intuitive to configure your resolvers and debrid services.\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.36/Streamer-tvOS.ipa",
"size": 27865131,
"sha256": "8b8e4b20ca72a0b50b87072076e919586b4874424df1f728b8ca059363365f96"
},
{
"absoluteVersion": "1.2.35",
"version": "1.2.35",
"buildVersion": "324",
"date": "2024-01-23T20:30:37Z",
"localizedDescription": "# V 1.2.35 Release\n\n- Fix critical universal resolvers bug where selecting any episode in any TV show always resolves the first episode of that season. \r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.35/Streamer-iOS.ipa",
"size": 35883770,
"sha256": "3ecb6c21e45dd15d9bbb0a731eefbc31b09cb90b3f76c4e829535fc7a1f35e2a"
},
{
"absoluteVersion": "1.2.34",
"version": "1.2.34",
"buildVersion": "323",
"date": "2024-01-22T21:14:54Z",
"localizedDescription": "# V 1.2.34 Release\n\n- Improved Trakt Integration: \r\n - Sync your progress with Trakt faster and easier\r\n - Check your upcoming and previous episodes in the new Calendar view\r\n- Automatically open the first season with unwatched episodes when you select a TV show\r\n- Add a Skip button for Apple and Streamer players at 90% of the movie/show duration\r\n- iOS: Add an option to change the aspect ratio for the Streamer Player\r\n- iOS: Add an option to change the poster size\r\n- iOS: Add option to lock the player rotation in landscape mode\r\n- Add an option to watch trailers in the YouTube app\r\n- Add an option to change the language for TMDb information\r\n- Add Italian and Portuguese translations \r\n- Get better recommendations for movies and TV shows in the details page\r\n- Fixed a bug where the \"Auto\" quality option was not displayed in the links list\r\nAnd many more fixes and improvements\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.34/Streamer-iOS.ipa",
"size": 35884367,
"sha256": "e48a77ae7a46cdf9d7d39a4807814938c7042d2b1a56d571edc63ec207681dd8"
},
{
"absoluteVersion": "1.2.33",
"version": "1.2.33",
"buildVersion": "305",
"date": "2024-01-02T22:23:21Z",
"localizedDescription": "# V 1.2.33 Release\n\n- Improved the design and layout of the Movie and TV shows details page\r\n- Enhanced Trakt integration: You can now sync your favourites with Trakt.tv and access your history, watch list, favourites, and personal lists from a dedicated Trakt section in the favourite page.\r\n- Resolved the Airpod audio issue for the Streamer Player\r\n- Added custom icons for iOS and tvOS, thanks to @E3P\r\n- Added translations for Spanish, German, French, and Arabic. The Spanish translations are done by @E3P, while the other translations are generated automatically. If you encounter any bug, you can contribute to the translations here: https://crowdin.com/project/streamerapp\r\n- Tap on Actors to check out their other movies/tv shows\r\n- Added Related movies/tv shows section to the details page\r\n\r\n<details><summary>Screenshots</summary>\r\n<p>\r\n\r\n![Simulator Screenshot - Apple TV 4K 17 2 - 2024-01-02 at 23 16 52](https://github.com/StreamerApp/Streamer/assets/96978272/7941f594-ee46-4bdc-bde5-2f8d1bfd0fb2)\r\n\r\n![Simulator Screenshot - Apple TV 4K 17 2 - 2024-01-02 at 23 16 59](https://github.com/StreamerApp/Streamer/assets/96978272/dcadbee3-9ff6-4ded-8b63-747de1da5d98)\r\n\r\n![Simulator Screenshot - Apple TV 4K 17 2 - 2024-01-02 at 23 17 07](https://github.com/StreamerApp/Streamer/assets/96978272/6a6cf0d6-61d1-4fed-a6d7-b5cf3ec4e5b6)\r\n\r\n![Simulator Screenshot - iPhone 15 - 2024-01-02 at 23 13 10](https://github.com/StreamerApp/Streamer/assets/96978272/d466329b-ce12-427f-ad7c-4b24d68e6fc1)\r\n![Simulator Screenshot - iPhone 15 - 2024-01-02 at 23 12 57](https://github.com/StreamerApp/Streamer/assets/96978272/863d5646-2dbf-4ed0-bb1b-349d9b58e982)\r\n![Simulator Screenshot - iPhone 15 - 2024-01-02 at 23 12 41](https://github.com/StreamerApp/Streamer/assets/96978272/83082c8f-51d2-4533-9060-67f2df8b8ed4)\r\n![Simulator Screenshot - iPhone 15 - 2024-01-02 at 23 12 25](https://github.com/StreamerApp/Streamer/assets/96978272/58951097-7d2d-4229-b5ba-46ca610dca9a)\r\n![Simulator Screenshot - iPhone 15 - 2024-01-02 at 23 12 16](https://github.com/StreamerApp/Streamer/assets/96978272/a1591ee8-f9c7-4c95-afde-83feb3877354)\r\n\r\n</p>\r\n</details>",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.33/Streamer-iOS.ipa",
"size": 35282153,
"sha256": "1b3ddedaf58ad004848ab796285ac66e622ac2d0b40fda58dcbd285fd29ef075"
},
{
"absoluteVersion": "1.2.32",
"version": "1.2.32",
"buildVersion": "290",
"date": "2023-12-16T10:47:47Z",
"localizedDescription": "# V 1.2.32 Release\n\n**New Features:**\r\n- Include \"Exclude qualities/resolutions\" and \"Video size limit\" options for torrentio settings\r\n- Include \"Video Quality\" option for Orion settings\r\n- Provide Parent's guide in the details view for movies and TV shows. This option can be activated from the advanced settings\r\n- Display TV and movie icons in the search results and improve the search results layout for iOS\r\n- Include an \"Auto-play trailer\" option in the advanced settings to automatically play the trailer in the details view \r\n- Include an \"Enabled Video Qualities\" option in the advanced settings to filter out specific video qualities from the results \r\n- Implement a feature to show the Trakt WatchList on the home page\r\n- Include vertical subtitle alignment option in subtitles settings\r\n\r\n**Fixes:** \r\n- Resolve Streamer player hanging issue when opening content with saved progress\r\n- Resolve Flixtor provider issue\r\n\r\n**Mac:**\r\n- Enable IINA player compatibility for the Mac app\r\n- Fixes Trakt login button not opening the browser \r\n\r\n**tvOS:**\r\n- Allow tvOS users to adjust the number of posters per row in the advanced settings\r\n- Resolve app resetting issue when switching TV profiles\r\n\r\n**iOS:**\r\n- Include new functionality to share some file types (mainly MBP and RD) from the downloads section for iOS. This allows users to save to the files app or open it in any other player\r\n\r\n\r\n<details><summary>Screenshots</summary>\r\n<p>\r\n\r\nhttps://github.com/StreamerApp/Streamer/assets/96978272/2c48977d-27dc-4100-8b42-2573707f2ea7\r\n\r\n\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-12-16 at 11 41 52](https://github.com/StreamerApp/Streamer/assets/96978272/513c0a3b-8c29-4644-a570-802149d2654e)\r\n![Simulator Screenshot - iPhone 15 - 2023-12-16 at 11 44 01](https://github.com/StreamerApp/Streamer/assets/96978272/397d01b3-5420-4f6c-b32b-52aa382168dd)\r\n![Simulator Screenshot - iPhone 15 - 2023-12-16 at 11 43 51](https://github.com/StreamerApp/Streamer/assets/96978272/f6ed2186-7266-42d1-9533-266175acadef)\r\n\r\n![Simulator Screenshot - iPhone 15 - 2023-12-16 at 11 44 42](https://github.com/StreamerApp/Streamer/assets/96978272/893533cc-f365-4995-9768-8e46a9b03f91)\r\n![Simulator Screenshot - iPhone 15 - 2023-12-16 at 11 44 38](https://github.com/StreamerApp/Streamer/assets/96978272/cfda017b-e391-4985-84a5-dc2f7039d702)\r\n![simulator_screenshot_40101253-E3F3-4EE5-945A-A6DDCB45F7B7](https://github.com/StreamerApp/Streamer/assets/96978272/91c4a64b-6ee5-409e-9ad1-af66e7b4374a)\r\n\r\n</p>\r\n</details>",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.32/Streamer-iOS.ipa",
"size": 27651126,
"sha256": "ead6aba45dfa489c572d7761861c150226ee4df8498c8c1ee163fce90f1e153d"
},
{
"absoluteVersion": "1.2.31",
"version": "1.2.31",
"buildVersion": "280",
"date": "2023-12-03T14:05:56Z",
"localizedDescription": "# V 1.2.31 Release\n\n- You can now enjoy the theme music of your favorite Movie/TV show when you open its details page. To enable this feature, go to Advanced Settings and turn on the option. \ud83c\udfb6\r\n- We have added a new section for streamer player in Advanced settings. Here you can customize your streaming preferences and quality.\r\n- We have fixed a bug that caused the app to crash when accessing Universal resolver settings. We have also improved the layout of this screen for a better user experience.\r\n- We are excited to announce the first version of our Mac app. \ud83d\udcbb \r\n\r\n<img width=\"810\" alt=\"Screenshot 2023-12-03 at 15 06 44\" src=\"https://github.com/StreamerApp/Streamer/assets/96978272/e6cf1b39-75f3-4b38-91ac-026d7d4d1d27\">\r\n\r\n![simulator_screenshot_1B6F10FB-D2C0-4166-A2DF-B7F0A2B1F366](https://github.com/StreamerApp/Streamer/assets/96978272/d80f74d9-0ca3-4cd4-bf88-ec170780689f)\r\n\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.31/Streamer-iOS.ipa",
"size": 26044049,
"sha256": "6acc6469ceadd5c89da51fff8c56077b5723389d91927a5e80e2a2a599f08e1a"
},
{
"absoluteVersion": "1.2.30",
"version": "1.2.30",
"buildVersion": "20",
"date": "2023-11-23T00:12:18Z",
"localizedDescription": "# V 1.2.30 Release\n\n- Added a new feature to Trakt integration that allows users to display their currently watching list on the home page.\r\n- Resolved a bug that caused Universal Resolvers to crash on iOS 15 devices.\r\n- Improved the UI of Streamer player on iOS by fixing some minor issues.\r\n- Enhanced the Streamer player on tvOS by displaying the filename and filesize of the selected media.\r\n- Fixed the 4k detection issue for EasyNews links.\r\n- Redesigned the link selection screen for Universal Resolvers to provide a better user experience.\r\n- Fixes loading movie details\r\n\r\n![Simulator Screenshot - iPhone 15 - 2023-11-22 at 13 17 20](https://github.com/StreamerApp/Streamer/assets/96978272/67d55aaf-d8ee-49d8-a388-4a6f1b813494)\r\n![Simulator Screenshot - iPhone 15 - 2023-11-22 at 10 45 43](https://github.com/StreamerApp/Streamer/assets/96978272/c4a97bd6-1d68-438e-9f79-ddbfa6174b84)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-11-22 at 13 18 25](https://github.com/StreamerApp/Streamer/assets/96978272/82a40840-c15e-48dd-9ae0-764f019834fa)\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.30/Streamer-tvOS.ipa",
"size": 18702364,
"sha256": "1c435a513fd1656a119de19f9f213abe866ced6f8ec6b3dd8d1ec20944b9c9b0"
},
{
"absoluteVersion": "1.2.29",
"version": "1.2.29",
"buildVersion": "256",
"date": "2023-11-19T16:37:06Z",
"localizedDescription": "# V 1.2.29 Release\n\n- Added support for various universal resolvers such as RealDebrid, Premiumize, AllDebrid, DebridLink, Offcloud and Orion\r\n- Fixed Trakt integration so that the app can update the progress for any content (TV show or movie) that is opened\r\n- Added the ability to search OpenSubtitles in Streamer Player on AppleTV devices\r\n- Added IMDB, Rotten Tomatoes and Metacritic ratings and reviews for movies and TV shows\r\n- Fixed an issue where subtitles background would stretch across the entire screen\r\n- Fixed a bug that caused Streamer sound to malfunction on iOS devices\r\n- Fixed a glitch that occurred when scrolling on the listing screen on tvOS devices\r\n\r\n![Simulator Screenshot - iPhone 15 - 2023-11-19 at 17 37 23](https://github.com/StreamerApp/Streamer/assets/96978272/ec54f27a-5b42-4ae4-b383-c1c26c766a30)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-11-14 at 21 48 53](https://github.com/StreamerApp/Streamer/assets/96978272/5287214e-df7b-49a8-9e82-de6070f580a8)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-11-14 at 21 48 49\r\n![simulator_screenshot_01FB85EC-CAB7-4570-B746-AE04FA432791](https://github.com/StreamerApp/Streamer/assets/96978272/1b0cfd2a-11b9-4a70-8aa6-7c240a691d90)\r\n](https://github.com/StreamerApp/Streamer/assets/96978272/c3c78146-d068-4b60-9ed8-a20275f21680)\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.29/Streamer-iOS.ipa",
"size": 23815027,
"sha256": "6df1486e45f19da037fb8788e8e4c89b3f3ed3b1009cd5b2f4cb8e1b4a58097e"
},
{
"absoluteVersion": "1.2.28",
"version": "1.2.28",
"buildVersion": "243",
"date": "2023-11-11T12:10:27Z",
"localizedDescription": "# v 1.2.28 Release\n\n- **Trakt integration**: You can now sync your viewing history and progress across different devices and apps by connecting Streamer to Trakt, a platform for tracking TV shows and movies.\r\n- **New Streamer Player for Apple TV:** We have redesigned the Streamer Player for Apple TV to make it more simple and intuitive for you to enjoy your favorite content.\r\n- **Apple TV Home**: You can now access your continue watching section from your Apple TV home screen, so you can easily resume where you left off.\r\n- **Episode status**: You can now long press on any episode and mark it as watched or unwatched. This will also sync with your Trakt account, if you have one.\r\n- **Subtitle delay**: You can now adjust the subtitle delay for Streamer Player on iOS and Apple TV, so you can sync the subtitles with the audio.\r\n\r\nand lot's of small bug fixes and improvements\r\n<img width=\"1912\" alt=\"Screenshot 2023-11-11 at 13 06 55\" src=\"https://github.com/StreamerApp/Streamer/assets/96978272/d8967fe2-0f51-4725-a430-21c33588bcdc\">\r\n<img width=\"1912\" alt=\"Screenshot 2023-11-11 at 13 07 08\" src=\"https://github.com/StreamerApp/Streamer/assets/96978272/c8a871d8-23f4-4234-8b1a-d08f895b14b4\">\r\n<img width=\"1912\" alt=\"Screenshot 2023-11-11 at 13 07 23\" src=\"https://github.com/StreamerApp/Streamer/assets/96978272/33fdffcb-6bf3-4d38-92ca-dace17bd4ae6\">\r\n<img width=\"1912\" alt=\"Screenshot 2023-11-11 at 13 07 39\" src=\"https://github.com/StreamerApp/Streamer/assets/96978272/dcbbd8a1-7bc3-41e2-ae9f-59a560b01970\">\r\n![Simulator Screenshot - Apple TV - 2023-11-11 at 13 02 42](https://github.com/StreamerApp/Streamer/assets/96978272/384388ee-bd32-4a2c-8446-f6cabd8510ca)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-11-10 at 20 47 42](https://github.com/StreamerApp/Streamer/assets/96978272/0401ccbc-d85d-4b54-b33e-03a966d5944d)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-11-11 at 13 06 07](https://github.com/StreamerApp/Streamer/assets/96978272/4717b972-42dd-4f54-9ea3-4491cc54ab5d)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) (at 1080p) - 2023-11-11 at 13 11 20](https://github.com/StreamerApp/Streamer/assets/96978272/e266d3c0-edd1-43c0-91d9-81fcc1eca50c)\r\n![Simulator Screenshot - iPad Pro (12 9-inch) (6th generation) (16GB) - 2023-11-11 at 01 51 17](https://github.com/StreamerApp/Streamer/assets/96978272/144ef5f6-b11d-45b0-85db-623554067997)\r\n![Simulator Screenshot - iPad Pro (12 9-inch) (6th generation) (16GB) - 2023-11-11 at 01 51 53](https://github.com/StreamerApp/Streamer/assets/96978272/3da2e12f-ca75-430b-a2cf-3e435cb4de2b)\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.28/Streamer-iOS.ipa",
"size": 21713568,
"sha256": "ddf5cab81bcf6cd3d0d5d94bb9185315566faf4613d60b8f103ccb43f364dba6"
},
{
"absoluteVersion": "1.2.27",
"version": "1.2.27",
"buildVersion": "225",
"date": "2023-11-04T20:53:08Z",
"localizedDescription": "# V 1.2.27 Release\n\n- Implemented VLC and Infuse players integration\r\n- Improved Real-Debrid integration performance and accuracy\r\n- Added a feature to choose \u201cpriority foreign language\u201d for torrents in Real-Debrid\r\n- Resolved PIP issue for Apple TV\r\n- Resolved crash when tapping on the play button on the movie details page on Apple TV\r\n- Added provider logos to the favorites list\r\n- Unified subtitle parsing logic and removed extra HTML tags from all subtitles\r\n- Resolved issue when playing a completed episode\r\n- Resolved issues for movies or TV shows with incorrect data for the same title",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.27/Streamer-iOS.ipa",
"size": 20779195,
"sha256": "17de9b1f85612c21b6e3da6f6dbed5b326cbf3c7759c661c014d216cbfca569c"
},
{
"absoluteVersion": "1.2.26",
"version": "1.2.26",
"buildVersion": "222",
"date": "2023-10-28T12:08:49Z",
"localizedDescription": "# V 1.2.26 Release\n\n### New Features:\r\n\r\n- **Real-debrid Integration**: Streamer now supports Real-debrid, a premium service that lets you download files from multiple sources at the maximum of your internet speed, without any limitations. You can access high-quality 4K original content from torrent sites with Real-debrid. To learn more about Real-debrid, visit their https://real-debrid.com/.\r\n\r\nhttps://github.com/StreamerApp/Streamer/assets/96978272/0c9ce954-4082-4497-b8ab-19abe7ec223f\r\n\r\n- **Streamer Pro Subscription**: Streamer Pro is back and better than ever! By subscribing to Streamer Pro, you can enjoy the following benefits:\r\n - Ad-free experience: No more annoying ads in the app or during streaming.\r\n - 4K streaming: Watch your favorite movies and TV shows in stunning 4K resolution from Moviebox and Real-debrid sources.\r\n - Support the development: Help us improve Streamer and add more features by becoming a Streamer Pro subscriber.\r\n \r\n - Notes on Streamer Pro: \r\n - Each donation gives you access to one code. One code will only work on one device at a time. \r\n - You will need a GitHub account to donate. it's free and easy to do. \r\n - You will receive the code in your email. make sure you register to GitHub with a valid email. \r\n \r\n### Bug fixes:\r\n- Resolved the bug that prevented the \"continue watching\" section from reflecting the user's progress when the player was closed prematurely.\r\n- Resolved the bug that caused the home/movies/tvshows screens to fail to load on the first app launch.\r\n- Resolved the bug that affected the download functionality for jailbroken devices.\r\n- Resolved the bug that caused issues with the picture-in-picture feature for iOS.\r\n- Added support for playing downloaded content using the Streamer player.\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.26/Streamer-iOS.ipa",
"size": 20774533,
"sha256": "998cf42a19dbdf7249fc422efc60447ed9fd4fcf7aed4c1cbafc0d7eb4d952da"
},
{
"absoluteVersion": "1.2.25",
"version": "1.2.25",
"buildVersion": "183",
"date": "2023-10-20T17:47:47Z",
"localizedDescription": "# V 1.2.24 Release\n\n- Remove premium tier: Due to issues with our payment flow, we decided to give all MovieBoxPro features for **FREE**!!\r\n- Fix Flixtor provider\r\n\r\n\r\nwe will release the source code for the backend so if you want to help fix bugs or add new providers \ud83c\udf89 \r\nhttps://github.com/StreamerApp/Streamer-backend",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.25/Streamer-iOS.ipa",
"size": 19652222,
"sha256": "9e917eda40220d055c59ab76bde7ec249ee22fa2a315f243fbd4d2a0d60b2cec"
},
{
"absoluteVersion": "1.2.24",
"version": "1.2.24",
"buildVersion": "180",
"date": "2023-08-19T10:33:00Z",
"localizedDescription": "# V 1.2.24 Release\n\nThis release focuses on resolving various bugs that affected the user experience. The following issues have been fixed:\r\n- **Streamer Pro key deletion**: The Streamer Pro key would sometimes get deleted without warning, causing the loss of premium features. This issue has been resolved and the key is now securely stored.\r\n- **Downloads failure**: Downloads would not work if the user signed in with a personal free dev account. This issue has been resolved and downloads are now available for all users.\r\n- **Casting update**: Casting would not update the \u201cContinue watching\u201d section, making it difficult to resume watching later. This issue has been resolved and the section is now updated accordingly.\r\n- **Casting links**: When casting a movie or a TV show, the links list would not appear, preventing the user from choosing the best quality or source. This issue has been resolved and the links list is now visible.\r\n- **Subtitles persistence**: Subtitles would still show even when the user disabled them in the settings screen. This issue has been resolved and subtitles are now turned off as expected.\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.24/Streamer-iOS.ipa",
"size": 19421086,
"sha256": "940e49103092e7997ac5a89fe7bcd9c709a82a457888ac02545b27fbf9784c6f"
},
{
"absoluteVersion": "1.2.23",
"version": "1.2.23",
"buildVersion": "20",
"date": "2023-08-11T20:54:44Z",
"localizedDescription": "# v1.2.23 Release\n\n- **Streamer Player**: Enjoy high-quality content playback within the app. Choose your preferred player from the settings screen\r\n- **Autoplay**: Customize your preferred quality for all streams in the settings screen and Streamer will automatically select it for all movies and TV shows\r\n- **Top shelf support for AppleTV**: You can now see your home screen for your favorite provider without opening the app\r\n- **Force OpenSubtitles**: Enable Streamer to always request subtitles from Open Subtitles in the subtitles settings screen\r\n- **Remove item from \u201cContinue watching\" section**: Long press any item in the \u201cContinue watching\u201d section to remove it from the list\r\n- Numerous UI fixes and improvements throughout the app\r\n- Fixed Flixtor links loading issue\r\n\r\n\ud83d\ude80 **Streamer Pro: Enjoy MovieBoxPro movies and tv shows with Streamer Pro, which offers fast streaming servers and 4K video quality and disabling ads for iOS devices.**\r\n\r\n\r\n<details>\r\n\r\n<summary>Screenshots</summary>\r\n\r\n![IMG_0054](https://github.com/StreamerApp/Streamer/assets/96978272/28ea3ee1-a2be-4dc3-a41c-a1c0b1d7638a)\r\n\r\n![IMG_0056](https://github.com/StreamerApp/Streamer/assets/96978272/4cef6a88-e682-4b87-ac6e-42eb3ec0fabf)\r\n\r\n![IMG_0055](https://github.com/StreamerApp/Streamer/assets/96978272/1cb50e43-36c6-4790-8ef7-f9cddc38e2b7)\r\n\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) - 2023-08-11 at 22 33 17](https://github.com/StreamerApp/Streamer/assets/96978272/8a52c03c-e470-471b-8967-1fc12d68a5d0)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) - 2023-08-11 at 22 33 10](https://github.com/StreamerApp/Streamer/assets/96978272/739b1d7c-dba0-4b6e-8cd6-258af00c7ed2)\r\n![Simulator Screenshot - Apple TV 4K (3rd generation) - 2023-08-11 at 22 33 01](https://github.com/StreamerApp/Streamer/assets/96978272/22e153c6-6256-4e95-a1fc-15bc048bcfcf)\r\n\r\n\r\n</details>\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.23/Streamer-tvOS.ipa",
"size": 15961764,
"sha256": "f054b5c9b7a56e8f98a62088b4e2b2f0fdb551abf48322257517ee9d326a17da"
},
{
"absoluteVersion": "1.2.22",
"version": "1.2.22",
"buildVersion": "156",
"date": "2023-08-02T19:43:14Z",
"localizedDescription": "# v1.2.22 Release \n\n- VLC player integration: You can now enjoy compatible streams in VLC, which offers better performance for HDR and original quality content.\r\n- Various UI improvements for iOS and tvOS devices.\r\n- Fixed an issue with fetching translations from OpenSubtitles for some languages, such as Portuguese.\r\n- Fixed an issue with loading some content from Flixtor.\r\n<details>\r\n\r\n<summary>Screenshots</summary>\r\n\r\n![VLC](https://github.com/StreamerApp/Streamer/assets/96978272/3f563ebb-26fc-4fd7-bfe9-ef4537e2ef7f)\r\n\r\n</details>\r\n\r\n **Streamer Pro**: Enjoy MovieBoxPro movies and tv shows with Streamer Pro, which offers fast streaming servers and 4K video quality and disabling ads for iOS devices.\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.22/Streamer-iOS.ipa",
"size": 13518483,
"sha256": "df57989c9c0dda6e93cf254abdeabc7398a09f0e2093633a3d2778cd52442471"
},
{
"absoluteVersion": "1.2.21",
"version": "1.2.21",
"buildVersion": "149",
"date": "2023-07-30T17:50:09Z",
"localizedDescription": "# v1.2.21 Release\n\n- **Streamer Pro**: Enjoy MovieBoxPro movies and tv shows with Streamer Pro, which offers fast streaming servers and 4K video quality and disabling ads for iOS devices.\r\n- **Streamer Pro key persistence**: Your Pro key will remain valid even if you uninstall the app, as long as you sign in with the same dev account. The key will be stored on your device. so if you missed renewing the app, your key will work after renewal.\r\n- **Episode sorting**: You can now choose how to sort the episodes in the tv show view by using the new button.\r\n- **Backup links**: We have fixed the issue that prevented you from requesting backup links for some videos.\r\n- **New UI for episodes and links**: We have redesigned the UI for the episodes details and the links screen for both iOS and tvOS devices, making them more user-friendly and attractive.\r\n- **Bug fixes and improvements**: We have also resolved many bugs and made some enhancements to the app's performance and stability.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.21/Streamer-iOS.ipa",
"size": 13495029,
"sha256": "0a2a782b6c50d6c74be86f5a907000eb31874ba8442cc84fa2f15410ca4a6b6a"
},
{
"absoluteVersion": "1.2.20",
"version": "1.2.20",
"buildVersion": "146",
"date": "2023-07-16T14:05:37Z",
"localizedDescription": "# v1.2.20 Release\n\n- Fixes Arabseed and CimaNow loading issues for some users \r\n- General bug fixes and improvements \r\n\r\nDon\u2019t like ads? Consider donating to Streamer through https://buymeacoffee.com/streamerapp. Upon donation, we will email you a code to disable ads in the app. \ud83c\udf89\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.20/Streamer-iOS.ipa",
"size": 13412959,
"sha256": "06b43931549bdb535b8e9acb2774a43c0067d94e8d7d9cf1294656ec06ce1c83"
},
{
"absoluteVersion": "1.2.19",
"version": "1.2.19",
"buildVersion": "142",
"date": "2023-07-12T10:12:46Z",
"localizedDescription": "# v1.2.19 Release\n\n- Add new Providers \ud83c\uddfa\ud83c\uddf8 putlocker.vip, \ud83c\uddf8\ud83c\udde6faselhd.vip, \u2f9e kaido.to\r\n- Bug fixes and improvements for CimaNow, Arabseed and Akwam\r\n- Fixes a crash in the player\r\n\r\nDon\u2019t like ads? Consider donating to Streamer through https://buymeacoffee.com/streamerapp. Upon donation, we will email you a code to disable ads in the app. \ud83c\udf89\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.19/Streamer-iOS.ipa",
"size": 13561527,
"sha256": "8a9b6c1b0e28ad14051d04ac68003ee9ad52b849fbd5dade3471fd5325460e35"
},
{
"absoluteVersion": "1.2.18",
"version": "1.2.18",
"buildVersion": "20",
"date": "2023-06-29T11:44:56Z",
"localizedDescription": "# v1.2.18 Release\n\n- Fixes for Flixtor, KinoKiste, Akwam, CimaNow, ArabSeed providers\r\n- Add StreamFlix.one, PressPlay.top as backup providers \r\n- Fix subtitles for Chromecast \r\n\r\nDon\u2019t like ads? Consider donating to Streamer through https://buymeacoffee.com/streamerapp. Upon donation, we will email you a code to disable ads in the app. \ud83c\udf89\r\n\n\nNOTE: BundleIdentifier changed in this version and automatic updates have been disabled until manual install occurs.",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.18/Streamer-tvOS.ipa",
"size": 7559048,
"sha256": "e00baf408bfb56b15a304cb4947c73a611561fe0bafd1e6507dc09f5daf833e8"
},
{
"absoluteVersion": "1.2.17",
"version": "1.2.17",
"buildVersion": "131",
"date": "2023-05-28T11:14:53Z",
"localizedDescription": "# v1.2.17 Release\n\n- Fix Flixtor and 123Movies providers\r\n- Restore compatibility with iOS 14 devices\r\n- Introduce a new user interface for server selection in anticipation of Real-Debrid integration\r\n- Display available storage space on the device on the download page\r\n\r\nDon\u2019t like ads? Consider donating to Streamer through https://buymeacoffee.com/streamerapp. Upon donation, we will email you a code to disable ads in the app. \ud83c\udf89\r\n",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.17/Streamer-iOS.ipa",
"size": 13568452,
"sha256": "0559bccd8ee36d7c65f4494cd748fb6a94d7bdf921f8bd8b499987611aef2ddb"
},
{
"version": "1.2.12",
"date": "2023-04-07",
"localizedDescription": "- fixes Akwam, Cima4now, StreamingCommunity, KinoKiste, Zoro.to \n - fixes search for Flixtor, Fmovies.to, sflix.pro",
"downloadURL": "https://github.com/StreamerApp/Streamer/releases/download/1.2.12/Streamer-iOS.ipa",
"size": 1170000,
"sha256": "43470de9f9101b2e3560a8001cd82435f99a19cc6adda40946a9cb24f4194f5c"
}
],
"appPermissions": {
"entitlements": [],
"privacy": [
{
"name": "BluetoothAlways",
"usageDescription": "Streamer uses the local network to discover Cast-enabled devices on your WiFi network."
},
{
"name": "Camera",
"usageDescription": "Some ad content may access camera to take picture."
},
{
"name": "LocalNetwork",
"usageDescription": "Streamer uses the local network to discover Cast-enabled devices on your WiFi\n network."
},
{
"name": "Motion",
"usageDescription": "Some ad content may require access to accelerometer for interactive ad experience."
},
{
"name": "PhotoLibrary",
"usageDescription": "Some ad content may require access to the photo library."
},
{
"name": "UserTracking",
"usageDescription": "App would like to access IDFA for tracking purpose"
}
]
},
"appID": "com.streamer.ios"
},
{
"name": "SoundCloud++",
"bundleIdentifier": "com.soundcloud.TouchApp",
"developerName": "Codey Moore",
"subtitle": "SoundCloud with no ads and extra features.",
"localizedDescription": "SoundCloud Injected with DarkCloud - A Tweak that disables Ads and enables the developer menu.\n\nThe developer menu includes a wide range of adjustmets the user can make to the app, some include:\n\n\u2022 Block audio and video ads\n\u2022 Enable developer menu\n\u2022 Hide Go+ tab\n\nDon't worry, the tweaks you would expect (such as no ads) are enabled in the dev menu by default. So just install and enjoy.",
"iconURL": "https://img.ipa4fun.com/b1/62/d8/336353151-logo.jpg",
"tintColor": "#db5b14",
"screenshotURLs": [
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-1.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-2.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-3.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-4.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-5.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-6.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-7.jpg",
"https://img.ipa4fun.com/b1/62/d8/336353151-screenshot-8.jpg"
],
"versions": [
{
"version": "6.20.0",
"date": "2023-03-19",
"localizedDescription": "\u2022 Updated SoundCloud to v6.20.0\n\u2022 DarkCloud remains at latest (v1.4)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/SoundCloud.v6.20.0.+.DarkCloud.v1.4.ipa",
"size": 58500000,
"sha256": "fa0183d33a6c1b92f61d84b5c5cf4f2a062872193039f81383e60dffc62a1d97",
"minOSVersion": "14.0"
},
{
"version": "6.19.1",
"date": "2022-03-10",
"localizedDescription": "\u2022 Updated SoundCloud to v6.19.1\n\u2022 DarkCloud remains at latest (v1.4)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/SoundCloud.v6.19.1.+.DarkCloud.v1.4.ipa",
"size": 61900000,
"minOSVersion": "14.0"
},
{
"version": "6.18.0",
"date": "2023-02-26",
"localizedDescription": "\u2022 Updated SoundCloud to v6.18.0\n\u2022 DarkCloud remains at latest (v1.4)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/SoundCloud.v6.18.0.+.DarkCloud.v1.4.ipa",
"size": 74000000,
"minOSVersion": "14.0"
},
{
"version": "6.17.0",
"date": "2023-02-14",
"localizedDescription": "\u2022 Updated SoundCloud to v6.17.0\n\u2022 DarkCloud remains at Latest (v1.4)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/SoundCloud.v6.17.0.+.DarkCloud.v1.4.ipa",
"size": 73800000,
"minOSVersion": "14.0"
},
{
"version": "6.16.1",
"date": "2023-02-13",
"localizedDescription": "\u2022 Updated SoundCloud to v6.16.1\n\u2022 DarkCloud remains at Latest (v1.4)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary.github.io/releases/download/Latest/SoundCloud.v6.16.1.+.DarkCloud.v1.4.ipa",
"size": 73000000,
"minOSVersion": "14.0"
},
{
"version": "6.16.0",
"date": "2023-01-30",
"localizedDescription": "\u2022 Updated SoundCloud to v6.16.0\n\u2022 DarkCloud remains at latest (v1.4)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary.github.io/releases/download/Old/SoundCloud.v6.16.0.+.DarkCloud.v1.4.ipa",
"size": 72900000,
"minOSVersion": "14.0"
}
],
"appID": "com.soundcloud.TouchApp"
},
{
"name": "BeReal++",
"bundleIdentifier": "AlexisBarreyat.BeReal",
"developerName": "Avangelista",
"subtitle": "See your friends BeReals without posting anything!",
"localizedDescription": "Unblur your friends\u2019 posts on BeReal, even when you haven't posted. All functions of the app work as normal.",
"iconURL": "https://img.ipa4fun.com/74/cd/6c/1459645446-logo.jpg",
"tintColor": "#363636",
"screenshotURLs": [
"https://img.ipa4fun.com/74/cd/6c/1459645446-screenshot-1.jpg",
"https://img.ipa4fun.com/74/cd/6c/1459645446-screenshot-2.jpg",
"https://img.ipa4fun.com/74/cd/6c/1459645446-screenshot-3.jpg",
"https://img.ipa4fun.com/74/cd/6c/1459645446-screenshot-4.jpg",
"https://img.ipa4fun.com/74/cd/6c/1459645446-screenshot-5.jpg",
"https://img.ipa4fun.com/74/cd/6c/1459645446-screenshot-6.jpg"
],
"versions": [
{
"version": "0.36.0",
"date": "2023-03-30",
"localizedDescription": "\u2022 BeReal updated to v0.36.0\n\u2022 UnBlur remains at latest (v0.0.2)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/BeReal.v0.36.0.+.UnBlur.v0.0.2.ipa",
"size": 23800000,
"sha256": "a32f35eca6542e4b53f08563bdc728e365bf6576ead732a26255e9acd5b9a136",
"minOSVersion": "14.0"
},
{
"version": "0.33.1",
"date": "2023-02-26",
"localizedDescription": "\u2022 BeReal updated to v0.33.1\n\u2022 UnBlur remains at latest (v0.0.2)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/BeReal.v0.33.1.+.UnBlur.v0.0.2.ipa",
"size": 26900000,
"minOSVersion": "14.0"
},
{
"version": "0.32.0",
"date": "2023-02-12",
"localizedDescription": "\u2022 BeReal updated to v0.32.0\n\u2022 UnBlur remains at latest (v0.0.2)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/BeReal.v0.32.0.+.UnBlur.v0.0.2.ipa",
"size": 26000000,
"minOSVersion": "14.0"
}
],
"appID": "AlexisBarreyat.BeReal"
},
{
"name": "TikTok++",
"bundleIdentifier": "com.zhiliaoapp.musically",
"developerName": "CrazyMind90",
"subtitle": "TikTok with added features.",
"localizedDescription": "TikTokLRD (Cracked) - Add features to the TikTok App:\n\n\u2022 Save video without watermark\n\u2022 Share or save the video\n\u2022 Hide the user interface\n\u2022 Play the next video automatically\n\u2022 Skip watching live while watching automatically\n\u2022 Show progress bar for video\n\u2022 Enable high-quality video upload\n\u2022 Save a profile picture\n\u2022 Show the number of videos\n\u2022 Create favorite groups\n\u2022 Increase the number of letters in the comment to 240\n\u2022 Show the country code for the video\n\u2022 Enable copying for description and account\n\u2022 Enable comments transparency\n\u2022 Hide you just saw\n\u2022 Read closed comments\n\u2022 Watching videos under review\n\u2022 Show creation video date\n\u2022 Hide ADS\n\u2022 Change country\n\u2022 Confirm | cancel the like\n\u2022 Confirm | cancel the like in the comments\n\u2022 Confirm | cancel the follow\n\u2022 Lock the app",
"iconURL": "https://img.ipa4fun.com/06/ac/ac/835599320-logo.jpg",
"tintColor": "#363636",
"screenshotURLs": [
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-1.jpg",
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-2.jpg",
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-3.jpg",
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-4.jpg",
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-5.jpg",
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-6.jpg",
"https://img.ipa4fun.com/06/ac/ac/835599320-screenshot-7.jpg"
],
"versions": [
{
"version": "28.4.1",
"date": "2023-03-29",
"localizedDescription": "\u2022 Updated TikTok to v28.4.1\n\u2022 Updated LRD+ to v2.5\n\nOnce settings have been applied app will freeze close and relaunch app for settings to successfully apply",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/TikTok.v28.2.0.+.LRD+.ipa",
"size": 202000000,
"sha256": "0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5",
"minOSVersion": "10.0"
},
{
"version": "28.2.0",
"date": "2023-02-26",
"localizedDescription": "\u2022 Updated TikTok to v28.2.0",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/TikTok.v28.2.0.+.LRD+.ipa",
"size": 156000000,
"minOSVersion": "10.0"
},
{
"version": "27.9.0",
"date": "2023-02-12",
"localizedDescription": "\u2022 Updated TikTok to v27.9.0 - This is currently the latest version of TikTok that works with TikTokLRD (Cracked)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/TikTok.v27.9.0.+.LRD+.ipa",
"size": 160000000,
"minOSVersion": "10.0"
}
],
"appID": "com.zhiliaoapp.musically"
},
{
"name": "Anime Now!",
"bundleIdentifier": "com.errorerrorerror.animenow",
"developerName": "AnimeNow Team",
"subtitle": "Watch your favorite Anime anywhere for free!",
"localizedDescription": "Features:\n\n\u2022 Ad Free\n\u2022 No logins\n\u2022 Custom video playback\n\u2022 Airplay 2 Support\n\u2022 Picture in Picture playback support\n\u2022 Download & play episodes offline\n\u2022 Custom Collections\n\u2022 Third party anime tracking\n\u2022 Manga support (Will be added in V2.0.0)",
"iconURL": "https://static.appdb.to/images/cydia-1900001008-icon-1669968478.png",
"tintColor": "#343334",
"screenshotURLs": [
"https://static.appdb.to/images/cydia-1900001008-iphone-0-1669964060.png",
"https://static.appdb.to/images/cydia-1900001008-iphone-1-1669964061.png",
"https://static.appdb.to/images/cydia-1900001008-iphone-2-1669964061.png",
"https://static.appdb.to/images/cydia-1900001008-iphone-3-1669964061.png"
],
"versions": [
{
"version": "1.0.0-b3",
"date": "2023-03-29",
"localizedDescription": "\u2022 Updated Anime Now to v1.0.0-b3",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/Anime.Now.v1.0.0-b3.ipa",
"size": 6870000,
"sha256": "fc2b5c61eaa67161a69e54e9dfb0bc026f30bc56960a8c4df56144e01b2f70e5",
"minOSVersion": "14.0"
},
{
"version": "1.0.0-beta.1",
"date": "2023-02-14",
"localizedDescription": "\u2022 Updated Anime Now to v1.0.0-beta.1",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/Anime.Now.v1.0.0-b1.ipa",
"size": 6380000,
"minOSVersion": "14.0"
}
],
"appID": "com.errorerrorerror.animenow"
},
{
"name": "ZiniTevi++",
"bundleIdentifier": "jb.zini.tevi",
"developerName": "",
"subtitle": "Watch free movies and TV Shows on your iPhone!",
"localizedDescription": "Tweaked version of ZiniTevi - Ads disabled\n\nApp for Streaming Movies and TV Shows for free on your phone.\n\nApp features:\n\n\u2022 Play video online and offline.\n\u2022 Download multiple videos in background mode.\n\u2022 Stream video to Google's Chromecast, Airplay, Smart TV,\n\u2022 Android TV Box, Web Browser, UPnP, DLNA.\n\u2022 Add to favorites list.\n\u2022 Save to watched list.\n\u2022 Caption in video with all languages on over the world.\n\u2022 Trakt.tv to sync history and favorites list to the cloud.\n\nEnjoy!",
"iconURL": "https://i.imgur.com/rgL5qrB.png",
"tintColor": "#333939",
"screenshotURLs": [
"https://static.appdb.to/images/cydia-1900000660-iphone-0.png",
"https://static.appdb.to/images/cydia-1900000660-iphone-1.png",
"https://static.appdb.to/images/cydia-1900000660-iphone-2.png"
],
"versions": [
{
"version": "1.5.0",
"date": "2023-02-15",
"localizedDescription": "\u2022 Updated ZiniTevi to v1.5.0",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/ZiniTevi+.v1.5.0.ipa",
"size": 7580000,
"sha256": "88608b7a46821c63f6e92ed9fd42ccce2cd730d8603cbf00627155032d29ae54",
"minOSVersion": "14.0"
}
],
"appID": "jb.zini.tevi"
},
{
"name": "Photomath++",
"bundleIdentifier": "com.microblink.PhotoMath",
"developerName": "Strejda603",
"subtitle": "Photomath with plus activated!",
"localizedDescription": "Photomath works as normal, only the premium features are activated as if you bought them.",
"iconURL": "https://img.ipa4fun.com/c9/1d/c3/919087726-logo.jpg",
"tintColor": "#830824",
"screenshotURLs": [
"https://img.ipa4fun.com/c9/1d/c3/919087726-screenshot-1.jpg",
"https://img.ipa4fun.com/c9/1d/c3/919087726-screenshot-2.jpg",
"https://img.ipa4fun.com/c9/1d/c3/919087726-screenshot-3.jpg",
"https://img.ipa4fun.com/c9/1d/c3/919087726-screenshot-4.jpg",
"https://img.ipa4fun.com/c9/1d/c3/919087726-screenshot-5.jpg"
],
"versions": [
{
"version": "8.21.0",
"date": "2023-03-29",
"localizedDescription": "\u2022 Updated Photomath to v8.21.0",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/Photomath.Cracked.v8.21.0.ipa",
"size": 13700000,
"sha256": "bbe3184e0f934a058f36a30c1e83f671227a666c12abcfbd5bb297e67ade97dc",
"minOSVersion": "13.0"
},
{
"version": "8.19.1",
"date": "2023-02-16",
"localizedDescription": "\u2022 Updated Photomath to v8.19.1",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/Photomath+.v8.18.1.ipa",
"size": 12900000,
"minOSVersion": "13.0"
}
],
"appID": "com.microblink.PhotoMath"
},
{
"name": "Snapchat++",
"bundleIdentifier": "com.toyopagroup.picaboo",
"developerName": "Kanji",
"subtitle": "Snapchat Tweaked with extra features!",
"localizedDescription": "Note: Notifications may not work for some devices\n\nFeatures:\n\n\u2022Screenshot Supression - Screenshotting will no longer send a notification.\n\n\u2022 Keep Snaps In Chat - Delivered and open snaps will temporarily be saved in chat.\n\n\u2022 Story Ghost - View stories anonymously.\n\n\u2022 Snap Ghost - Snaps and messages will appear unviewed/unopened.\n\n\u2022 Spoof Story Views\n\n\u2022 Spoof Story Screenshots\n\n\u2022 Save To Camera Roll - Tap and hold while viewing a snap to bring up the UI press \"Save Snap\"\n\n\u2022 Hide Subtitle - Hide the subtitle containing an MOTD or something from the devs\n\n\u2022 Upload From Camera Roll - Press the upload button to select an image and then press the button to take a picture.\n\n\u2022 Hide Call Buttons - Hide the call buttons on recent Ul versions.\n\n\u2022 Video Call Confirm - Presents a popup to verify that the action was intentional.\n\n\u2022 Audio Call Confirm - Presents a popup to verify that the action was intentional.\n\n\u2022 Hide New Chat Button - Hide the blue button on the bottom on recent Ul versions.\n\n\u2022 Remove Highlights (Not Working) - Remove the stupid TikTok knock-off tab (requires app restart).\n\n\u2022 Hide Friendmoji - Hide the \"Friendmojis\" next to people's names (requires pull-refresh).\n\n\u2022 Randomize Best Friends - Randomly change the order off the best friends list.\n\n\u2022 Keep Normal Title - Enable this to hide the \"Shadow X\" label\n\n\u2022 Cool RGB Animation - Makes the shadow header RBG (think chromahomebarx).",
"iconURL": "https://img.ipa4fun.com/5f/b5/79/447188370-logo.jpg",
"tintColor": "#b0b004",
"screenshotURLs": [
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-1.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-2.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-3.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-4.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-5.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-6.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-7.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-8.jpg",
"https://img.ipa4fun.com/5f/b5/79/447188370-screenshot-9.jpg"
],
"versions": [
{
"version": "11.80.0",
"date": "2023-02-20",
"localizedDescription": "\u2022 Updated Snapchat to last working version with Shadow X (v11.80.0)",
"downloadURL": "https://github.com/WuXu1/wuxuslibrary/releases/download/Latest/Snapchat.v11.80.0.+.Shadow.X.ipa",
"size": 80600000,
"sha256": "c490af4452a6b217653cd6ba241e62d37c2d80a2b98db1dace0e86ba74933f49",
"minOSVersion": "12.0"
}
],
"appID": "com.toyopagroup.picaboo"
},
{
"name": "Crunchyroll++",
"bundleIdentifier": "com.crunchyroll.iphone",
"developerName": "unlimapps",
"subtitle": "The Ad-Free Anime you've been looking for.",
"localizedDescription": "- No ads\n- New episodes one hour after airing in Japan\n- The highest watching quality possible",
"iconURL": "https://i.imgur.com/qM7e1Ey.png",
"tintColor": "#f47521",
"screenshotURLs": [
"https://i.imgur.com/ss27Uf3.png",
"https://i.imgur.com/AxhO3kI.png",
"https://i.imgur.com/KdmaxEZ.png",
"https://i.imgur.com/XMO94gp.png",
"https://i.imgur.com/qBeM1ri.png"
],
"versions": [
{
"version": "3.5.1",
"date": "2019-10-01",
"localizedDescription": "Optimized for iOS 13.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Crunchyroll++.ipa",
"size": 11688173,
"sha256": "2a6a8910501ef6a0e31d3083acacd1276701d8a95b0083b7a6ca5066be9abdd9"
}
],
"appID": "com.crunchyroll.iphone"
},
{
"name": "Duolingo++",
"bundleIdentifier": "com.duolingo.DuolingoMobile",
"developerName": "unlimapps",
"subtitle": "Learn new languages like a pro.",
"localizedDescription": "Get all the benefits of Duolingo Plus:\n\n- Ad-free learning experience\n- Offline learning\n- Unlimited hearts\n- Unlimited skill test-outs\n- Monthly streak repair",
"iconURL": "https://i.imgur.com/xTmgUgF.png",
"tintColor": "#78c800",
"screenshotURLs": [
"https://i.imgur.com/WvspTMZ.png",
"https://i.imgur.com/N9TZwA4.png",
"https://i.imgur.com/BlQMDja.png",
"https://i.imgur.com/7c1QYMY.png",
"https://i.imgur.com/7NCRo40.png",
"https://i.imgur.com/KYORKQH.png"
],
"versions": [
{
"version": "6.2.0",
"date": "2019-01-22",
"localizedDescription": "Bug fixes and performance improvements.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Duolingo++.ipa",
"size": 92016431,
"sha256": "deca2bed643c2f71c46c87b3d5ba5b8d426ceb71369cbdd2669e9e26dba9c92c"
}
],
"appID": "com.duolingo.DuolingoMobile"
},
{
"name": "Deezer++",
"bundleIdentifier": "com.deezer.Deezer",
"developerName": "julioverne",
"subtitle": "Mix your music your way.",
"localizedDescription": "Your life deserves its own soundtrack. With 56 million tracks, playlists and podcasts plus personalized recommendations just for you, Deezer is your music companion. A music player that always gives you the songs you love, and helps you discover your next favorites. You bring the passion, we bring the music.\n\nEnjoy best-in-class features with the Deezer music player:\n\n\u2022 Stream the biggest global hits\n\u2022 56 million songs to discover and enjoy\n\u2022 Lean back and find new tracks with Shuffle Mode\n\u2022 Get personalized recommendations and explore new music styles with Flow\n\u2022 Listen to any playlist you want or create your own\n\u2022 Add the tracks you love to your music collection in a single tap with Favorites\n\u2022 Organise your new music by artist or genre\n\u2022 Share your personal playlists and favorite tracks with others\n\u2022 Discover podcasts, radio stations, and audio channels\n\nWhat you get for free with Deezerlife v0.5:\n\n\u2022 No ads\n\u2022 Offline Mode: download your favorite tracks or podcasts and listen to offline music anywhere\n\u2022 Unlimited skips\n\u2022 No song shuffling\n\u2022 Superior Sound Quality (320 kBps)\n\u2022 Music player is compatible with Amazon Alexa and connected devices",
"iconURL": "https://i.imgur.com/zGqFxJz.png",
"tintColor": "#252d36",
"screenshotURLs": [
"https://i.imgur.com/iox1WHX.png",
"https://i.imgur.com/chYRMOg.png",
"https://i.imgur.com/2NUi4lD.png",
"https://i.imgur.com/8fUSZuW.png",
"https://i.imgur.com/9uztFPu.png",
"https://i.imgur.com/ZDvx4v9.png",
"https://i.imgur.com/pjGTCg6.png",
"https://i.imgur.com/gbqzsX2.png",
"https://i.imgur.com/uUYBjAM.png"
],
"versions": [
{
"version": "7.1.1",
"date": "2020-10-15",
"localizedDescription": "Deezerlife v0.5\n\nDowngraded to v7 of Deezer since v8 crashes on login.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Deezer++.ipa",
"size": 99126030,
"sha256": "49b85132a6cf710a3b63a668ffef1d6e14df1c57f011dad563ab1115e1bcb407"
}
],
"appID": "com.deezer.Deezer"
},
{
"name": "Spotify++",
"bundleIdentifier": "com.spotify.client",
"developerName": "iJulioVerne",
"subtitle": "Spotify with free premium, and extra UI features",
"localizedDescription": "Spotify++ contants a tweak that activates Premium. As well as a number of tweaks to customise the UI and improve the overall user experience.\n\nHere are the following tweaks:\n\n\u2022 Spotilife - Premium for free.\n\n\u2022 Sposify - A Tweak to customize your Spotify App UI and expand functionalities.\n\n\u2022 Volify - Adds a volume slider to Spotify.\n\n\u2022 SpotifyAllowSetting - Allows you to access all of the settings in Spotify that are normally disabled when someone else is playing music from another device.\n\n\u2022 SpotifyNoPodcasts - Hides Podcasts from from Home and Library\n\n\u2022 SpotifyHighQuality - Enables \u2019Very High\u2019 Quality in Audio Quality settings\n\n\u2022TrueShuffle - Enables true random shuffling (Spotify prioritizes Songs you have listened to more often by default)\n\n\u2022 Spoticentre - Centres the song/artist in now playing (Only working on some devices)\n",
"iconURL": "https://img.ipa4fun.com/ef/cd/d4/324684580-logo.jpg",
"tintColor": "#1c843c",
"screenshotURLs": [
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-1.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-2.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-3.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-4.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-5.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-6.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-7.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-8.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-9.jpg",
"https://img.ipa4fun.com/ef/cd/d4/324684580-screenshot-10.jpg"
],
"versions": [
{
"version": "8.9.38",
"date": "2024-05-10",
"localizedDescription": "\u2022 EeveeSpotify now supports LRCLIB and Musixmatch time-synced lyrics sources! You can select your preferred source in the tweak settings\n\u2022 Lyrics colors are now normalized\n\u2022 Fixed Genius issue where the tweak would pick a translation instead of the original lyrics",
"downloadURL": "https://github.com/WuXu1/WuXu1.github.io/releases/download/Latest/Spotify.v8.9.38.+.Eevee.v3.0.ipa",
"size": 68800000,
"sha256": "01bba7154e0b9fb25e81ac0730cf926614f077e7ef67ac6390735e29fbdad766"
},
{
"version": "8.9.36",
"date": "2024-05-08",
"localizedDescription": "\u2022 Fixed app crashing when opening the player\n\u2022 EeveeSpotify now replaces Spotify monthly limited lyrics with Genius!\n\u2022 Updated Spotify to v8.9.36",
"downloadURL": "https://github.com/WuXu1/WuXu1.github.io/releases/download/Latest/Spotify.v8.9.36.+.Eevee.v2.1.ipa",
"size": 69100000,
"sha256": "365ab5551a5c27181e6d5c3be262cc5bc4a80bf48f4cfef331180082ddb16a8e"
},
{
"version": "8.9.34",
"date": "2024-04-30",
"localizedDescription": "\u2022 Replaced Spotify v8.6.42 (Spotilife) with Spotify v8.9.34 (Eevee)",
"downloadURL": "https://github.com/WuXu1/WuXu1.github.io/releases/download/Latest/Spotify.v8.9.34.+.Eevee.v1.4.1.ipa",
"size": 65900000,
"sha256": "0da101f63331a006c3b8c8b882e72be120ff997b4f7918887da76c1c058d8d07"
},
{
"version": "8.6.54",
"date": "2021-11-18",
"localizedDescription": "Should finally work on iOS 15+. Added Spos 1.7.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Spotify%2B%2B.ipa",
"size": 50510887,
"sha256": "1402a927d7944c4782a5eab15ef6b8167b4ef9cd5d00c683d1e70af11625023d"
}
],
"appPermissions": {
"entitlements": [],
"privacy": [
{
"name": "AppleMusic",
"usageDescription": "This will let you play your imported music on Spotify."
},
{
"name": "BluetoothAlways",
"usageDescription": "This lets you unlock new ways of interacting with other devices compatible with Spotify via Bluetooth."
},
{
"name": "BluetoothPeripheral",
"usageDescription": "This lets you unlock new ways of interacting with other devices compatible with Spotify via Bluetooth."
},
{
"name": "Camera",
"usageDescription": "This lets you scan Spotify Codes."
},
{
"name": "FaceID",
"usageDescription": "This lets you set access restrictions using Face ID."
},
{
"name": "HealthShare",
"usageDescription": "Spotify will use HealthKit data to provide personalised audio recommendations for your workouts."
},
{
"name": "HealthUpdate",
"usageDescription": "Spotify will use HealthKit data to provide personalised audio recommendations for your workouts."
},
{
"name": "LocalNetwork",
"usageDescription": "This lets you listen on different devices. Spotify will also get access to local audio files."
},
{
"name": "Microphone",
"usageDescription": "This lets you control Spotify using your voice."
},
{
"name": "Motion",
"usageDescription": "We will use this to understand which audio motivates you most."
},
{
"name": "PhotoLibraryAdd",
"usageDescription": "This lets you save images to your Photo Library."
},
{
"name": "PhotoLibrary",
"usageDescription": "This lets you select images from your Photo Library."
},
{
"name": "UserTracking",
"usageDescription": "Your data will be used to deliver personalized ads or content to you."
}
]
},
"appID": "com.spotify.client"
},
{
"name": "BHTwitter (deprecated)",
"bundleIdentifier": "com.atebits.Tweetie2",
"developerName": "BandarHL",
"subtitle": "The sideloaded version of BHTwitter, made by @BandarHL, requires iOS 13.4+ (deprecated)",
"localizedDescription": "Full infomation about BHTwitterPlus (BHTwitter+) is available on my Github: https://github.com/qnblackcat/BHTwitter-Plus_Sideloaded/\n\nCredits: \n- BandarHL - for BHTwitter and his solution for Twitter-login (Sideload).\n- haoict - developer of Twitter No Ads.\n- Tanner B - solution for Skip Analytics URL (t.co).\n\nKwown issues:\n- \"Skip Analytic URL\" breaks embed pictures as described here.\n- Analytics link in cards can't be skipped.\n- Download videos may not work if you use appdb. In that case, please change the \"Identity type to use for appdb PRO\" in the \"appdb configuration\" from Auto to Development.\n",
"iconURL": "https://raw.githubusercontent.com/qnblackcat/My-AltStore-repo/main/ScreenShot/553d345e375ad6042571f427_twitter.png",
"tintColor": "3f9de5",
"screenshotURLs": [
"https://raw.githubusercontent.com/qnblackcat/My-AltStore-repo/main/ScreenShot/IMG_2396.PNG",
"https://raw.githubusercontent.com/qnblackcat/My-AltStore-repo/main/ScreenShot/IMG_2397.PNG",
"https://raw.githubusercontent.com/qnblackcat/My-AltStore-repo/main/ScreenShot/IMG_2399.PNG",
"https://raw.githubusercontent.com/qnblackcat/My-AltStore-repo/main/ScreenShot/IMG_2400.PNG",
"https://raw.githubusercontent.com/qnblackcat/My-AltStore-repo/main/ScreenShot/IMG_2401.jpg"
],
"versions": [
{
"version": "9.2",
"date": "2022-03-07T14:00:00-07:00",
"localizedDescription": "v9.2 (2.9.2): The changelog can be found at\nhttps://github.com/qnblackcat/BHTwitter-Plus_Sideloaded/releases/latest\n BHTwitterPlus is now deprecated. Follow @BandarHL on Twitter (https://twitter.com/bandarhl?s=21) to get the latest version of BHTwitter.",
"downloadURL": "https://github.com/qnblackcat/BHTwitter-Plus_Sideloaded/releases/download/v9.2-2.9.2/BHTwitterPlus_9.2-2.9.2.ipa",
"size": 78643200,
"sha256": "4f47ee0be8c88f49e85e33f579072d7df705861c8474baf47fe411a3f6e39722"
}
],
"beta": false,
"appID": "com.atebits.Tweetie2"
},
{
"name": "Reddit++",
"bundleIdentifier": "syto203.reddit.pp",
"developerName": "syto203",
"subtitle": "Ad-free, customizable Reddit.",
"localizedDescription": "The Reddit you know and love but with all the premium features you have always wanted.\n\n\u2022 Absolutely no ads.\n\u2022 Access to r/lounge\n\u2022 And more!",
"iconURL": "https://i.imgur.com/1YJO4aW.png",
"tintColor": "#ff4500",
"screenshotURLs": [
"https://i.imgur.com/KWMTEJj.png",
"https://i.imgur.com/qHnOKuC.png",
"https://i.imgur.com/zg5knuy.png",
"https://i.imgur.com/XVC7rfu.png",
"https://i.imgur.com/H4xxQdt.png",
"https://i.imgur.com/4b7Tm9j.png"
],
"versions": [
{
"version": "2020.12.0",
"date": "2020-01-12",
"localizedDescription": "Bug fixes.",
"downloadURL": "https://github.com/QuarkSources/quarksources.github.io/releases/download/v1.0/Reddit%2B%2B.ipa",
"size": 55538241,
"sha256": "9c46e0817678f84f2362d40f5ae9b1527cdabf7d98286fd65c381d86ca00038b"
}
],
"appID": "syto203.reddit.pp"
},
{
"name": "Paperback",
"bundleIdentifier": "dev.faizandurrani.moe.paperback.app",
"developerName": "Faizan Durrani",
"subtitle": "An ad-free manga reader for iOS.",
"localizedDescription": "Paperback is a fully ad-free manga reader for iOS 13 and iPadOS 13.4 and up.\n\niPad support\n\u2022 Friendly layout with a robust double spread chapter reader for iPad.\n\nMangaDex integration\n\u2022 Paperback will sync your mangas and settings to and from MangaDex.\n\nNo advertisements\n\u2022 Unlike other not-to-be-named apps and websites, this is a fully ad-free experience.\n\nIf you enjoy the app, please support the developer on Patreon to get access to the beta version of the app: https://www.patreon.com/FaizanDurrani",
"iconURL": "https://i.imgur.com/q8HqXb6.png",
"tintColor": "#202020",
"screenshotURLs": [