-
Notifications
You must be signed in to change notification settings - Fork 0
/
apphookup.json
1411 lines (1411 loc) · 195 KB
/
apphookup.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
{
"version": "https://jsonfeed.org/version/1.1",
"title": "r/apphookup",
"description": "The best sales and verified price reductions for apps and applications of all operating systems: Android, iOS, Windows, macOS, Steam and more.",
"home_page_url": "https://reddit.com",
"feed_url": "https://raw.githubusercontent.com/jonathanlaniado/feeds/master/apphookup.json",
"icon": "https://a.thumbs.redditmedia.com/C8S1EiCjt3YZ3GbvvB4_hXT6VRzCs9nxXEsDwRRvUF8.png",
"favicon": "https://a.thumbs.redditmedia.com/C8S1EiCjt3YZ3GbvvB4_hXT6VRzCs9nxXEsDwRRvUF8.png",
"items": [
{
"id": "1gr831k",
"url": "/r/AppHookup/comments/1gr831k/windows_castlevania_anniversary_collection_2599/",
"external_url": "https://store.epicgames.com/en-US/p/castlevania-anniversary-collection-a61f94",
"title": "[Windows] [Castlevania Anniversary Collection] [$25.99 \u2192 Free] [Classic Vampire-Themed Platformer]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1gr831k/windows_castlevania_anniversary_collection_2599/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1gr831k/windows_castlevania_anniversary_collection_2599/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-14T16:01:45+00:00",
"authors": [
{
"name": "PM_ME_FREEGAMES",
"url": "https://www.reddit.com/user/PM_ME_FREEGAMES"
}
]
},
{
"id": "1goz1t9",
"url": "/r/AppHookup/comments/1goz1t9/iphone_coefficients_health_insights_299_free/",
"external_url": "https://apps.apple.com/us/app/coefficients-health-insights/id6476617916",
"title": "[iPhone] [Coefficients: Health Insights] [$2.99\u2013> Free] [Unlock the power of your health data by utilising highly customizable data visualization dashboards and insights that help you discern what factors are impacting your health and fitness]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1goz1t9/iphone_coefficients_health_insights_299_free/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1goz1t9/iphone_coefficients_health_insights_299_free/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-11T18:20:00+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1goyb2g",
"url": "/r/AppHookup/comments/1goyb2g/ios_palindroma_200_100_palindroma_an_app_to/",
"external_url": "https://apps.apple.com/us/app/palindroma-reverse-words/id6738003215?platform=iphone",
"title": "[iOS] [Palindroma] [$2.00 -> $1.00] [ Palindroma - an app to reverse your words]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1goyb2g/ios_palindroma_200_100_palindroma_an_app_to/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1goyb2g/ios_palindroma_200_100_palindroma_an_app_to/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-11T17:50:46+00:00",
"authors": [
{
"name": "Friendly-Technology8",
"url": "https://www.reddit.com/user/Friendly-Technology8"
}
]
},
{
"id": "1goqdso",
"url": "/r/AppHookup/comments/1goqdso/iosapple_watch_sodium_tracker_app_lifetime_access/",
"external_url": "https://apps.apple.com/us/app/sodium-counter-tracker/id6730125514",
"title": "[iOS/Apple Watch] [Sodium Tracker App] [ Lifetime Access \u20b92,999 -> \u20b90 ] [ Sodium Tracker with Ai Health Coach,Apple health integration, iCloud sync, customizable interface & themes, Barcode Scanner, etc.]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1goqdso/iosapple_watch_sodium_tracker_app_lifetime_access/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1goqdso/iosapple_watch_sodium_tracker_app_lifetime_access/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-11T11:48:26+00:00",
"authors": [
{
"name": "Kindly_Indication331",
"url": "https://www.reddit.com/user/Kindly_Indication331"
}
]
},
{
"id": "1go5vd9",
"url": "/r/AppHookup/comments/1go5vd9/iosmacapple_watch_yata_yet_another_todo_app/",
"external_url": "https://apps.apple.com/us/app/yata-yet-another-to-do-app/id1631370175",
"title": "[iOS/Mac/Apple Watch] [Yata: Yet Another To-Do App] [Lifetime IAP $10\u2013> Free] [Task management and daily planning app with Calendar and Reminders integration, iCloud sync, customizable interface & themes, widgets, Siri Shortcuts, etc.]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1go5vd9/iosmacapple_watch_yata_yet_another_todo_app/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1go5vd9/iosmacapple_watch_yata_yet_another_todo_app/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-10T17:29:32+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1gmm0si",
"url": "/r/AppHookup/comments/1gmm0si/ios_medication_list_lifetime_1799_free_keep_track/",
"external_url": "https://apps.apple.com/us/app/medication-list/id6670396686",
"title": "[iOS] [Medication List] [Lifetime $17.99 -> Free] [Keep track of your medication and get reminders]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1gmm0si/ios_medication_list_lifetime_1799_free_keep_track/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1gmm0si/ios_medication_list_lifetime_1799_free_keep_track/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-08T16:06:12+00:00",
"authors": [
{
"name": "Jojoappsss",
"url": "https://www.reddit.com/user/Jojoappsss"
}
]
},
{
"id": "1gmg5ag",
"url": "/r/AppHookup/comments/1gmg5ag/ios_pro_forecasts_sonuby_weather_annual/",
"external_url": "https://apps.apple.com/app/apple-store/id1560347507",
"title": "[iOS] [Pro Forecasts - Sonuby Weather] [Annual Subscription $8.99 \u2013> Free, Link to offer in comments] [Reliable and customisable weather forecasts incl. tides, waves and altitudes; lots of new features coming]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1gmg5ag/ios_pro_forecasts_sonuby_weather_annual/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1gmg5ag/ios_pro_forecasts_sonuby_weather_annual/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-08T11:12:36+00:00",
"authors": [
{
"name": "flocbit",
"url": "https://www.reddit.com/user/flocbit"
}
]
},
{
"id": "1glu200",
"url": "/r/AppHookup/comments/1glu200/ios_weekly_game_deals_post_death_stranding/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1glu200/ios_weekly_game_deals_post_death_stranding/",
"title": "[iOS] [Weekly game deals post - Death Stranding Director's Cut, Ace Attorney Trilogy, Street Fighter IV CE, MEGA MAN X & X Dive Offline, Game Dev Story & other Kairosoft titles, Evoland 1 & 2, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1glu200/ios_weekly_game_deals_post_death_stranding/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1glu200/ios_weekly_game_deals_post_death_stranding/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/mini-games-studio/id6470418500\">Mini Games Studio</a> $0.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/flipinity-puzzle-game/id1478767069\">Flipinity: Puzzle Game</a> $0.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/death-stranding-directors-cut/id6449748961\">Death Stranding Director's Cut</a> $39.99\u2013> $19.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/ace-attorney-trilogy/id1621065119\">Ace Attorney Trilogy</a> $24.99\u2013> $14.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/street-fighter-iv-ce/id1239299402\">Street Fighter IV CE</a> $4.99\u2013> $2.99 (lowest price in 6 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/mega-man-x/id469343097\">MEGA MAN X</a> $4.99\u2013> $2.99 (lowest price in 7 years) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/mega-man-x-dive-offline/id6446021269\">Mega Man X Dive Offline</a> $29.99\u2013> $9.89 (matching istorical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/game-dev-story/id396085661\">Game Dev Story</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dream-town-island/id6446826650\">Dream Town Island</a> $6.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/tv-studio-story/id6463115144\">TV Studio Story</a> $5.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/cavern-adventurers/id6468572535\">Cavern Adventurers</a> $5.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/forest-camp-story/id1566275194\">Forest Camp Story</a> $5.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-ramen-sensei/id1065791514\">The Ramen Sensei</a> $4.99\u2013> $2.99 ($2 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/boxing-gym-story/id1538900393\">Boxing Gym Story</a> $6.99\u2013> $3.99 ($2 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/basketball-club-story/id1471323296\">Basketball Club Story</a> $5.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/evoland/id946477821\">Evoland</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/evoland-2/id1291427111\">Evoland 2</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/locks-quest/id1464510254\">Lock's Quest</a> $7.99\u2013> $0.99 (matching istorical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/spellforce-heroes-magic/id1451708258\">SpellForce - Heroes & Magic</a> $7.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/this-is-the-police-2/id1453820315\">This Is the Police 2</a> $7.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/neighbours-back-from-hell/id1537362903\">Neighbours back From Hell</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/scattered-verse/id6478508550\">Scattered Verse</a> $4.99\u2013> $2.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/night-book/id1571120788 id887028491\">Night Book</a> Full game IAP $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dungeon-and-puzzles/id1571643809\">Dungeon and Puzzles</a> $2.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/book-of-demons-tablet-edition/id1491139385\">Book of Demons: Tablet Edition</a> $9.99\u2013> $5.99 ($3 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wordfeud/id428312806\">Wordfeud</a> Premium IAP $6.99\u2013> $5.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/detective-montgomery-fox/id6443620749\">Detective Montgomery Fox</a> Full game IAP $6.99\u2013> $4.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/cavemen-tales/id1562986508\">Seven Chambers</a> Full game IAP $7.99\u2013> $5.99 ($1 above historical low)</p>",
"date_published": "2024-11-07T16:10:36+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1gltvef",
"url": "/r/AppHookup/comments/1gltvef/ios_master_english_wordy_lifetime_9999_free_learn/",
"external_url": "https://apps.apple.com/us/app/wordy-learn-master-english/id6670703228",
"title": "[iOS] [Master English - Wordy] [Lifetime $99.99 > Free] [Learn English with Netflix, TV Shows, Movies]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1gltvef/ios_master_english_wordy_lifetime_9999_free_learn/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1gltvef/ios_master_english_wordy_lifetime_9999_free_learn/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-07T16:02:49+00:00",
"authors": [
{
"name": "amerikaipite",
"url": "https://www.reddit.com/user/amerikaipite"
}
]
},
{
"id": "1glpk4a",
"url": "/r/AppHookup/comments/1glpk4a/ios_readhero_the_new_all_in_one_reading_app_1499/",
"external_url": "https://apps.apple.com/de/app/readhero-remember-books/id6450433398",
"title": "[iOS] [ReadHero - The new All in One Reading App] [$14.99 \u2192 8.99] [The perfect combination of Goodreads, Readwise, Bookshelf tbr, Bookly, \u2026]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1glpk4a/ios_readhero_the_new_all_in_one_reading_app_1499/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1glpk4a/ios_readhero_the_new_all_in_one_reading_app_1499/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-07T12:44:09+00:00",
"authors": [
{
"name": "No_Part_1410",
"url": "https://www.reddit.com/user/No_Part_1410"
}
]
},
{
"id": "1gkvvl9",
"url": "/r/AppHookup/comments/1gkvvl9/ios_ipad_os_teleprompter_x_lifetime_14999_to_free/",
"external_url": "https://apps.apple.com/us/app/teleprompter-x/id6502788841",
"title": "[iOS] [iPad OS] Teleprompter X - Lifetime $149.99 to FREE",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1gkvvl9/ios_ipad_os_teleprompter_x_lifetime_14999_to_free/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1gkvvl9/ios_ipad_os_teleprompter_x_lifetime_14999_to_free/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-11-06T10:58:39+00:00",
"authors": [
{
"name": "Cowlinn",
"url": "https://www.reddit.com/user/Cowlinn"
}
]
},
{
"id": "1ggd8o6",
"url": "/r/AppHookup/comments/1ggd8o6/ios_weekly_game_deals_post_dead_cells_skul_the/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1ggd8o6/ios_weekly_game_deals_post_dead_cells_skul_the/",
"title": "[iOS] [Weekly game deals post - Dead Cells, Skul: The Hero Slayer, Carrion, Loop Hero, Little Nightmares, King of Dragon Pass, Luck be a Landlord, Roundguard, Human: Fall Flat, Titan Quest: Legendary Edition, Jenny LeClue - Detectivu, digital board games, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1ggd8o6/ios_weekly_game_deals_post_dead_cells_skul_the/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1ggd8o6/ios_weekly_game_deals_post_dead_cells_skul_the/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/raanaa-the-shaman-girl/id1469289192\">Raanaa - The Shaman Girl</a> 6 Chapter IAPs $0.99 each\u2014> Free (Note: Open the game, select \u2018Solo\u2019 mode and then purchase all chapters with the cart icon)</p>\n<p><a href=\"https://apps.apple.com/us/app/cribbage-hd/id363691477\">Cribbage HD</a> $5.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/orbital-invaders-space-shooter/id1457496008\">Orbital Invaders:Space shooter</a> $0.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/dead-cells/id1389752090\">Dead Cells</a> $8.99\u2013> $5.99 ($1 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/skul-the-hero-slayer/id6458144503\">Skul: The Hero Slayer</a> $7.99\u2013> $5.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/carrion/id6504567739\">Carrion</a> Full game IAP $9.99\u2013> $6.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/loop-hero/id6464048549\">Loop Hero</a> Full game IAP $6.99\u2013> $4.99 ($0.80 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/little-nightmares/id1620883955\">Little Nightmares</a> $7.99\u2013> $6.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/king-of-dragon-pass/id335545504\">King of Dragon Pass</a> $9.99\u2013> $4.49 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/luck-be-a-landlord/id6450724928\">Luck be a Landlord</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/roundguard/id1672164496\">Roundguard</a> $6.99\u2013> $3.19 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/human-fall-flat/id1438091392\">Human: Fall Flat</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/titan-quest-legendary-edition/id1537060891\">Titan Quest: Legendary Edition</a> $19.99\u2013> $9.99 (matching historical low) | Eternal Embers DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/jenny-leclue-detectivu/id1637348694\">Jenny LeClue - Detectivu</a> $6.99\u2013> $2.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/candleman/id1137143735\">Candleman</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wildfrost/id6462882621\">Wildfrost</a> Full game IAP $6.99\u2013> $4.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-origins-td/id904737816\">Kingdom Rush Origins (for iPhone)</a> $2.99\u2013> $0.99 | All heroes are discounted.</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-origins-hd-td/id904737541\">Kingdom Rush Origins HD (for iPad)</a> $2.99\u2013> $0.99 | All heroes are discounted.</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-frontiers-td/id598581396\">Kingdom Rush Frontiers (for iPhone)</a> $1.99\u2013> $0.99 | Hero units are discounted except for Karkinos.</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-frontiers-td-hd/id598581619\">Kingdom Rush Frontiers HD (for iPad)</a> $1.99\u2013> $0.99 | Hero units are discounted except for Karkinos.</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-vengeance-td-game/id1248033433\">Kingdom Rush Vengeance</a> $4.99\u2013> $2.99 ($1 above historical low) | Hammerhold campaign $7.99\u2013> $4.99 (new historical low) | Some hero units and towers are discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-5-alliance-td/id1622869542\">Kingdom Rush 5: Alliance TD</a> $6.99\u2013> $4.99 (first sale) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/iron-marines-invasion-rts-game/id1620202676\">Iron Marines Invasion</a> $2.99\u2013> $0.99 (historical low) | Some heroes & units are discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/the-tiny-bang-story/id495937600\">The Tiny Bang Story</a> $4.99\u2013> $0.99 (lowest price in 2 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/where-shadows-slumber/id1221749074\">Where Shadows Slumber</a> $2.99\u2013> $0.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/not-another-weekend/id1548002851\">Not Another Weekend</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hyperforma-premium/id1296875300\">Hyperforma Premium</a> $4.99\u2013> $1.99 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/cyber-manhunt/id1644917705\">Cyber Manhunt</a> $4.99\u2013> $2.99 (matching historical low) | Both DLCs are <strong>not</strong> discounted but they are $1 each to begin with.</p>\n<p><a href=\"https://apps.apple.com/us/app/madness-endless/id1489109037\">Madness/Endless</a> $3.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/paranormasight/id6443444225\">PARANORMASIGHT</a> $18.99\u2013> $10.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/ten-dates/id6444517471\">Ten Dates</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-bunker/id1188620229\">The Bunker</a> $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-room-two/id667362389\">The Room Two</a> $1.99\u2013> $0.99 ($0.60 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-room-three/id918054748\">The Room Three</a> $3.99\u2013> $1.99 ($1.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-room-old-sins/id1286676015\">The Room: Old Sins</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/teslagrad/id1374372468\">Teslagrad</a> $6.99\u2013> $0.69 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/arrog/id1499642327\">Arrog</a> $2.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rebel-cops/id1488452530\">Rebel Cops</a> $7.99\u2013> $0.99 (matching istorical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lovecrafts-untold-stories/id1404294932\">Lovecraft's Untold Stories</a> $3.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/creepy-dungeons-heroes/id576494602\">Creepy Dungeons Heroes</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/unicorn-training/id1001433467\">Unicorn Training</a> $2.99\u2013> $0.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/pureya/id1550948871\">pureya</a> $3.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/majotori/id1084967404\">Majotori</a> $2.99\u2013> $0.99 (lowest price in 5 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/golfing-over-it/id1356172905\">Golfing Over It</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hue/id1567355347\">HUE\u00b2</a> $0.99\u2013> $0.29 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/el-hijo/id1560172174\">El Hijo</a> $9.99\u2013> $4.99 ($4 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/ravon/id1447257819\">RAVON</a> Zodiac (Main chapters 1-3) IAP $11.99\u2013> $7.99, Cancer (Main chapter 4) IAP $4.99\u2013> $2.99, Leo (Main chapter 5) IAP $4.99\u2013> $2.99, Dynamix Packs 1 & 2 $3.99\u2013> $2.99 each (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-fate-of-the-pharaoh/id678961807\">The Fate of the Pharaoh</a> Full game IAP $6.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/red-crow-mysteries/id1437265797\">Red Crow Mysteries</a> Full game IAP $6.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-tales-the-strix/id1437261645\">Dragon Tales: The Strix</a> Full game IAP $6.99\u2013> $3.99 ($1 above historical low)</p>\n<hr />\n<p>Digital board games:</p>\n<p><a href=\"https://apps.apple.com/us/app/root-board-game/id1439262206\">Root Board Game</a> $9.99\u2013> $4.99 (matching historical low) | Exiles expansion $7.99\u2013> $5.99, Underworld expansion $9.99\u2013> $7.99, Riverfolk expansion $9.99\u2013> $6.99, Clockwork expansion $5.99\u2013> $3.99</p>\n<p><a href=\"https://apps.apple.com/us/app/reiner-knizia-yellow-yangtze/id1439244350\">Reiner Knizia Yellow & Yangtze</a> $9.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/sagrada/id1439244077\">Sagrada</a> $6.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wings-of-glory/id1586020504\">Wings of Glory</a> $8.99\u2013> $4.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/raiders-of-the-north-sea/id1439244088\">Raiders of the North Sea</a> $9.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-fox-in-the-forest/id1578000887\">The Fox in the Forest</a> $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/welcome-to-everdell/id6459537401\">Welcome To Everdell</a> $7.99\u2013> $5.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/everdell/id1580626436\">Everdell</a> $9.99\u2013> $6.99 (first sale) | DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/munchkin-digital/id1580629479\">Munchkin Digital</a> $9.99\u2013> $6.99 (first sale) | DLCs <strong>not</strong> discounted</p>",
"date_published": "2024-10-31T12:25:30+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1gb90tu",
"url": "/r/AppHookup/comments/1gb90tu/ios_weekly_game_deals_post_robert_kabwes_games/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1gb90tu/ios_weekly_game_deals_post_robert_kabwes_games/",
"title": "[iOS] [Weekly game deals post - Robert Kabwe\u2019s games for free; SteamWorld Heist & Quest, LEGO Bricktales, Aces of the Luftwaffe Squadron, Backflip Madness 1 & 2, Dungeon Tracer, Motorsport Manager 4, Harvest Moon: Home Sweet Home, Blue Wednesday, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1gb90tu/ios_weekly_game_deals_post_robert_kabwes_games/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1gb90tu/ios_weekly_game_deals_post_robert_kabwes_games/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/wilderless/id1485263737\">Wilderless</a> $4.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/nimian-legends-vandgels/id1234134376\">Nimian Legends: Vandgels</a> $3.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/nimian-legends-brightridge-hd/id1021026309\">Nimian Legends: BrightRidge HD</a> $3.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/foodabee-unlocked-edition/id1564073105\">Foodabee - Unlocked Edition</a> $39.99\u2013> Free | cooking game for kids</p>\n<p><a href=\"https://apps.apple.com/us/app/heroine-anthem-zero/id1274907797\">Heroine Anthem Zero</a> $3.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/cat-sandbox/id6468987588\">Cat Sandbox</a> $0.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/chartfight-hd/id364868224\">ChartFight HD</a> $0.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/steamworld-heist/id1093396572\">SteamWorld Heist</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/steamworld-quest/id1483051049\">SteamWorld Quest</a> $9.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lego-bricktales/id1618206278\">LEGO Bricktales</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/aces-of-the-luftwaffe-squadron/id1481181827\">Aces of the Luftwaffe Squadron</a> $7.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/backflip-madness/id564874986\">Backflip Madness</a> $0.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/backflip-madness-2/id1460431748\">Backflip Madness 2</a> $0.99\u2013> $0.49 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dungeon-tracer/id6502634839\">Dungeon Tracer</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/motorsport-manager-4/id6449251957\">Motorsport Manager 4</a> $4.99\u2013> $1.99 (new historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/harvest-moon-home-sweet-home/id6458877203\">Harvest Moon: Home Sweet Home</a> $17.99\u2013> $12.49 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/blue-wednesday/id6472153069\">Blue Wednesday</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/say-no-more/id1528696908\">Say No! More</a> $5.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/star-survivor-premium/id6464449923\">Star Survivor:Premium</a> $2.99\u2013> $1.49 ($0.50 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wildwood-graveyard-defense/id1482578488\">Wildwood: Graveyard Defense</a> Haunted Portal IAP $2.99\u2013> $0.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/train-valley-ii/id1621285774\">Train Valley 2</a> Epic Bundle IAP $19.99\u2013> $5.99 (matching historical low, unlocks all levels)</p>\n<p><a href=\"https://apps.apple.com/us/app/bendy-and-the-ink-machine/id1437669537\">Bendy and the Ink Machine</a> $6.99\u2013> $2.99 ($2 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/johnny-bonasera-1/id1151361813\">Johnny Bonasera 1</a> $1.99\u2013> $0.99 (lowest price in 2 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/johnny-bonasera-2/id1329230345\">Johnny Bonasera 2</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dark-nights-with-poe-and-munro/id1558832830\">Dark Nights with Poe and Munro</a> $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-complex/id1498618748\">The Complex</a> Full Game IAP $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/legacy-2-the-ancient-curse/id1315311810\">Legacy 2 - The Ancient Curse</a> Full Game IAP $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/construction-simulator-4/id1607511516\">Construction Simulator 4</a> $4.99\u2013> $3.99 (first sale) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/construction-simulator-3/id1439889483\">Construction Simulator 3</a> $3.99\u2013> $0.99 (new historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/construction-simulator-2/id983632334\">Construction Simulator 2</a> $1.99\u2013> $0.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/truck-simulation-19/id1173441705\">Truck Simulation 19</a> $2.99\u2013> $0.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/one-hand-clapping-ohc/id1524426643\">One Hand Clapping - OHC</a> $9.99\u2013> $4.99 ($4 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/spongebob-squarepants/id1523633394\">SpongeBob SquarePants (Battle for Bikini Bottom Rehydrated)</a> $9.99\u2013> $4.99 ($4 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/assassins-creed-mirage/id6472704261\">Assassin's Creed Mirage</a> Full Game IAP $49.99\u2013> $34.99 ($10 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/skel-and-defense/id6476342802\">Skel and Defense</a> $1.99\u2013> $0.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/7days-backer/id1411823462\">7Days : Backer</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/underworld-office-novel-game/id1523265842\">Underworld Office- Novel Game</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-ancestral-legacy/id1598280231\">The ancestral legacy</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/murders-on-budapest/id1573680310\">Murders on Budapest</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/argos-choice-crime-adventure/id1565101324\">Argo's Choice: Crime Adventure</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/not-exactly-a-hero-novel-game/id1569362261\">Not Exactly A Hero: novel game</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/a-story-of-a-company/id1604137685\">A Story Of A Company</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romantic-holic-dream-walker/id1573680562\">Romantic HOLIC : ~Dream walker</a> $4.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/packed/id6452588722\">Packed!?</a> Full Game IAP $2.99\u2013> $0.99 (first sale) | Hint IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/kaptain-brawe-brawe-new-world/id1436474457\">Kaptain Brawe: Brawe New World</a> Full Game IAP $9.99\u2013> $5.99 ($3 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/where-angels-cry/id1437365971\">Where Angels Cry?</a> Full Game IAP $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-tales-ii/id1586108879\">Kingdom Tales II</a> Full Game IAP $6.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/twin-mind-jealousy/id1560304407\">Twin Mind: Jealousy</a> Full Game IAP $6.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/mystery-tales-the-reel-horror/id1455952703\">Mystery Tales: The Reel Horror</a> Full Game IAP $6.99\u2013> $4.99 ($1 above historical low)</p>",
"date_published": "2024-10-24T18:01:17+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1fkecgg",
"url": "/r/AppHookup/comments/1fkecgg/ios_pix_lifetime_iap_2999_free_privacy_oriented/",
"external_url": "https://apps.apple.com/app/id1542670372",
"title": "[iOS] [Pix] [Lifetime IAP $29.99\u2013> Free] [Privacy oriented photo and video editor, automatic detection of faces, track moving objects and detect background]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1fkecgg/ios_pix_lifetime_iap_2999_free_privacy_oriented/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1fkecgg/ios_pix_lifetime_iap_2999_free_privacy_oriented/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-09-19T06:22:55+00:00",
"authors": [
{
"name": "Onkeoke",
"url": "https://www.reddit.com/user/Onkeoke"
}
]
},
{
"id": "1fg2mcd",
"url": "/r/AppHookup/comments/1fg2mcd/ios_extra_game_deals_post_assassins_creed_mirage/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1fg2mcd/ios_extra_game_deals_post_assassins_creed_mirage/",
"title": "[iOS] [Extra game deals post - Assassin's Creed Mirage, MEGA MAN X & X Dive Offline, Ace Attorney Trilogy, Dragon Quest Monsters: The Dark Prince, Wildfrost, The Jackbox Party Pack 10, Juicy Realm, To The Moon, Moncage, Northgard, Legend of Keepers, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1fg2mcd/ios_extra_game_deals_post_assassins_creed_mirage/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1fg2mcd/ios_extra_game_deals_post_assassins_creed_mirage/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/retro-racing/id436151675\">Retro Racing</a> $1.99\u2013> Free | Car Pack DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/escape-from-crimson-manor-ep-2/id1637953691\">Escape From Crimson Manor Ep.2</a> $2.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/hero-of-the-kingdom-iii/id6449968269\">Hero of the Kingdom III</a> $8.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/heroine-anthem-zero/id1274907797\">Heroine Anthem Zero</a> $3.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/assassins-creed-mirage/id6472704261\">Assassin's Creed Mirage</a> Full Game IAP $49.99\u2013> $24.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/mega-man-x/id469343097\">MEGA MAN X</a> $4.99\u2013> $2.99 (lowest price in 7 years) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/mega-man-x-dive-offline/id6446021269\">Mega Man X Dive Offline</a> $29.99\u2013> $9.89 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/ace-attorney-trilogy/id1621065119\">Ace Attorney Trilogy</a> $24.99\u2013> $14.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dqm-the-dark-prince/id6449183990\">Dragon Quest Monsters: The Dark Prince</a> $29.99\u2013> $23.99 (launch sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/wildfrost/id6462882621\">Wildfrost</a> Full game IAP $6.99\u2013> $4.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-jackbox-party-pack-10/id1667692686\">The Jackbox Party Pack 10</a> $34.99\u2013> $29.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/juicy-realm/id1453808408\">Juicy Realm</a> $2.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/to-the-moon/id1159700098\">To the Moon</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/moncage/id1587860402\">Moncage</a> $4.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/northgard/id1533979882\">Northgard</a> $7.99\u2013> $5.99 ($1 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/legend-of-keepers/id6444660338\">Legend of Keepers</a> $6.99\u2013> $2.99 (matching historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/otakus-adventure/id1614795077\">Otaku's Adventure</a> $2.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/icey/id1271620263\">ICEY</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/settlement-survival/id1623596533\">Settlement Survival</a> $5.99\u2013> $4.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slayaway-camp/id1123828832\">Slayaway Camp</a> $2.99\u2013> $0.99 (matching historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/the-legend-of-tianding/id1613900816\">The Legend of Tianding</a> $6.99\u2013> $3.49 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/my-lovely-wife/id1625645377\">My Lovely Wife</a> Special Bundle IAP $8.99\u2013> $4.49 (contains all chapters + incubus pack, matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-library-of-babel/id1639028046\">The Library of Babel</a> Full game IAP $6.99\u2013> $3.49 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rebel-cops/id1488452530\">Rebel Cops</a> $7.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/aces-of-the-luftwaffe-squadron/id1481181827\">Aces of the Luftwaffe Squadron</a> $7.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/train-valley-ii/id1621285774\">Train Valley 2</a> Epic Bundle IAP $19.99\u2013> $8.99 ($3 above historical low, unlocks all levels)</p>\n<p><a href=\"https://apps.apple.com/us/app/rusty-lake-paradise/id1253855339\">Rusty Lake Paradise</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rusty-lake-roots/id1142016085\">Rusty Lake: Roots</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rusty-lake-hotel/id1059911569\">Rusty Lake Hotel</a> $2.99\u2013> $0.99 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-past-within/id1642601792\">The Past Within</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/underground-blossom/id1665706687\">Underground Blossom</a> $2.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-white-door/id1472184189\">The White Door</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/cube-escape-paradox/id1372021096\">Cube Escape: Paradox</a> Chapter 2 IAP $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-room-two/id667362389\">The Room Two</a> $1.99\u2013> $0.99 ($0.60 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-room-three/id918054748\">The Room Three</a> $3.99\u2013> $1.99 ($1.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-room-old-sins/id1286676015\">The Room: Old Sins</a> $4.99\u2013> $2.99 ($2 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dungeon-and-puzzles/id1571643809\">Dungeon and Puzzles</a> $2.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/teslagrad/id1374372468\">Teslagrad</a> $6.99\u2013> $0.69 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/arrog/id1499642327\">Arrog</a> $2.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dark-nights-with-poe-and-munro/id1558832830\">Dark Nights with Poe and Munro</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/eloh/id1406382064\">ELOH</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/cyber-manhunt/id1644917705\">Cyber Manhunt</a> $4.99\u2013> $2.99 (matching historical low) | Both DLCs are <strong>not</strong> discounted but they are $1 each to begin with.</p>\n<p><a href=\"https://apps.apple.com/us/app/orwell-keeping-an-eye-on-you/id1476541931\">Orwell: Keeping an Eye on You</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-stillness-of-the-wind/id1438707014\">The Stillness of the Wind</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/skel-and-defense/id6476342802\">Skel and Defense</a> $1.99\u2013> $0.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/7days-backer/id1411823462\">7Days : Backer</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/underworld-office-novel-game/id1523265842\">Underworld Office- Novel Game</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-ancestral-legacy/id1598280231\">The ancestral legacy</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/murders-on-budapest/id1573680310\">Murders on Budapest</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/argos-choice-crime-adventure/id1565101324\">Argo's Choice: Crime Adventure</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/not-exactly-a-hero-novel-game/id1569362261\">Not Exactly A Hero: novel game</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/a-story-of-a-company/id1604137685\">A Story Of A Company</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romantic-holic-dream-walker/id1573680562\">Romantic HOLIC : ~Dream walker</a> $4.99\u2013> $0.49 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter/id1179441297\">Slaughter</a> $0.99\u2013> $0.29 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter-2-prison-assault/id1302383059\">Slaughter 2: Prison Assault</a> $0.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter-3-the-rebels/id1477104304\">Slaughter 3: The Rebels</a> $0.99\u2013> $0.29 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter-the-lost-outpost/id6455377957\">Slaughter: The Lost Outpost</a> $4.99\u2013> $1.39 ($0.39 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/mindcell/id1518385711\">Mindcell</a> $0.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wall-of-insanity/id1580067723\">Wall of insanity</a> $2.99\u2013> $0.49 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/adventure-pinball/id1470076361\">Adventure Pinball</a> $1.99\u2013> $0.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/castle-of-white-night/id1494667368\">Castle of White Night</a> $2.99\u2013> $1.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>",
"date_published": "2024-09-13T19:01:43+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1fdku05",
"url": "/r/AppHookup/comments/1fdku05/ios_wilderless_499_free_open_world_no_enemies_no/",
"external_url": "https://apps.apple.com/de/app/wilderless/id1485263737",
"title": "[iOS] [Wilderless] [$4.99 -> Free] [Open World. No enemies. No quests. Just miles of beautiful, natural, untamed wilderness to explore and relax in.]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1fdku05/ios_wilderless_499_free_open_world_no_enemies_no/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1fdku05/ios_wilderless_499_free_open_world_no_enemies_no/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-09-10T15:35:54+00:00",
"authors": [
{
"name": "Achoo_Gesundheit",
"url": "https://www.reddit.com/user/Achoo_Gesundheit"
}
]
},
{
"id": "1fb25vu",
"url": "/r/AppHookup/comments/1fb25vu/ios_extra_game_deals_post_the_witness_implosion/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1fb25vu/ios_extra_game_deals_post_the_witness_implosion/",
"title": "[iOS] [Extra game deals post - The Witness, Implosion - Never Lose Hope, HAAK, Superliminal, MO: Astray, Yes, Your Grace, The Enchanted World, SteamWorld Heist & Quest, Machinarium, Botanicula, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1fb25vu/ios_extra_game_deals_post_the_witness_implosion/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1fb25vu/ios_extra_game_deals_post_the_witness_implosion/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/deemo/id700637744\">DEEMO</a> $1.99\u2013> Free | Forgotten Hourglass DLC $9.99\u2013> $6.99, rest of the IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/cytus-ii/id1290687550\">Cytus II</a> $1.99\u2013> Free | Kizuna IAP $9.99\u2013> $4.99, CAPSO IAP $9.99\u2013> $4.99, rest of the IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/sortpuz/id6670367447\">SortPuz</a> $0.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/the-witness/id1230231705\">The Witness</a> $9.99\u2013> $3.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/implosion-never-lose-hope/id870322730\">Implosion - Never Lose Hope</a> $1.99\u2013> $0.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/haak/id1336793944\">HAAK</a> $3.99\u2013> $1.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/superliminal/id6443604310\">Superliminal</a> Full game IAP $7.99\u2013> $3.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/mo-astray/id1514741332\">MO: Astray</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/yes-your-grace/id6468678719\">Yes, Your Grace</a> Full Game IAP $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-enchanted-world/id6469894632\">The Enchanted World</a> Full game IAP $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/steamworld-heist/id1093396572\">SteamWorld Heist</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/steamworld-quest/id1483051049\">SteamWorld Quest</a> $9.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/machinarium/id459189186\">Machinarium</a> $5.99\u2013> $1.99 (lowest price in 2 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/botanicula/id853706620\">Botanicula</a> $4.99\u2013> $1.99 (lowest price in 2 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/chuchel/id1296646396\">CHUCHEL</a> $4.99\u2013> $1.99 (lowest price in a year)</p>\n<p><a href=\"https://apps.apple.com/us/app/happy-game/id1490100895\">Happy Game :)</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/trudograd/id1637252671\">TRUDOGRAD</a> $9.99\u2013> $6.99 ($1 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/sands-of-salzaar/id6443875944\">Sands of Salzaar</a> $4.99\u2013> $3.99 ($0.50 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/art-of-rally/id6459581344\">Art of Rally</a> $7.99\u2013> $3.99 ($1 above historical low) | DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/descenders/id1604675493\">Descenders</a> $9.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slash-quest/id6478560267\">Slash Quest!</a> Full Game IAP $4.99\u2013> $0.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/towaga-among-shadows/id1637913311\">Towaga: Among Shadows</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lichtspeer/id1332743891\">Lichtspeer</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-bug-butcher/id1090552213\">The Bug Butcher</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chameleon-run/id1084860489\">Chameleon Run</a> $1.99\u2013> $0.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/absolute-drift/id1356770278\">Absolute Drift</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/suzy-cube/id1293337633\">Suzy Cube</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/summer-catchers/id1488674076\">Summer Catchers</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/invert-tile-flipping-puzzles/id1220540830\">Invert - Tile Flipping Puzzles</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/kensh%C5%8D/id1033471974\">Kensh\u014d</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/say-no-more/id1528696908\">Say No! More</a> $5.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/samorost-2/id1506973111\">Samorost 2</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/samorost-3/id1121782467\">Samorost 3</a> $5.99\u2013> $1.99 (lowest price in 2 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/samorost-1/id1561324007\">Samorost 1</a> is permanently free if someone wants to try it.</p>\n<p><a href=\"https://apps.apple.com/us/app/bright-reappear/id6449205552\">Bright Reappear</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dinkigolf/id1546991456\">Dinkigolf</a> $1.99\u2013> $0.49 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/pachoink/id1488272669\">Pachoink!</a> $1.99\u2013> $0.49 (lowest price in 4 years)</p>",
"date_published": "2024-09-07T08:21:18+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1eszvrx",
"url": "/r/AppHookup/comments/1eszvrx/ios_weekly_game_deals_post_dungeon_tracer/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1eszvrx/ios_weekly_game_deals_post_dungeon_tracer/",
"title": "[iOS] [Weekly game deals post - Dungeon Tracer, SteamWorld Heist & Quest, LEGO Bricktales, The Quest, Labyrinth of the Witch DX, Lock's Quest, Chicken Police, Methods: Detective Competition, Blacksmith of the Sand Kingdom, Aliens vs. Pinball, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1eszvrx/ios_weekly_game_deals_post_dungeon_tracer/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1eszvrx/ios_weekly_game_deals_post_dungeon_tracer/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/hero-of-the-kingdom-tales-2/id6450450848\">Hero of the Kingdom: Tales 2</a> $5.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/8bitwar-netherworld/id827101160\">8bitWar: Netherworld</a> $2.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/dungeon-tracer/id6502634839\">Dungeon Tracer</a> $2.99\u2013> $0.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/steamworld-heist/id1093396572\">SteamWorld Heist</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/steamworld-quest/id1483051049\">SteamWorld Quest</a> $9.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lego-bricktales/id1618206278\">LEGO Bricktales</a> $4.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/labyrinth-of-the-witch-dx/id1500378832\">Labyrinth of the Witch DX</a> $8.99\u2013> $4.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-quest/id1135197236\">The Quest</a> $7.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-quest-islands-of-ice-and-fire/id1146251073\">The Quest - Islands of Ice and Fire</a> $3.99\u2013> $1.99 (matching historical low) | This is a standalone expansion of The Quest.</p>\n<p><a href=\"https://apps.apple.com/us/app/locks-quest/id1464510254\">Lock's Quest</a> $7.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chicken-police/id1538607724\">Chicken Police</a> $9.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/methods-detective-competition/id6467845950\">Methods: Detective Competition</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/methods2-secrets-and-death/id6475326812\">Methods 2: Secrets and Death</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/methods-3-the-invisible-man/id6502622226\">Methods 3: The Invisible Man</a> $1.99\u2013> $0.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/blacksmith-of-the-sand-kingdom/id1504036007\">Blacksmith of the Sand Kingdom</a> $7.99\u2013> $3.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/aliens-vs-pinball/id1080322746\">Aliens vs. Pinball</a> Pinball Wizard Pack $5.99\u2013> $2.99 (matching historical low) - this pack unlocks all tables & removed ads.</p>\n<p><a href=\"https://apps.apple.com/us/app/agent-a-a-puzzle-in-disguise/id940006911\">Agent A: A puzzle in disguise</a> Full game IAP $9.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/down-in-bermuda/id1635093929\">Down in Bermuda</a> $5.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/this-is-the-police-2/id1453820315\">This Is the Police 2</a> $7.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hyperforma-premium/id1296875300\">Hyperforma Premium</a> $4.99\u2013> $1.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/orwell-keeping-an-eye-on-you/id1476541931\">Orwell: Keeping an Eye on You</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/bumi-next-stop-earth/id6450597788\">Bumi: Next stop, Earth!</a> $4.49\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/not-another-weekend/id1548002851\">Not Another Weekend</a> $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/airline-tycoon-deluxe/id524392453\">Airline Tycoon Deluxe</a> $5.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/in-my-shadow/id1537443268\">In My Shadow</a> $4.99\u2013> $2.49 ($0.50 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/minigames-watch-games-arcade/id1519386476\">MiniGames - Watch Games Arcade</a> $1.99\u2013> $0.29</p>\n<p><a href=\"https://apps.apple.com/us/app/angor-rpg/id6502256054\">Angor - RPG (for iPhone)</a> $3.99\u2013> $0.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/angor-rpg/id6504528124\">Angor : RPG (for iPad)</a> $4.99\u2013> $1.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/say-no-more/id1528696908\">Say No! More</a> $5.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rpg-seek-hearts/id1363862533\">RPG Seek Hearts</a> $7.99\u2013> $1.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/premium-rpg-heirs-of-the-kings/id1278822663\">RPG Heirs of the Kings</a> $7.99\u2013> $1.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/rpg-sword-of-elpisia/id1546592436\">RPG Sword of Elpisia</a> $7.99\u2013> $1.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/colossal-cave-3d/id6443992938\">Colossal Cave 3D</a> Full game IAP $12.99\u2013> $9.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-stillness-of-the-wind/id1438707014\">The Stillness of the Wind</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/i-saw-black-clouds/id1577742597\">I Saw Black Clouds</a> Full game IAP $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/bloodshore/id1584655810\">Bloodshore</a> Full game IAP $6.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/angelo-and-deemon/id1508486574\">Angelo and Deemon</a> Full game IAP $4.99\u2013> $2.99 ($2 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/stormhill-mystery/id1439581636\">Stormhill Mystery</a> Full game IAP $4.99\u2013> $1.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter/id1179441297\">Slaughter</a> $0.99\u2013> $0.29 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter-2-prison-assault/id1302383059\">Slaughter 2: Prison Assault</a> $0.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter-3-the-rebels/id1477104304\">Slaughter 3: The Rebels</a> $0.99\u2013> $0.29 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/slaughter-the-lost-outpost/id6455377957\">Slaughter: The Lost Outpost</a> $4.99\u2013> $1.19 ($0.19 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/mindcell/id1518385711\">Mindcell</a> $0.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wall-of-insanity/id1580067723\">Wall of insanity</a> $2.99\u2013> $0.69 ($0.20 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/fairy-godmother-cinderella/id1507170351\">Fairy Godmother: Cinderella</a> Full game IAP $6.99\u2013> $3.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hidden-expedition-kings-line/id1580732535\">Hidden Expedition: King's Line</a> Full game IAP $6.99\u2013> $4.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/mystical-riddles-eyes/id1641294084\">Mystical Riddles: Eyes</a> Full game IAP $6.99\u2013> $3.99 (matching historical low)</p>",
"date_published": "2024-08-15T16:40:38+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1egkk8j",
"url": "/r/AppHookup/comments/1egkk8j/ios_weekly_game_deals_post_square_enix_titles/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1egkk8j/ios_weekly_game_deals_post_square_enix_titles/",
"title": "[iOS] [Weekly game deals post - Square Enix titles (Final Fantasy, Chrono Trigger, Voice of Cards trilogy, SaGa series, Mana series, etc.), MEGA MAN X & X Dive, Ace Attorney Trilogy, Superliminal, The Enchanted World, Art of Rally, Descenders, Yes, Your Grace, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1egkk8j/ios_weekly_game_deals_post_square_enix_titles/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1egkk8j/ios_weekly_game_deals_post_square_enix_titles/'>Reddit</a></caption><div><br></div><p>Note: From now on, \u2018new historical low\u2019 & \u2018matching historical low\u2019 prices will be indicated separately wherever possible.</p>\n<p><a href=\"https://apps.apple.com/us/app/hero-of-the-kingdom-iii/id6449968269\">Hero of the Kingdom III</a> $8.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/rescue-the-enchanter/id1183548754\">Rescue the Enchanter</a> $3.99\u2013> Free | IAPs are non-essential</p>\n<p><a href=\"https://apps.apple.com/us/app/8bitwar-origins/id890932971\">8bitWar: Origins</a> $1.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/preston-sterling/id1096221819\">Preston Sterling</a> $1.99\u2013> Free</p>\n<hr />\n<p><strong>Square Enix Titles:</strong></p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy/id1492041278\">FINAL FANTASY</a> $11.99\u2013> $8.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-ii/id1492041252\">FINAL FANTASY II</a> $11.99\u2013> $8.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-iii/id1492041436\">FINAL FANTASY III</a> $17.99\u2013> $12.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-iv/id1492041417\">FINAL FANTASY IV</a> $17.99\u2013> $12.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-v/id1492041611\">FINAL FANTASY V</a> $17.99\u2013> $12.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-vi/id1492041539\">FINAL FANTASY VI</a> $17.99\u2013> $12.99 (matching historical low)</p>\n<p>Or get <a href=\"https://apps.apple.com/us/app-bundle/final-fantasy-i-vi-bundle/id1633610868\">this bundle containing Final Fantasy I to VI</a> for $47.99</p>\n<p><a href=\"https://apps.apple.com/us/app/ff-iv-the-after-years/id683029090\">FF IV: THE AFTER YEARS</a> $14.99\u2013> $7.99 (lowest price since December \u201822)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-vii/id1021566244\">FINAL FANTASY VII</a> $15.99\u2013> $7.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-viii-remastered/id1326740784\">FINAL FANTASY VIII Remastered</a> $20.99\u2013> $9.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy/id1041260001\">FINAL FANTASY \u2168</a> $20.99\u2013> $9.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-tactics/id500098096\">FINAL FANTASY TACTICS</a> [For iPads] $15.99\u2013> $7.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-tactics-wotl/id446760220\">FINAL FANTASY TACTICS</a> [For iPhones] $13.99\u2013> $6.99 (lowest price in 5 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-dimensions/id540992837\">FINAL FANTASY DIMENSIONS</a> \u201cSet: Chapters 1-4\u201d in-app purchase $12.99\u2013> $6.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-dimensions-ii/id1239279234\">FINAL FANTASY DIMENSIONS II</a> $14.99\u2013> $6.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/finalfantasy-crystalchronicles/id1478870957\">FINAL FANTASY CRYSTAL CHRONICLES</a> Full Game IAP $24.99\u2013> $12.99 ($3 above historical low) | Other IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/chrono-trigger-upgrade-ver/id479431697\">CHRONO TRIGGER (Upgrade Ver.)</a> $9.99\u2013> $4.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/actraiser-renaissance/id1532193171\">Actraiser Renaissance</a> $19.99\u2013> $9.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chaos-rings/id958455860\">CHAOS RINGS \u2162</a> $19.99\u2013> $9.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/valkyrie-profile-lenneth/id1324458386\">VALKYRIE PROFILE: LENNETH</a> $17.99\u2013> $8.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/paranormasight/id6443444225\">PARANORMASIGHT</a> $18.99\u2013> $10.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-centennial-case/id6443534696\">The Centennial Case</a> $19.99\u2013> $9.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/voc-the-isle-dragon-roars/id1642251992\">VoC: The Isle Dragon Roars</a> $12.99\u2013> $8.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/voc-the-forsaken-maiden/id1642252881\">VoC: The Forsaken Maiden</a> $12.99\u2013> $8.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/voc-the-beasts-of-burden/id1642253592\">VoC: The Beasts of Burden</a> $12.99\u2013> $8.99 (matching historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/secret-of-mana/id407949800\">Secret of Mana</a> $7.99\u2013> $3.99 (lowest price in a year)</p>\n<p><a href=\"https://apps.apple.com/us/app/adventures-of-mana/id1048629983\">Adventures of Mana</a> $13.99\u2013> $6.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/trials-of-mana/id1552176109\">Trials of Mana</a> $22.99\u2013> $11.99 (lowest price in a year)</p>\n<p><a href=\"https://apps.apple.com/us/app/legend-of-mana/id1563156209\">Legend of Mana</a> $27.99\u2013> $13.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/saga-emerald-beyond/id6444115517\">SaGa Emerald Beyond</a> $49.99\u2013> $37.49 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/saga-frontier-remastered/id1543852237\">SaGa Frontier Remastered</a> $24.99\u2013> $12.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/saga-scarlet-grace-ambitions/id1237502412\">SaGa SCARLET GRACE : AMBITIONS</a> $29.99\u2013> $8.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romancing-saga-minstrel-song/id1614201688\">Romancing SaGa -Minstrel Song-</a> $24.99\u2013> $14.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romancing-saga-2/id1083835330\">ROMANCING SAGA 2</a> $17.99\u2013> $4.99 ($1.50 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romancing-saga-3/id1442497118\">Romancing SaGa 3</a> $21.99\u2013> $6.49 ($2.54 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/collection-of-saga-ff-legend/id1565119677\">COLLECTION of SaGa FF LEGEND</a> $19.99\u2013> $9.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/various-daylife-mobile/id6444435974\">VARIOUS DAYLIFE Mobile</a> $22.99\u2013> $8.99 (new historical low)</p>\n<hr />\n<p><strong>Other sales:</strong></p>\n<p><a href=\"https://apps.apple.com/us/app/mega-man-x/id469343097\">MEGA MAN X</a> $4.99\u2013> $2.99 (lowest price in 7 years) | Complete the Set IAP $3.99\u2013> $1.99</p>\n<p><a href=\"https://apps.apple.com/us/app/mega-man-x-dive-offline/id6446021269\">Mega Man X Dive Offline</a> $29.99\u2013> $14.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/ace-attorney-trilogy/id1621065119\">Ace Attorney Trilogy</a> $24.99\u2013> $14.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/superliminal/id6443604310\">Superliminal</a> $7.99\u2013> $4.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-enchanted-world/id6469894632\">The Enchanted World</a> Full game IAP $3.99\u2013> $0.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/art-of-rally/id6459581344\">Art of Rally</a> $7.99\u2013> $2.99 (new historical low) | DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/rush-rally-2/id967812288\">Rush Rally 2</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/descenders/id1604675493\">Descenders</a> $9.99\u2013> $2.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/yes-your-grace/id6468678719\">Yes, Your Grace</a> Full Game IAP $4.99\u2013> $1.99 (new historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/slash-quest/id6478560267\">Slash Quest!</a> Full Game IAP $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/towaga-among-shadows/id1637913311\">Towaga: Among Shadows</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lichtspeer/id1332743891\">Lichtspeer</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-bug-butcher/id1090552213\">The Bug Butcher</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chameleon-run/id1084860489\">Chameleon Run</a> $1.99\u2013> $0.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/absolute-drift/id1356770278\">Absolute Drift</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/suzy-cube/id1293337633\">Suzy Cube</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/summer-catchers/id1488674076\">Summer Catchers</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/invert-tile-flipping-puzzles/id1220540830\">Invert - Tile Flipping Puzzles</a> $2.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-bunker/id1188620229\">The Bunker</a> $4.99\u2013> $1.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/shadow-quest-adventure-rpg/id1664173755\">Shadow Quest Adventure RPG</a> $1.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/teslagrad/id1374372468\">Teslagrad</a> $6.99\u2013> $0.69 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/arrog/id1499642327\">Arrog</a> $2.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/kensh%C5%8D/id1033471974\">Kensh\u014d</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chikis-chase/id1498398104\">Chiki's Chase</a> Remove Ads IAP $4.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/captain-temporium/id1058962829\">Captain Temporium</a> $0.99\u2013> $0.29 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lost-horizon-2017/id1301257809\">Lost Horizon (2017)</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lost-horizon-2/id1301257518\">Lost Horizon 2</a> $3.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/secret-files-tunguska/id1211901675\">Secret Files: Tunguska</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/secret-files-2-puritas-cordis/id1229103522\">Secret Files 2: Puritas Cordis</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/secret-files-3/id1481710698\">Secret Files 3</a> $4.99\u2013> $0.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/secret-files-sam-peters/id1211146851\">Secret Files: Sam Peters</a> $1.99\u2013> $0.99 (lowest price since Nov. \u201823)</p>\n<p><a href=\"https://apps.apple.com/us/app/about-love-and-hate/id558459510\">About Love and Hate</a> $2.99\u2013> $1.99 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/blown-away-secret-of-the-wind/id1064025591\">Blown Away: Secret of the Wind</a> $1.99\u2013> $0.99 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/spirit-legends-the-aeon-heart/id1575921856\">Spirit Legends: The Aeon Heart</a> Full Game IAP $6.99\u2013> $4.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/myths-or-reality-fairy/id1592993215\">Myths or Reality: Fairy</a> Full Game IAP $6.99\u2013> $3.99 (matching historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hidden-motives-rush/id1590503970\">Hidden Motives: Rush</a> Full Game IAP $6.99\u2013> $4.99 ($1 above historical low)</p>",
"date_published": "2024-07-31T11:16:23+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1eciz2u",
"url": "/r/AppHookup/comments/1eciz2u/ios_weekly_game_deals_post_assassins_creed_mirage/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1eciz2u/ios_weekly_game_deals_post_assassins_creed_mirage/",
"title": "[iOS] [Weekly game deals post - Assassin's Creed Mirage, Titan Quest: Ultimate Edition, To the Moon, Afterplace, Bright Reappear, 60 Seconds! & 60 Parsecs!, Juicy Realm, Severed, Orwell: Keeping an Eye on You, Rebel Cops, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1eciz2u/ios_weekly_game_deals_post_assassins_creed_mirage/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1eciz2u/ios_weekly_game_deals_post_assassins_creed_mirage/'>Reddit</a></caption><div><br></div><p><a href=\"https://apps.apple.com/us/app/hero-of-the-kingdom-ii/id6449934569\">Hero of the Kingdom II</a> $7.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/mars-1931/id6448911286\">MARS 1931</a> $0.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/chloe-puzzle-game-pro/id1665917003\">Chloe Puzzle Game Pro</a> $1.99\u2013> Free</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/assassins-creed-mirage/id6472704261\">Assassin's Creed Mirage</a> Full Game IAP $49.99\u2013> $24.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/titan-quest-ultimate-edition/id6455985208\">Titan Quest: Ultimate Edition</a> $24.99\u2013> $16.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/to-the-moon/id1159700098\">To the Moon</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/afterplace/id1539778232\">Afterplace</a> $6.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/bright-reappear/id6449205552\">Bright Reappear</a> $1.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/60-parsecs/id1291429551\">60 Parsecs!</a> $3.99\u2013> $1.99 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/60-seconds-reatomized/id1474716211\">60 Seconds! Reatomized</a> $3.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/juicy-realm/id1453808408\">Juicy Realm</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/severed/id972657175\">Severed</a> $6.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/orwell-keeping-an-eye-on-you/id1476541931\">Orwell: Keeping an Eye on You</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rebel-cops/id1488452530\">Rebel Cops</a> $7.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dungeon-and-puzzles/id1571643809\">Dungeon and Puzzles</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/swim-out/id1204231646\">Swim Out</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/endling/id1625083646\">Endling</a> $9.99\u2013> $4.99 ($4 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dark-nights-with-poe-and-munro/id1558832830\">Dark Nights with Poe and Munro</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-complex/id1498618748\">The Complex</a> Full Game IAP $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wheels-of-aurelia/id1198170026\">Wheels of Aurelia</a> $4.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/fotonica/id871197819\">FOTONICA</a> $4.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/tempest-pirate-rpg-premium/id1127729015\">Tempest: Pirate RPG Premium</a> $7.99\u2013> $3.99 ($1 above historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/earth-atlantis/id1065334252\">Earth Atlantis</a> $2.99\u2013> $1.99 (lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/unboxing-the-cryptic-killer/id6448352407\">Unboxing the Cryptic Killer</a> $5.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-isle-of-ubohoth/id6474416069\">The Isle Of Ubohoth</a> $12.99\u2013> $11.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-stillness-of-the-wind/id1438707014\">The Stillness of the Wind</a> $4.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hue/id1567355347\">HUE\u00b2</a> $0.99\u2013> $0.29 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/color-sheep/id592148079\">Color Sheep</a> $0.99\u2013> $0.49 ($0.10 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/tower-of-fortune-3/id1063954123\">Tower of Fortune 3</a> $2.99\u2013> $1.99 ($1 above historical low) | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/the-lost-shield/id1161122860\">The Lost Shield</a> $1.99\u2013> $0.99 (historical low) | IAPs <strong>not</strong> discounted</p>",
"date_published": "2024-07-26T08:27:30+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1ebsfjq",
"url": "/r/AppHookup/comments/1ebsfjq/iosscansphere_pdf_3d_scannerlifetime_iap_9999_free/",
"external_url": "https://apps.apple.com/us/app/scansphere-scan-pdf-3d-room/id6535089764",
"title": "[IOS][ScanSphere - PDF & 3D Scanner][Lifetime IAP $99.99 \u2014> Free]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1ebsfjq/iosscansphere_pdf_3d_scannerlifetime_iap_9999_free/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1ebsfjq/iosscansphere_pdf_3d_scannerlifetime_iap_9999_free/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-07-25T11:23:38+00:00",
"authors": [
{
"name": "vladmarian2005",
"url": "https://www.reddit.com/user/vladmarian2005"
}
]
},
{
"id": "1eb0ium",
"url": "/r/AppHookup/comments/1eb0ium/ios_lifetime_5999_free_formula_1_f1_race_widgets/",
"external_url": "https://apps.apple.com/app/formula-1-widgets/id6563139297",
"title": "[iOS] [Lifetime $59.99 -> FREE] [Formula 1 F1 Race Widgets] ",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1eb0ium/ios_lifetime_5999_free_formula_1_f1_race_widgets/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1eb0ium/ios_lifetime_5999_free_formula_1_f1_race_widgets/'>Reddit</a></caption><div><br></div><p>Race Widgets is a comprehensive real-time race statistics app for Formula 1\u00ae on iPhone, iPad and Apple Vision. It\u2019s simple enough to pick up and use immediately, and powerful enough to stay ahead of the curve. The delightful interface is coupled with extensive features.</p>\n<p>https://apps.apple.com/app/formula-1-widgets/id6563139297</p>",
"date_published": "2024-07-24T12:43:08+00:00",
"authors": [
{
"name": "Cowlinn",
"url": "https://www.reddit.com/user/Cowlinn"
}
]
},
{
"id": "1dp7ta0",
"url": "/r/AppHookup/comments/1dp7ta0/meta_rapphookups_posting_rules_are_changing_to/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1dp7ta0/meta_rapphookups_posting_rules_are_changing_to/",
"title": "[Meta] r/Apphookup\u2019s posting rules are changing to keep up with offers that bypass AppStore IAP mechanisms.",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1dp7ta0/meta_rapphookups_posting_rules_are_changing_to/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1dp7ta0/meta_rapphookups_posting_rules_are_changing_to/'>Reddit</a></caption><div><br></div><ul>\n<li>\n<p>No developer -without exception- is allowed to <strong>offer anything on r/Apphookup that is not sold normally via the AppStore</strong>. \nWhy? To ensure that subscription-only apps, which do not sell lifetime licenses, cannot take advantage of r/Apphookup readers to inflate their AppStore rankings and also to ensure compliance with <a href=\"https://developer.apple.com/app-store/review/guidelines/#in-app-purchase\">Rule 3.1.1 of Apple\u2019s App Review Guidelines</a>: \n\u201cIn-App Purchase:\nIf you want to unlock features or functionality within your app, (by way of example: subscriptions, in-game currencies, game levels, access to premium content, or unlocking a full version), you must use in-app purchase. Apps may not use their own mechanisms to unlock content or functionality, such as license keys, augmented reality markers, QR codes, cryptocurrencies and cryptocurrency wallets, etc.\u201d</p>\n</li>\n<li>\n<p>If a developer wishes to offer a license to their app via registration of an in-app account (thereby bypassing AppStore IAPs) then it is <strong>compulsory to provide proof of acceptance of such an upgrade pathway by AppStore review team</strong> to the moderators beforehand via moderator mail and disclose such account requirement in the post. Provided that the in-app account is being created on your own servers (over which you have direct control of modification), the proof of purchase is available to you and not outsourced to a third-party receipt validator like RevenueCat or Adapty.io. To simplify, the app developer must have the means to directly restore the entitlement if it is somehow lost from their servers.</p>\n</li>\n<li>\n<p><strong>r/Apphookup does not recognise in-app entitlements made through RevenueCat or Adapty.io or similar solutions</strong> because app developers do not have direct control over the working of these services and cannot be trusted to restore such entitlements when lost without the means to do so (based on previous instances observed in r/Apphookup). To simplify, use AppStore IAPs and don\u2019t try to trick us.</p>\n</li>\n</ul>\n<p>Feel like we missed something? Do let us know in the comments.</p>",
"date_published": "2024-06-26T19:52:25+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1cscexs",
"url": "/r/AppHookup/comments/1cscexs/ios_minecraft_699_199_discounted_for_its_upcoming/",
"external_url": "https://apps.apple.com/us/app/minecraft/id479516143",
"title": "[iOS] [Minecraft] [$6.99\u2013> $1.99] [Discounted for its upcoming 15th anniversary]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1cscexs/ios_minecraft_699_199_discounted_for_its_upcoming/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1cscexs/ios_minecraft_699_199_discounted_for_its_upcoming/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-05-15T04:31:20+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1coyeh1",
"url": "/r/AppHookup/comments/1coyeh1/ios_sleep_sounds_by_sleepmaster_9999_free/",
"external_url": "https://apps.apple.com/us/app/sleep-sounds-by-sleepmaster/id1661687621",
"title": "[iOS] [Sleep Sounds by SleepMaster] [$99.99 -> Free Lifetime IAP] [150+ professionally recorded and tested sounds to guarantee a good night\u2019s sleep!]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1coyeh1/ios_sleep_sounds_by_sleepmaster_9999_free/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1coyeh1/ios_sleep_sounds_by_sleepmaster_9999_free/'>Reddit</a></caption><div><br></div><p>Say goodbye to sleepless nights. Join millions of people who already relax and fall asleep with sleep sounds and white noise. Keep playing sounds for however long you need to ensure you get the good sleep you deserve. With over 150 sounds, music and brainwaves for you to choose from, you are guaranteed to find something you love! Download our app tonight and sleep better than ever before!</p>\n<p><strong>Select the free lifetime in-app purchase during onboard.</strong></p>\n<p>Disclaimer: I have no affiliation with this app.</p>",
"date_published": "2024-05-10T19:50:30+00:00",
"authors": [
{
"name": "mfr3sh",
"url": "https://www.reddit.com/user/mfr3sh"
}
]
},
{
"id": "1c8kl7d",
"url": "/r/AppHookup/comments/1c8kl7d/ios_ai_math_solver_scanner_9999_free_snap_solve/",
"external_url": "https://apps.apple.com/app/ai-math-solver-scanner/id6475263001",
"title": "[iOS] [Ai Math Solver & Scanner] [$99.99 --> Free] [Snap & Solve any math problem with step-by-step solutions & access GPT 4.0 tutor. For a limited time secure the lifetime offer for $0.00.]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1c8kl7d/ios_ai_math_solver_scanner_9999_free_snap_solve/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1c8kl7d/ios_ai_math_solver_scanner_9999_free_snap_solve/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-04-20T08:03:15+00:00",
"authors": [
{
"name": "JavaAbsolute",
"url": "https://www.reddit.com/user/JavaAbsolute"
}
]
},
{
"id": "1bcqaz6",
"url": "/r/AppHookup/comments/1bcqaz6/ios_some_free_app_deals_from_indie_app_sales/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1bcqaz6/ios_some_free_app_deals_from_indie_app_sales/",
"title": "[iOS] [Some free app deals from Indie App Sales event] [$Various\u2014> Free]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1bcqaz6/ios_some_free_app_deals_from_indie_app_sales/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1bcqaz6/ios_some_free_app_deals_from_indie_app_sales/'>Reddit</a></caption><div><br></div><p>Indie App Sales (not related to Indie App Santa) is back for their 2024 Edition for two days only - March 12 & 13.</p>\n<p>Official website: https://www.indieappsales.com/</p>\n<p>I\u2019ve attempted to cut the clutter by removing the free trials and \u201cfake\u201d free deals on the website in this post. All of the deals below are either previously paid apps gone free or Lifetime/one-time payment IAPs gone free.</p>\n<p>IAP = In-app purchase</p>\n<p><a href=\"https://apps.apple.com/us/app/biketracker-gps-recorder/id6446785685\">BikeTracker - GPS Recorder</a> Lifetime (Billed once) IAP $9.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/budgetify-expense-tracker/id6443894407\">Budgetify</a> Lifetime IAP $9.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/clean-house-mind/id6477441774\">Clean House & Mind</a> Premium Lifetime IAP $14.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/memento-modern-reminders/id1200227397\">Memento: Modern Reminders</a> $3.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/school-days-counter-widget/id6476528951\">School Days Counter & Widget</a> Premium IAP $1.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/working-days-counter-widget/id6468970880\">Working Days Counter & Widget</a> Premium IAP $1.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/the-invoice-create/id1658749136\">The Invoice Create</a> Lifetime (Billed once) IAP $12.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/spamoff-tourist-sim-shield/id6444895726\">SpamOff: Tourist Sim Shield</a> Lifetime IAP $6.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/volume-booster-or-reduction/id6444840823\">Volume Booster or Reduction</a> Lifetime IAP $4.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/astro-jump-widget-game/id6471160410\">Astro Jump - Widget Game</a> $0.99\u2013> Free</p>\n<hr />\n<p>A discussion thread for the paid offers has also been created here: https://old.reddit.com/r/AppHookup/comments/1bcqu7f/iosmac_discussion_thread_for_paid_indie_app_sales/</p>",
"date_published": "2024-03-12T06:17:10+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1atuc80",
"url": "/r/AppHookup/comments/1atuc80/ios_neatnook_home_chores_cleaning_schedule/",
"external_url": "https://apps.apple.com/us/app/home-tasker-neatnook/id6451318104",
"title": "[iOS] [NeatNook - Home Chores & Cleaning Schedule] [Lifetime IAP $5.99\u2013> Free] [Tasks, Checklists, Presets, Family Sharing, Notes, Achievements, Widgets, iCloud Sync, Progress]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1atuc80/ios_neatnook_home_chores_cleaning_schedule/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1atuc80/ios_neatnook_home_chores_cleaning_schedule/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-02-18T13:41:00+00:00",
"authors": [
{
"name": "basic_beauty",
"url": "https://www.reddit.com/user/basic_beauty"
}
]
},
{
"id": "1armnay",
"url": "/r/AppHookup/comments/1armnay/ios_fluency_99_free_an_app_to_learn_spanish/",
"external_url": "https://www.reddit.com/gallery/1armnay",
"title": "[iOS] [Fluency] [99+> free] an app to learn Spanish",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1armnay/ios_fluency_99_free_an_app_to_learn_spanish/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1armnay/ios_fluency_99_free_an_app_to_learn_spanish/'>Reddit</a></caption><div><br></div><p>I discovered that this app went free today,\nIt seem a serious app even if I didn\u2019t tried myself yet</p>\n<p>(My first post here, I hope I did nothing wrong)</p>\n<p>(Don\u2019t know if I should clarify that I\u2019m not the dev, nor involved in the creation of this app)</p>",
"date_published": "2024-02-15T18:39:53+00:00",
"authors": [
{
"name": "Alex20041509",
"url": "https://www.reddit.com/user/Alex20041509"
}
]
},
{
"id": "1aecuk2",
"url": "/r/AppHookup/comments/1aecuk2/ios_10_point_click_adventure_games_from_glitch/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/1aecuk2/ios_10_point_click_adventure_games_from_glitch/",
"title": "[iOS] [10 Point & click adventure games from Glitch Games] [$Various\u2014> Free]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1aecuk2/ios_10_point_click_adventure_games_from_glitch/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1aecuk2/ios_10_point_click_adventure_games_from_glitch/'>Reddit</a></caption><div><br></div><p>Edit: Forever Lost Ep. 1 has now gone free too. Total games= 11</p>\n<p><a href=\"https://apps.apple.com/us/app/another-tomorrow/id1525569733\">Another Tomorrow</a> $5.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/incoherence/id1615817813\">Incoherence</a> $3.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/station-117/id1638136526\">Station 117</a> $1.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/great-escapes/id1488905702\">Great Escapes</a> In-app purchases:\n- Pack 2 (contains 3 additional levels - Basement, Jail & Temple) - $0.99\u2013> Free\n- Pack 3 (contains 3 additional levels based on the other games here) - $1.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/all-that-remains-part-1/id1218752610\">All That Remains: Part 1</a> $2.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/a-short-tale/id1062642163\">A Short Tale</a> $3.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/veritas/id1490093407\">Veritas</a> $5.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/forever-lost-episode-1-hd/id542364897\">Forever Lost: Episode 1 HD</a> $2.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/forever-lost-episode-2-hd/id572507223\">Forever Lost: Episode 2 HD</a> $4.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/forever-lost-episode-3-hd/id977672816\">Forever Lost: Episode 3 HD</a> $5.99\u2013> Free</p>\n<p><a href=\"https://apps.apple.com/us/app/ferris-muellers-day-off/id702878093\">Ferris Mueller's Day Off</a> $1.99\u2013> Free</p>\n<p>All of these are premium titles without any ads and in-game hints are included without the need for micro-transactions.</p>",
"date_published": "2024-01-30T01:58:27+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1acein8",
"url": "/r/AppHookup/comments/1acein8/ios_color_ar_color_name_finder_1299_free_simply/",
"external_url": "https://apps.apple.com/us/app/col-or-ar-color-name-finder/id1528968321",
"title": "\u200e[iOS] [col.or - AR Color Name Finder] [$12.99 -> Free] [Simply point your camera to capture colors from the world around you.]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1acein8/ios_color_ar_color_name_finder_1299_free_simply/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1acein8/ios_color_ar_color_name_finder_1299_free_simply/'>Reddit</a></caption><div><br></div><p>When you open the app a pop-up should appear that lets you redeem Lifetime access for free via in-app purchase.</p>",
"date_published": "2024-01-27T16:23:46+00:00",
"authors": [
{
"name": "mfr3sh",
"url": "https://www.reddit.com/user/mfr3sh"
}
]
},
{
"id": "19cs13b",
"url": "/r/AppHookup/comments/19cs13b/ios_interval_multi_timer_timus_2999_free_lifetime/",
"external_url": "https://apps.apple.com/us/app/interval-multi-timer-timus/id6461119151",
"title": "[iOS] [Interval Multi Timer: Timus] [$29.99 -> FREE Lifetime] [SELF PROMO]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/19cs13b/ios_interval_multi_timer_timus_2999_free_lifetime/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/19cs13b/ios_interval_multi_timer_timus_2999_free_lifetime/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-01-22T09:43:03+00:00",
"authors": [
{
"name": "GinaHappus",
"url": "https://www.reddit.com/user/GinaHappus"
}
]
},
{
"id": "19a0yjb",
"url": "/r/AppHookup/comments/19a0yjb/iosroomify_3d_room_scanner_measuring_toollifetime/",
"external_url": "https://apps.apple.com/ro/app/3d-room-scanner-measuring-tool/id1644692405",
"title": "[IOS][Roomify - 3D Room Scanner Measuring Tool][Lifetime IAP $59.99 \u2014> Free]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/19a0yjb/iosroomify_3d_room_scanner_measuring_toollifetime/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/19a0yjb/iosroomify_3d_room_scanner_measuring_toollifetime/'>Reddit</a></caption><div><br></div><p>Phone requires LiDAR sensor to work. To redeem the offer you need to go through the onboarding process, select the lifetime IAP from the list and click continue. </p>\n<p>This is my own app, and I decided to create a lifetime offer in order for more people to test the app. If you enjoy, make sure to leave a review. It helps me a lot. Hope you like it, good day everyone!</p>",
"date_published": "2024-01-18T21:10:31+00:00",
"authors": [
{
"name": "vladmarian2005",
"url": "https://www.reddit.com/user/vladmarian2005"
}
]
},
{
"id": "1991rd9",
"url": "/r/AppHookup/comments/1991rd9/iosyawn_sleep_sounds_audiobooks2999_free_lifetime/",
"external_url": "https://apps.apple.com/au/app/yawn-sleep-sounds-audiobooks/id6473270731?platform=iphone",
"title": "[iOS][Yawn: Sleep Sounds, Audiobooks][$29.99-> Free Lifetime] [Relax & Unwind with Soothing Sleep Sounds, Classic Audiobooks and Calming Music that really helps]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/1991rd9/iosyawn_sleep_sounds_audiobooks2999_free_lifetime/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/1991rd9/iosyawn_sleep_sounds_audiobooks2999_free_lifetime/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-01-17T17:10:39+00:00",
"authors": [
{
"name": "mickmaverick",
"url": "https://www.reddit.com/user/mickmaverick"
}
]
},
{
"id": "18yexwu",
"url": "/r/AppHookup/comments/18yexwu/ios_iphoneipaddisciplined_habit_trackeriap/",
"external_url": "https://apps.apple.com/lv/app/disciplined-habit-tracker/id6474854656",
"title": "[iOS iPhone/iPad][Disciplined - Habit Tracker][IAP Disciplined Prime Lifetime $29.99 -> Free][Redeem lifetime in app purchase by navigating to Settings then 3x tapping on \u201cApp Version\u201d enter code \u201cGREATNESS\u201d]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/18yexwu/ios_iphoneipaddisciplined_habit_trackeriap/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/18yexwu/ios_iphoneipaddisciplined_habit_trackeriap/'>Reddit</a></caption><div><br></div>",
"date_published": "2024-01-04T14:51:34+00:00",
"authors": [
{
"name": "Kotoulxw",
"url": "https://www.reddit.com/user/Kotoulxw"
}
]
},
{
"id": "18sazhk",
"url": "/r/AppHookup/comments/18sazhk/ios_pixelify_lifetime_iap_1999_free_censor_video/",
"external_url": "https://apps.apple.com/us/app/id1542670372",
"title": "[iOS] [Pixelify] [Lifetime IAP $19.99\u2013> Free] [Censor video and photo, automatic detection of faces and moving objects on video]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/18sazhk/ios_pixelify_lifetime_iap_1999_free_censor_video/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/18sazhk/ios_pixelify_lifetime_iap_1999_free_censor_video/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-12-27T20:57:07+00:00",
"authors": [
{
"name": "Onkeoke",
"url": "https://www.reddit.com/user/Onkeoke"
}
]
},
{
"id": "18o4l0g",
"url": "/r/AppHookup/comments/18o4l0g/ios_game_deals_post_dragon_quest_chrono_trigger/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/18o4l0g/ios_game_deals_post_dragon_quest_chrono_trigger/",
"title": "[iOS] [Game deals post - Dragon Quest, Chrono Trigger, Secret of Mana, FF Tactics, Florence, Journey, Human Resource Machine, Don't Starve, Hero Emblems, SpongeBob SquarePants, Rusty Lake Trilogy, Danganronpa, and more at discounted prices]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/18o4l0g/ios_game_deals_post_dragon_quest_chrono_trigger/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/18o4l0g/ios_game_deals_post_dragon_quest_chrono_trigger/'>Reddit</a></caption><div><br></div><p>Some excellent deals were posted yesterday, take a look if you haven\u2019t already: https://www.reddit.com/r/AppHookup/comments/18n0rik/ios_game_deals_post_alien_isolation_grid/</p>\n<hr />\n<p>The fabled Dragon Quest sale is finally upon us!</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest/id911201894\">DRAGON QUEST</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-ii/id911205290\">DRAGON QUEST II</a> $4.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-iii/id911208088\">DRAGON QUEST III</a> $9.99\u2013> $6.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-iv/id847381935\">DRAGON QUEST IV</a> $14.99\u2013> $9.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-v/id933113994\">DRAGON QUEST V</a> $14.99\u2013> $9.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-vi/id949745100\">DRAGON QUEST VI</a> $14.99\u2013> $9.99 (historical low)</p>\n<p>DRAGON QUEST VII - exists in our dreams & <a href=\"https://www.pocketgamer.com/dragon-quest-vii-fragments-of-the-forgotten-past/dragon-quest-vii-comes-out-for-ios-and-android-in-japan-this-week/\">Japan</a></p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-viii/id862972069\">DRAGON QUEST VIII</a> $19.99\u2013> $14.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dragon-quest-builders/id1601194499\">DRAGON QUEST BUILDERS</a> $27.99\u2013> $17.99 ($2 above historical low) | DLCs not discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/chrono-trigger-upgrade-ver/id479431697\">CHRONO TRIGGER (Upgrade Ver.)</a> $9.99\u2013> $4.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/actraiser-renaissance/id1532193171\">Actraiser Renaissance</a> $19.99\u2013> $9.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chaos-rings/id958455860\">CHAOS RINGS \u2162</a> $19.99\u2013> $9.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/valkyrie-profile-lenneth/id1324458386\">VALKYRIE PROFILE: LENNETH</a> $17.99\u2013> $8.99 (historical low) | In-app purchases are <strong>not</strong> on sale.</p>\n<p><a href=\"https://apps.apple.com/us/app/paranormasight/id6443444225\">PARANORMASIGHT</a> $18.99\u2013> $12.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/secret-of-mana/id407949800\">Secret of Mana</a> $7.99\u2013> $3.99 (lowest price since December \u201822)</p>\n<p><a href=\"https://apps.apple.com/us/app/adventures-of-mana/id1048629983\">Adventures of Mana</a> $13.99\u2013> $6.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/trials-of-mana/id1552176109\">Trials of Mana</a> $22.99\u2013> $11.99 (matching lowest price in a year)</p>\n<p><a href=\"https://apps.apple.com/us/app/legend-of-mana/id1563156209\">Legend of Mana</a> $27.99\u2013> $13.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-tactics/id500098096\">FINAL FANTASY TACTICS</a> [For iPads] $15.99\u2013> $7.99 (matching lowest price in 4 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-tactics-wotl/id446760220\">FINAL FANTASY TACTICS</a> [For iPhones] $13.99\u2013> $6.99 (matching lowest price in 5 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-dimensions/id540992837\">FINAL FANTASY DIMENSIONS</a> \u201cSet: Chapters 1-4\u201d in-app purchase $12.99\u2013> $6.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-dimensions-ii/id1239279234\">FINAL FANTASY DIMENSIONS II</a> $14.99\u2013> $6.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-vii/id1021566244\">FINAL FANTASY VII</a> $15.99\u2013> $7.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy-viii-remastered/id1326740784\">FINAL FANTASY VIII Remastered</a> $20.99\u2013> $9.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/final-fantasy/id1041260001\">FINAL FANTASY \u2168</a> $20.99\u2013> $9.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/finalfantasy-crystalchronicles/id1478870957\">FINAL FANTASY CRYSTAL CHRONICLES</a> \u201cFull Version\u201d in-app purchase $24.99\u2013> $12.99 (historical low) | Other IAPs are not on sale.</p>\n<p><a href=\"https://apps.apple.com/us/app/ff-iv-the-after-years/id683029090\">FF IV: THE AFTER YEARS</a> $14.99\u2013> $7.99 (lowest price since December \u201822)</p>\n<p><a href=\"https://apps.apple.com/us/app/saga-frontier-remastered/id1543852237\">SaGa Frontier Remastered</a> $24.99\u2013> $12.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/saga-scarlet-grace-ambitions/id1237502412\">SaGa SCARLET GRACE : AMBITIONS</a> $29.99\u2013> $8.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romancing-saga-minstrel-song/id1614201688\">Romancing SaGa -Minstrel Song-</a> $24.99\u2013> $17.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romancing-saga-2/id1083835330\">ROMANCING SAGA 2</a> $17.99\u2013> $3.49 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/romancing-saga-3/id1442497118\">Romancing SaGa 3</a> $21.99\u2013> $6.49</p>\n<p><a href=\"https://apps.apple.com/us/app/collection-of-saga-ff-legend/id1565119677\">COLLECTION of SaGa FF LEGEND</a> $19.99\u2013> $9.99 (historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/florence/id1297430468\">Florence</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/journey/id1445593893\">Journey</a> $4.99\u2013> $2.49 ($0.50 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/what-remains-of-edith-finch/id1508051949\">What Remains of Edith Finch</a> $4.99\u2013> $2.49 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/gorogoa/id1269225754\">Gorogoa</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/flower/id1279174518\">Flower</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/donut-county/id1292099839\">Donut County</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/gone-home/id1377366192\">Gone Home</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/telling-lies/id1261458837\">Telling Lies</a> $6.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/if-found/id1440072561\">If Found...</a> $4.99\u2013> $2.49 ($0.50 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-unfinished-swan/id1490196582\">The Unfinished Swan</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/a-memoir-blue/id1580769350\">A Memoir Blue</a> $3.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hindsight-game/id1552046093\">Hindsight Game</a> $4.99\u2013> $2.49 (historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/human-resource-machine/id1005098334\">Human Resource Machine</a> $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/7-billion-humans/id1393923918\">7 Billion Humans</a> $4.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/little-inferno-hd/id590250573\">Little Inferno HD</a> $4.99\u2013> $2.99 ($1 above historical low) | Ho Ho Holiday DLC $2.99\u2013> $1.99</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/dont-starve-pocket-edition/id1012298403\">Don't Starve: Pocket Edition</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dont-starve-shipwrecked/id1147297267\">Don't Starve: Shipwrecked</a> $4.99\u2013> $2.99 ($2 above historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/hero-emblems/id645797558\">Hero Emblems</a> $2.99\u2013> $1.99 (lowest price in 3 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/hero-emblems-ii/id1070462618\">Hero Emblems II</a> $6.99\u2013> $2.99 (historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/spongebob-squarepants/id1523633394\">SpongeBob SquarePants</a> $9.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/wreckfest/id1592505377\">Wreckfest</a> $9.99\u2013> $2.99 ($2 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/battle-chasers-nightwar/id1455088996\">Battle Chasers: Nightwar</a> $9.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/endling/id1625083646\">Endling</a> $9.99\u2013> $4.99 ($4 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/aces-of-the-luftwaffe-squadron/id1481181827\">Aces of the Luftwaffe Squadron</a> $7.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/one-hand-clapping-ohc/id1524426643\">One Hand Clapping - OHC</a> $9.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/spellforce-heroes-magic/id1451708258\">SpellForce - Heroes & Magic</a> $7.99\u2013> $0.99 (historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/danganronpa-trigger-happy-hav/id1502232038\">Danganronpa: Trigger Happy Havoc</a> $15.99\u2013> $6.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/danganronpa-2-goodbye-despair/id1526121506\">Danganronpa 2: Goodbye Despair</a> $15.99\u2013> $6.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/danganronpa-v3-killing-harmon/id1559869073\">Danganronpa V3: Killing Harmony</a> $15.99\u2013> $6.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/danganronpa-s-ultimate-summer/id1560136903\">Danganronpa S: Ultimate Summer</a> $15.99\u2013> $6.99 ($1 above historical low) | IAPs <strong>not</strong> discounted</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/moncage/id1587860402\">Moncage</a> $4.99\u2013> $3.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/to-the-moon/id1159700098\">To The Moon</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/finding-paradise/id1619867109\">Finding Paradise</a> $4.99\u2013> $3.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/juicy-realm/id1453808408\">Juicy Realm</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/otakus-adventure/id1614795077\">Otaku's Adventure</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/settlement-survival/id1623596533\">Settlement Survival</a> $5.99\u2013> $4.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/icey/id1271620263\">ICEY</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/rusty-lake-paradise/id1253855339\">Rusty Lake Paradise</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rusty-lake-roots/id1142016085\">Rusty Lake: Roots</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/rusty-lake-hotel/id1059911569\">Rusty Lake Hotel</a> $2.99\u2013> $0.99</p>\n<p><a href=\"https://apps.apple.com/us/app/the-past-within/id1642601792\">The Past Within</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/underground-blossom/id1665706687\">Underground Blossom</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-white-door/id1472184189\">The White Door</a> $2.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/cube-escape-paradox/id1372021096\">Cube Escape: Paradox</a> Chapter 2 IAP $1.99\u2013> $0.99 (historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/descenders/id1604675493\">Descenders</a> $9.99\u2013> $4.99 ($2 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/towaga-among-shadows/id1637913311\">Towaga: Among Shadows</a> $2.99\u2013> $0.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-bug-butcher/id1090552213\">The Bug Butcher</a> $3.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/chameleon-run/id1084860489\">Chameleon Run</a> $1.99\u2013> $0.99</p>\n<p><a href=\"https://apps.apple.com/us/app/absolute-drift/id1356770278\">Absolute Drift</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/suzy-cube/id1293337633\">Suzy Cube</a> $3.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/summer-catchers/id1488674076\">Summer Catchers</a> $3.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/stomped/id1467291296\">Stomped!</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/invert-tile-flipping-puzzles/id1220540830\">Invert - Tile Flipping Puzzles</a> $2.99\u2013> $0.99 (historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/avernum-3-ruined-world-hd/id1353224552\">Avernum 3: Ruined World HD</a> $9.99\u2013> $4.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/avadon-3-the-warborn-hd/id1161538963\">Avadon 3: The Warborn HD</a> $9.99\u2013> $4.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/geneforge-1-mutagen-hd/id1558176767\">Geneforge 1 - Mutagen HD</a> $9.99\u2013> $5.99 ($1 above historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-origins-td/id904737816\">Kingdom Rush Origins (for iPhone)</a> $2.99\u2013> $0.99 | All heroes are discounted.</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-origins-hd-td/id904737541\">Kingdom Rush Origins HD (for iPad)</a> $2.99\u2013> $0.99 | All heroes are discounted.</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-rush-vengeance-td-game/id1248033433\">Kingdom Rush Vengeance</a> $4.99\u2013> $2.99 | Some Hero units and towers are discounted.</p>\n<p><a href=\"https://apps.apple.com/us/app/iron-marines-rts-offline-game/id1056920931\">Iron Marines</a> $2.99\u2013> $0.99 | Heros are <strong>not</strong> discounted</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/six-ages-ride-like-the-wind/id934012726\">Six Ages: Ride Like the Wind</a> $9.99\u2013> $6.49 (lowest price in 2 years)</p>\n<p><a href=\"https://apps.apple.com/us/app/six-ages-2-lights-going-out/id1231955010\">Six Ages 2: Lights Going Out</a> $9.99\u2013> $8.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/king-of-dragon-pass/id335545504\">King of Dragon Pass</a> $9.99\u2013> $4.99 ($1 above historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/kathy-rain-directors-cut/id1529574744\">Kathy Rain: Director's Cut</a> $4.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/kathy-rain/id1118514499\">Kathy Rain</a> $2.99\u2013> $1.99</p>\n<p><a href=\"https://apps.apple.com/us/app/dandara-trials-of-fear-edition/id1168013926\">Dandara Trials of Fear Edition</a> $3.99\u2013> $2.99</p>\n<p><a href=\"https://apps.apple.com/us/app/bad-north-jotunn-edition/id1367121168\">Bad North: Jotunn Edition</a> $3.99\u2013> $2.99</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-eighties/id1616652599\">Kingdom Eighties</a> $4.99\u2013> $3.99 (first sale)</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-two-crowns/id1477991646\">Kingdom Two Crowns</a> $9.99\u2013> $4.99 | DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/kingdom-new-lands/id1118513354\">Kingdom: New Lands</a> $4.99\u2013> $2.99</p>\n<p><a href=\"https://apps.apple.com/us/app/townscaper/id1549531491\">Townscaper</a> $4.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/whispers-of-a-machine/id1452404930\">Whispers of a Machine</a> $3.99\u2013> $1.99 (lowest price in a year)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/tempest-pirate-rpg-premium/id1127729015\">Tempest: Pirate RPG Premium</a> $7.99\u2013> $3.99 ($1 above historical low) | IAPs are <strong>not</strong> on sale.</p>\n<p>Odysseus Kosmos - Episodes 1 to 5 ~~$1.99~~ > $0.99 each (historical low)</p>\n<ol>\n<li><a href=\"https://apps.apple.com/us/app/odysseus-kosmos-episode-1/id1368398241\">Odysseus Kosmos - Episode 1</a></li>\n<li><a href=\"https://apps.apple.com/us/app/odysseus-kosmos-episode-2/id1410257684\">Odysseus Kosmos - Episode 2</a></li>\n<li><a href=\"https://apps.apple.com/us/app/odysseus-kosmos-episode-3/id1438742541\">Odysseus Kosmos - Episode 3</a></li>\n<li><a href=\"https://apps.apple.com/us/app/odysseus-kosmos-episode-4/id1455335942\">Odysseus Kosmos - Episode 4</a></li>\n<li><a href=\"https://apps.apple.com/us/app/odysseus-kosmos-episode-5/id1472502404\">Odysseus Kosmos - Episode 5</a></li>\n</ol>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/roccos-island-pocket-edition/id6443620400\">Rocco\u2019s Island: Pocket Edition</a> Full Game $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/luck-be-a-landlord/id6450724928\">Luck be a Landlord</a> $4.99\u2013> $3.49 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/ftl-faster-than-light/id833951143\">FTL: Faster Than Light</a> $9.99\u2013> $2.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/meteorfall-krumits-tale/id1369611597\">Meteorfall: Krumit's Tale</a> $6.99\u2013> $2.99 (historical low) | DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/niffelheim/id1476445607\">Niffelheim</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/leos-fortune/id830544402\">Leo's Fortune</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/2112td-tower-defense-survival/id1514617649\">2112TD: Tower Defense Survival</a> $1.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/scythe-digital-edition/id1482645966\">Scythe: Digital Edition</a> $8.99\u2013> $3.99 (historical low) | DLC <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/roll-player-the-board-game/id1575755196\">Roll Player - The Board Game</a> $9.99\u2013> $7.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/earth-atlantis/id1065334252\">Earth Atlantis</a> $4.99\u2013> $1.99</p>\n<p><a href=\"https://apps.apple.com/us/app/the-legend-of-tianding/id1613900816\">The Legend of Tianding</a> $6.99\u2013> $3.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/not-another-weekend/id1548002851\">Not Another Weekend</a> $4.99\u2013> $2.49 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/dungeon-and-puzzles/id1571643809\">Dungeon and Puzzles</a> $2.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/eloh/id1406382064\">ELOH</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/old-mans-journey/id1204902987\">Old Man\u2019s Journey</a> $4.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/trudograd/id1637252671\">Atom RPG Trudograd</a> $9.99\u2013> $5.99 (historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/roterra-3-a-sovereign-twist/id1587354681\">Roterra 3 - A Sovereign Twist</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/roterra-4-magical-revolution/id1636684183\">Roterra 4 - Magical Revolution</a> $4.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/uciana/id1659168505\">Uciana</a> $0.99\u2013> $0.49 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/carrier-battles/id1592301610\">Carrier Battles</a> $9.99\u2013> $4.99 ($1 above historical low) | DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/psychofunk/id1547164915\">Psychofunk</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/hot-lap-league/id1526090084\">Hot Lap League</a> $4.99\u2013> $0.99 | IAPs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/bardcard/id1382517817\">Bardcard</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/lego-bricktales/id1618206278\">LEGO Bricktales</a> $4.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/growing-up-life-of-the-90s/id1613295180\">Growing Up: Life of the '90s</a> $4.99\u2013> $2.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/orwell-keeping-an-eye-on-you/id1476541931\">Orwell: Keeping an Eye on You</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/the-stillness-of-the-wind/id1438707014\">The Stillness of the Wind</a> $4.99\u2013> $1.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/demetrios/id1295749833\">Demetrios</a> $2.99\u2013> $0.99</p>\n<p><a href=\"https://apps.apple.com/us/app/down-in-bermuda/id1635093929\">Down in Bermuda</a> $5.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/million-onion-hotel/id1225091207\">Million Onion Hotel</a> $2.99\u2013> $0.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/illuminaria/id6469359168\">Illuminaria</a> $4.99\u2013> $3.49 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/nanuleu/id1126212440\">Nanuleu</a> $2.99\u2013> $1.49 </p>\n<p><a href=\"https://apps.apple.com/us/app/highwind/id1278037356\">Highwind</a> $0.99\u2013> $0.49</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/twilight-struggle/id942766453\">Twilight Struggle</a> $7.99\u2013> $2.99 (lowest price in 7 years) | Expansion pack $1.99 \u2014> $0.99</p>\n<p><a href=\"https://apps.apple.com/us/app/twilight-struggle-red-sea/id6444841677\">Twilight Struggle: Red Sea</a> </p>\n<p><a href=\"https://apps.apple.com/us/app/d-d-lords-of-waterdeep/id648019675\">D&D Lords of Waterdeep</a> $7.99\u2013> $2.99 ($1 above historical low) | Both expansions on sale for $1.99\u2013> $0.99 each</p>\n<p><a href=\"https://apps.apple.com/us/app/labyrinth-the-war-on-terror/id1438485859\">Labyrinth: The War on Terror</a> $9.99\u2013> $3.99 (historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/fort-sumter-secession-crisis/id1457799708\">Fort Sumter: Secession Crisis</a> $4.99\u2013> $1.99 ($1 above historical low)</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/dragon-castle-the-board-game/id1460296044\">Dragon Castle: The Board Game</a> $3.99\u2013> $1.99 ($1 above historical low)</p>\n<p><a href=\"https://apps.apple.com/us/app/similo-the-card-game/id1512015829\">Similo: The Card Game</a> $1.99\u2013> $0.99 (historical low) | Epic Bundle $3.99\u2013> $1.99 & remaining 2 expansions $1.99\u2013> $0.99 each.</p>\n<p><a href=\"https://apps.apple.com/us/app/railroad-ink-challenge/id1549914827\">Railroad Ink Challenge</a> $3.99\u2013> $1.99 (historical low) | 2 expansions $1.99\u2013> $0.99 each</p>\n<p><a href=\"https://apps.apple.com/us/app/potion-explosion/id1162628471\">Potion Explosion</a> $3.99\u2013> $1.99 ($1 above historical low) | Expansion $1.99\u2013> $0.99</p>\n<hr />\n<p><a href=\"https://apps.apple.com/us/app/one-deck-dungeon/id1380151253\">One Deck Dungeon</a> $6.99\u2013> $1.99 ($1 above historical low) | Forest of Shadows $6.99\u2013> $1.99 and Abyssal Depths $4.99\u2013> $1.99 | Rest of the DLCs <strong>not</strong> discounted</p>\n<p><a href=\"https://apps.apple.com/us/app/aeons-end/id1476090287\">Aeon\u2019s End</a> $9.99\u2013> $3.99 ($3 above historical low) | Expansion packs are on sale <strong>except</strong> for Promo Pack 1.</p>\n<p><a href=\"https://apps.apple.com/us/app/sentinels-of-the-multiverse/id923772792\">Sentinels of the Multiverse</a> $6.99\u2013> $0.99 | Expansions packs, notably Season Passes 1 & 2, are on sale <strong>except</strong> for Vengeance expansion & Foil Villain pack.</p>\n<p><a href=\"https://apps.apple.com/us/app/sentinels-of-earth-prime/id1623878241\">Sentinels of Earth-Prime</a> $17.99\u2013> $13.49 (historical low) | Magical Mysteries Mini Pack $5.99\u2013> $4.99</p>\n<p><a href=\"https://apps.apple.com/us/app/spirit-island/id1501321205\">Spirit Island</a> Full game $19.99\u2013> $12.49 | DLCs are also discounted</p>",
"date_published": "2023-12-22T02:45:54+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "18kh01l",
"url": "/r/AppHookup/comments/18kh01l/iospeaks_biorhythm_trackerlifetime_9999freeindie/",
"external_url": "https://apps.apple.com/us/app/peaks-biorhythm-tracker/id6446705377",
"title": "[iOS][Peaks: Biorhythm Tracker][Lifetime $99.99->Free][Indie App Santa Dec 17]",
"content_html": "<caption>Open: <a href='winstonapp:///r/AppHookup/comments/18kh01l/iospeaks_biorhythm_trackerlifetime_9999freeindie/'>Winston</a> | <a href='https://reddit.com/r/AppHookup/comments/18kh01l/iospeaks_biorhythm_trackerlifetime_9999freeindie/'>Reddit</a></caption><div><br></div>",
"date_published": "2023-12-17T13:08:26+00:00",
"authors": [
{
"name": "BoysenberrySavings74",
"url": "https://www.reddit.com/user/BoysenberrySavings74"
}
]
},
{
"id": "18ahwqv",
"url": "/r/AppHookup/comments/18ahwqv/iossavey_budget_planner_app999_free_lifetime/",
"external_url": "https://apps.apple.com/us/app/savey-budget-planner-app/id6464634636",
"title": "[iOS][Savey: Budget Planner App][$9.99-> Free Lifetime]",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/AppHookup/comments/18ahwqv/iossavey_budget_planner_app999_free_lifetime/'>Apollo</a> | <a href='https://reddit.com/r/AppHookup/comments/18ahwqv/iossavey_budget_planner_app999_free_lifetime/'>Reddit</a></caption><div><br></div><p>How to get free Lifetime Premium:\n1. Open app\n2. Go through intro (it\u2019ll only take you 10-20 seconds)\n3. Promo popup appears\n4. Tap on the center image twice\n5. Get for free button appears, tap on it.</p>",
"date_published": "2023-12-04T11:04:02+00:00",
"authors": [
{
"name": "i-am-cup-cake",
"url": "https://www.reddit.com/user/i-am-cup-cake"
}
]
},
{
"id": "17zixph",
"url": "/r/AppHookup/comments/17zixph/ios_telepromptr_pro_lifetime_iap_799_free/",
"external_url": "https://apps.apple.com/us/app/telepromptr/id572401027",
"title": "[iOS] [Telepromptr] [Pro Lifetime IAP $7.99\u2013> Free] [Studio-grade teleprompter with remote control support, mirroring, AirPlay/HDMI support, countdown timer and document import]",
"content_html": "<caption>Open: <a href='apollo://www.reddit.com/r/AppHookup/comments/17zixph/ios_telepromptr_pro_lifetime_iap_799_free/'>Apollo</a> | <a href='https://reddit.com/r/AppHookup/comments/17zixph/ios_telepromptr_pro_lifetime_iap_799_free/'>Reddit</a></caption><div><br></div><p>This is an in-app purchase offer.</p>\n<p>Open app > Tap \u201cGet Pro\u201d at top left > Tap \u201cUpgrade for Free\u201d.</p>",
"date_published": "2023-11-20T07:18:32+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "14n3fhl",
"url": "/r/AppHookup/comments/14n3fhl/rapphookups_plan_for_the_future/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/14n3fhl/rapphookups_plan_for_the_future/",
"title": "r/Apphookup\u2019s plan for the future.",
"content_html": "<caption>Open: <a href='https://reddit.com/r/AppHookup/comments/14n3fhl/rapphookups_plan_for_the_future/'>Reddit</a></caption><div><br></div><div><p>We, the moderators of r/Apphookup, have evaluated the suggestions provided in the previous discussion earnestly and I\u2019ll give a brief overview of our thoughts as follows:</p>\n<ol>\n<li>\n<p>Migration to another platform: This is not feasible due to the absence of an equivalent to AutoModerator on the current crop of r/Redditalternatives. Our subreddit\u2019s moderation is mostly handled by the AutoModerator bot and it would require a large team of moderators devoting multiple hours a day to replace it. We don\u2019t want to create a backup community that\u2019ll get overrun by spam faster than we can counter it.</p>\n</li>\n<li>\n<p>Switching the sub to NSFW: This certainly can be solution if the NSFW content is posted solely by the mods and regulated to not be a nuisance but just enough to grant r/Apphookup NSFW status and deny ad revenue to Reddit in furtherance of the protest.</p>\n</li>\n<li>\n<p>Reddit\u2019s official app is a nuisance compared to the soon to be gone third party clients since it is a battery hog, pushes irrelevant notifications regardless of Premium membership and collects a lot more data for tracking user behaviour.</p>\n</li>\n<li>\n<p>r/Apphookup has played its part in the blackout by staying private for a long time. We don\u2019t believe in doing half-assed protests by becoming a hub for all things John Oliver or going dark for a day every week since these type of protests achieve next to nothing in furtherance of the original purpose of the protest which was to drive down user engagement on this platform.</p>\n</li>\n</ol>\n<p>\u2014</p>\n<p>So r/Apphookup will stay on Reddit for now and will resume operations effective immediately. We\u2019ll figure out how to make the switch to NSFW without the admins losing their shit over by next week and then implement it. We also know that a majority of third-party Reddit clients are shutting down very soon so I have a interim solution.</p>\n<p>Reddit supports content delivery via RSS feeds. What this means is that you can stay informed about the posts made here without having to interact with Reddit\u2019s own app.</p>\n<ol>\n<li>You can download a free RSS reader like NetNewsWire https://apps.apple.com/app/id1480640210</li>\n<li>Choose a Local \u2018On my iPhone/iPad\u2019 account.</li>\n<li>Enter this URL (via the + button in the bottom > Add Web Feed): https://www.reddit.com/r/AppHookup/.rss</li>\n<li>Make sure to allow notifications and background app refresh for NetNewsWire from iOS settings and then long press on the added Web Feeds in the app and select Get Info and enable \u2018Notify about new posts\u2019. Notifications are dependent on background app refresh in this case and iOS can take upto 2 days to allocate the system resources for it. </li>\n</ol>\n<p>NetNewsWire is a free and open source app with a simple interface, notification support and widgets. Users will only receive the links, images and text of the posts made on r/Apphookup in a simple format. For the purpose of commenting and voting, tapping on the post in the app will open Reddit\u2019s website for the specific post inside in-app Safari (with your enabled adblockers) which will remember your Reddit login info. </p>\n<p>I\u2019ll also recommend using an Adblocker to hide Reddit\u2019s sponsored ads and preserve your privacy to an extent in Safari, the free functionality included in AdGuard https://apps.apple.com/us/app/id1047223162 is enough for this purpose but make sure to enable all of its filters.</p>\n<p>Reddit\u2019s RSS feeds also allow filtering posts by flairs, keywords, sorting, etc.</p>\n<p>For example, this feed only shows posts for iOS & Mac deals: https://www.reddit.com/r/AppHookup/search.xml?q=iOS%20OR%20Mac%20OR%20iPad%20OR%20iPhone%20&restrict_sr=1&sort=new</p>\n<p>Here\u2019s some additional info to get you started and help customize your Reddit RSS feeds: </p>\n<p>https://www.howtogeek.com/320264/how-to-get-an-rss-feed-for-any-subreddit/</p>\n<p>https://www.reddit.com/r/pathogendavid/comments/tv8m9/pathogendavids_guide_to_rss_and_reddit/ </p>\n<p>https://danielmiessler.com/p/reddit-rss-functionality-explained/</p>\n<p>We hope these changes will be acceptable to everyone here and the RSS feeds will help our subreddit members to stay informed of the deals with the least engagement to Reddit. Your feedback on this post is welcome as always.</p></div>",
"date_published": "2023-06-30T15:24:40+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "14fdmqr",
"url": "/r/AppHookup/comments/14fdmqr/help_us_decide_what_to_do_next_with_rapphookup/",
"external_url": "https://www.reddit.com/r/AppHookup/comments/14fdmqr/help_us_decide_what_to_do_next_with_rapphookup/",
"title": "Help us decide what to do next with r/Apphookup",
"content_html": "<caption>Open: <a href='https://reddit.com/r/AppHookup/comments/14fdmqr/help_us_decide_what_to_do_next_with_rapphookup/'>Reddit</a></caption><div><br></div><div><p>It\u2019s been over a week since this subreddit <a href=\"https://reddit.com/r/AppHookup/comments/145fe46/rapphookup_will_be_joining_the_blackout_against/\">went private in solidarity with the wider protest against the upcoming changes to Reddit\u2019s API policy</a> and there\u2019s been zero activity on the subreddit since then.</p>\n<p>The demands of the protest have largely been unfulfilled as of now and most of your preferred third-party apps are still destined to shutdown along with a multitude of bots and moderation tools.</p>\n<p>As <a href=\"https://reddit.com/r/AppHookup/comments/145fe46/_/jnn8zle/?context=1\">promised at the beginning of the blackout</a>, we (the moderators) are now soliciting your opinions about the future course of action for this subreddit. r/Apphookup is currently open in restricted mode for this purpose.</p>\n<p>Just to inform everyone, Reddit has also begun cracking down on the protest by banning dissenting mods and replacing entire mod teams, check out r/ModCoord for more info. r/Apphookup has also received a warning from admins today (it\u2019s nice that they finally remembered us).</p>\n<p>From our perspective, there\u2019s nothing to lose if Reddit ends up replacing the whole mod team but if the API changes come into effect then the small amount of time that we put into running this subreddit will be increased manifold and that would not be preferable in any manner.</p>\n<p>Their threats are but a matter to laugh about for us. We\u2019re not employees of Reddit and have never received any form of compensation for the few hours per month that we put into maintaining this subreddit. If Reddit wants this to end then so be it.</p>\n<p>Nevertheless, it\u2019s the members of this subreddit who have to decide what becomes of it after this ordeal.</p>\n<p>Below this post are two comments, either of which you can upvote to show your opinion about the aforementioned matter. This poll will be open for 48 hours and then <strong>we\u2019ll do whatever is upvoted more</strong> (or do another poll if there\u2019s a better option highlighted via the discussion thread).</p>\n<ol>\n<li>If continuation of the blackout is preferred then we\u2019ll keep the subreddit private and talk again next week. Also consider upvoting this option for any opinion other than resumption of normalcy. There\u2019s a separate discussion thread for discussing all such alternative options.</li>\n<li>If resumption of normalcy is preferred then the subreddit will opened now and start operating like before.</li>\n</ol>\n<p>Here\u2019s a discussion thread to write your opinions about anything you want: https://reddit.com/r/AppHookup/comments/14fds6o/discussion_thread/</p></div>",
"date_published": "2023-06-21T17:17:40+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "145fe46",
"url": "/r/AppHookup/comments/145fe46/rapphookup_will_be_joining_the_blackout_against/",
"external_url": "https://i.redd.it/zqptto18e34b1.jpg",
"title": "r/Apphookup will be joining the blackout against Reddit\u2019s API policy changes from June 12th indefinitely till Reddit reverses their API changes",
"content_html": "<caption>Open: <a href=\"https://reddit.com/r/AppHookup/comments/145fe46/rapphookup_will_be_joining_the_blackout_against/\">Reddit</a></caption><div><br></div><img src=\"https://i.redd.it/zqptto18e34b1.jpg\" />",
"date_published": "2023-06-09T20:09:39+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "13rk5dj",
"url": "/r/AppHookup/comments/13rk5dj/windows_fallout_new_vegas_ultimate_edition_1999/",
"external_url": "https://store.epicgames.com/en-US/p/fallout-new-vegas--ultimate-edition",
"title": "[Windows] [Fallout New Vegas Ultimate Edition] [$19.99\u2013> Free] [Post-apocalyptic role-playing game with all DLCs included]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/fallout-new-vegas--ultimate-edition'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/13rk5dj/windows_fallout_new_vegas_ultimate_edition_1999/'>Reddit</a></caption>",
"date_published": "2023-05-25T15:03:48+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "13l4z78",
"url": "/r/AppHookup/comments/13l4z78/windowsmaclinux_metro_last_light_complete_edition/",
"external_url": "https://store.steampowered.com/app/43160/Metro_Last_Light_Complete_Edition/",
"title": "[Windows/Mac/Linux] [Metro: Last Light Complete Edition] [$19.99\u2013> Free] [Story-driven first person shooter. Sequel to 2010\u2019s critically acclaimed Metro 2033]",
"content_html": "<caption>Open: <a href='https://store.steampowered.com/app/43160/Metro_Last_Light_Complete_Edition/'>store.steampowered.com</a> | <a href='https://reddit.com/r/AppHookup/comments/13l4z78/windowsmaclinux_metro_last_light_complete_edition/'>Reddit</a></caption>",
"date_published": "2023-05-18T17:20:45+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "12hmdhp",
"url": "/r/AppHookup/comments/12hmdhp/ios_leaf_identification_299free/",
"external_url": "https://apps.apple.com/co/app/plant-identification/id1590796628",
"title": "[ios] [Leaf Identification] [$2.99->Free]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/co/app/plant-identification/id1590796628'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/12hmdhp/ios_leaf_identification_299free/'>Reddit</a></caption>",
"date_published": "2023-04-10T15:35:59+00:00",
"authors": [
{
"name": "_Ian_Milo",
"url": "https://www.reddit.com/user/_Ian_Milo"
}
]
},
{
"id": "12dnj88",
"url": "/r/AppHookup/comments/12dnj88/windows_dying_light_enhanced_edition_2999_free/",
"external_url": "https://store.epicgames.com/en-US/p/dying-light",
"title": "[Windows] [Dying Light Enhanced Edition] [$29.99\u2013> Free] [First-person action survival game set in a post-apocalyptic open world overrun by flesh-hungry zombies]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/dying-light'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/12dnj88/windows_dying_light_enhanced_edition_2999_free/'>Reddit</a></caption>",
"date_published": "2023-04-06T15:20:37+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "11ycvyr",
"url": "/r/AppHookup/comments/11ycvyr/ios_home_run_high_499free_baseball_managing/",
"external_url": "https://itunes.apple.com/app/id1232097854",
"title": "[iOS] [Home Run High] [4,99\u20ac\u2192Free] [Baseball managing simulation from Kairosoft]",
"content_html": "<caption>Open: <a href='https://itunes.apple.com/app/id1232097854'>itunes.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/11ycvyr/ios_home_run_high_499free_baseball_managing/'>Reddit</a></caption>",
"date_published": "2023-03-22T09:07:58+00:00",
"authors": [
{
"name": "honahle",
"url": "https://www.reddit.com/user/honahle"
}
]
},
{
"id": "11ath0s",
"url": "/r/AppHookup/comments/11ath0s/iphone_lock_launcher_widgetslockflow_unlimited/",
"external_url": "https://apps.apple.com/us/app/lock-launcher-widgets-lockflow/id1641012054",
"title": "[iPhone] [Lock Launcher Widgets\u30fbLockFlow] [Unlimited Access IAP $32.99\u2013> Free] [Set quick actions always available with one tap from your Lock Screen]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/lock-launcher-widgets-lockflow/id1641012054'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/11ath0s/iphone_lock_launcher_widgetslockflow_unlimited/'>Reddit</a></caption>",
"date_published": "2023-02-24T15:03:32+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "10gxv7w",
"url": "/r/AppHookup/comments/10gxv7w/windowsmaclinux_haven_park_899_free_relaxing/",
"external_url": "https://www.gog.com/en/game/haven_park",
"title": "[Windows/Mac/Linux] [Haven Park] [$8.99\u2013> Free] [Relaxing adventure game where you explore a tiny and peaceful open world and build cozy campsites at your own pace]",
"content_html": "<caption>Open: <a href='https://www.gog.com/en/game/haven_park'>www.gog.com</a> | <a href='https://reddit.com/r/AppHookup/comments/10gxv7w/windowsmaclinux_haven_park_899_free_relaxing/'>Reddit</a></caption>",
"date_published": "2023-01-20T14:09:06+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "10eymma",
"url": "/r/AppHookup/comments/10eymma/ios_universalflashtex_flashcardunlimited_iap_399/",
"external_url": "https://apps.apple.com/in/app/flashtex-spaced-repetition/id1534437697",
"title": "[iOS Universal][Flashtex Flashcard][Unlimited iAP $3.99 > Free]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/in/app/flashtex-spaced-repetition/id1534437697'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/10eymma/ios_universalflashtex_flashcardunlimited_iap_399/'>Reddit</a></caption>",
"date_published": "2023-01-18T05:01:58+00:00",
"authors": [
{
"name": "shadetolerant",
"url": "https://www.reddit.com/user/shadetolerant"
}
]
},
{
"id": "10ar2zi",
"url": "/r/AppHookup/comments/10ar2zi/ios_animatix_photo_animation_299_free_turn_your/",
"external_url": "https://apps.apple.com/us/app/animatix-photo-animation/id1410307843",
"title": "[iOS] [Animatix - Photo Animation] [$2.99\u2013> Free] [Turn your photos into captivating animations and cartoons with 24 animation styles and unique cartoon, comic, sketch and art effects]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/animatix-photo-animation/id1410307843'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/10ar2zi/ios_animatix_photo_animation_299_free_turn_your/'>Reddit</a></caption>",
"date_published": "2023-01-13T10:18:01+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "109wcpn",
"url": "/r/AppHookup/comments/109wcpn/ios_home_inventory_golden_squirrel_unlimited/",
"external_url": "https://apps.apple.com/us/app/home-inventory-golden-squirrel/id1548649551",
"title": "[iOS] [Home Inventory Golden Squirrel] [Unlimited Access IAP $29.99\u2013> Free] [Home inventory app for tracking and organizing your belongings with ease]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/home-inventory-golden-squirrel/id1548649551'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/109wcpn/ios_home_inventory_golden_squirrel_unlimited/'>Reddit</a></caption>",
"date_published": "2023-01-12T10:22:35+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "1042khr",
"url": "/r/AppHookup/comments/1042khr/windows_kerbal_space_program_3999_free_create_and/",
"external_url": "https://store.epicgames.com/en-US/p/kerbal-space-program",
"title": "[Windows] [Kerbal Space Program] [$39.99\u2013> Free] [Create and manage your own space program. Build spacecraft, fly them, and try to help the Kerbals fulfill their ultimate mission of conquering space]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/kerbal-space-program'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/1042khr/windows_kerbal_space_program_3999_free_create_and/'>Reddit</a></caption>",
"date_published": "2023-01-05T16:02:51+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "102o27q",
"url": "/r/AppHookup/comments/102o27q/ioswatchos_days_since_lifetime_iap_4999_free_as/",
"external_url": "https://apps.apple.com/us/app/days-since-quit-habit-tracker/id1445348921",
"title": "[iOS/watchOS] Days Since [Lifetime IAP $49.99 \u2014> FREE as apart of Indie App Santa] Track your bad habits in an intuitive way that helps you break them",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/days-since-quit-habit-tracker/id1445348921'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/102o27q/ioswatchos_days_since_lifetime_iap_4999_free_as/'>Reddit</a></caption>",
"date_published": "2023-01-04T00:05:55+00:00",
"authors": [
{
"name": "KredditorMaximous",
"url": "https://www.reddit.com/user/KredditorMaximous"
}
]
},
{
"id": "zz1e4s",
"url": "/r/AppHookup/comments/zz1e4s/windows_daymare_1998_2999_free_thirdperson/",
"external_url": "https://www.gog.com/game/daymare_1998",
"title": "[Windows] [Daymare: 1998] [$29.99\u2013> Free] [Third-person survival horror with hardcore survival mechanics and hard to kill enemies]",
"content_html": "<caption>Open: <a href='https://www.gog.com/game/daymare_1998'>www.gog.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zz1e4s/windows_daymare_1998_2999_free_thirdperson/'>Reddit</a></caption>",
"date_published": "2022-12-30T14:07:37+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zy8sfk",
"url": "/r/AppHookup/comments/zy8sfk/windows_dishonored_definitive_edition_1999_free/",
"external_url": "https://store.epicgames.com/en-US/p/dishonored-definitive-edition",
"title": "[Windows] [Dishonored - Definitive Edition] [$19.99\u2013> Free] [Immersive first-person action game that casts you as a supernatural assassin driven by revenge]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/dishonored-definitive-edition'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zy8sfk/windows_dishonored_definitive_edition_1999_free/'>Reddit</a></caption>",
"date_published": "2022-12-29T16:00:34+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zxd8mf",
"url": "/r/AppHookup/comments/zxd8mf/windows_mortal_shell_2999free_mortal_shell_is_a/",
"external_url": "https://store.epicgames.com/en-US/p/mortal-shell",
"title": "[Windows] [Mortal Shell] [$29.99->Free] [Mortal Shell is a deep action-RPG that tests your sanity and resilience in a shattered world. Your adversaries spare no mercy, with survival demanding superior awareness and precision. Possess lost warriors, discover hidden sanctums, and face formidable foes]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/mortal-shell'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zxd8mf/windows_mortal_shell_2999free_mortal_shell_is_a/'>Reddit</a></caption>",
"date_published": "2022-12-28T16:02:23+00:00",
"authors": [
{
"name": "VanlachO_o",
"url": "https://www.reddit.com/user/VanlachO_o"
}
]
},
{
"id": "zwgg6c",
"url": "/r/AppHookup/comments/zwgg6c/windows_worms_revolution_gold_edition_2399_free/",
"external_url": "https://www.gog.com/game/Worms_Revolution",
"title": "[Windows] [Worms Revolution Gold Edition] [$23.99\u2013> Free] [Classic 2D artillery turn-based tactics game]",
"content_html": "<caption>Open: <a href='https://www.gog.com/game/Worms_Revolution'>www.gog.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zwgg6c/windows_worms_revolution_gold_edition_2399_free/'>Reddit</a></caption>",
"date_published": "2022-12-27T14:08:32+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zvq4q2",
"url": "/r/AppHookup/comments/zvq4q2/windows_fist_forged_in_shadow_torch_2999_free/",
"external_url": "https://store.epicgames.com/en-US/p/fist-forged-in-shadow-torch",
"title": "[Windows] [F.I.S.T.: Forged In Shadow Torch] [$29.99\u2013> Free] [Metroidvania action game featuring exploration, intense combat and challenging platforming]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/fist-forged-in-shadow-torch'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zvq4q2/windows_fist_forged_in_shadow_torch_2999_free/'>Reddit</a></caption>",
"date_published": "2022-12-26T16:01:02+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zv2ggr",
"url": "/r/AppHookup/comments/zv2ggr/windows_death_stranding_5999_free_this_is_the/",
"external_url": "https://store.epicgames.com/en-US/p/death-stranding",
"title": "[Windows] [Death Stranding] [$59.99\u2013> Free] [This is the Original edition and not the Director\u2019s Cut]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/death-stranding'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zv2ggr/windows_death_stranding_5999_free_this_is_the/'>Reddit</a></caption>",
"date_published": "2022-12-25T17:31:33+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "ztx0sj",
"url": "/r/AppHookup/comments/ztx0sj/iosipadosmacos_expenses_spending_tracker_pro_iap/",
"external_url": "https://apps.apple.com/us/app/expenses-spending-tracker/id1492055171",
"title": "[iOS/iPadOS/macOS] Expenses: Spending Tracker [Pro IAP $7.99 -> FREE as apart of Indie App Santa] Track your individual and shared expenses!",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/expenses-spending-tracker/id1492055171'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/ztx0sj/iosipadosmacos_expenses_spending_tracker_pro_iap/'>Reddit</a></caption>",
"date_published": "2022-12-24T00:25:26+00:00",
"authors": [
{
"name": "KredditorMaximous",
"url": "https://www.reddit.com/user/KredditorMaximous"
}
]
},
{
"id": "ztkjk4",
"url": "/r/AppHookup/comments/ztkjk4/windows_encased_2999_free_tactical_scifi_rpg_set/",
"external_url": "https://store.epicgames.com/en-US/p/encased",
"title": "[Windows] [Encased] [$29.99\u2013> Free] [Tactical sci-fi RPG set in an alt-1970\u2019s]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/encased'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/ztkjk4/windows_encased_2999_free_tactical_scifi_rpg_set/'>Reddit</a></caption>",
"date_published": "2022-12-23T16:03:23+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zsppu7",
"url": "/r/AppHookup/comments/zsppu7/windows_fallout_fallout_2_fallout_tactics/",
"external_url": "https://store.epicgames.com/en-US/free-games",
"title": "[Windows] [Fallout, Fallout 2 & Fallout Tactics: Brotherhood of Steel ] [$29.97\u2013> Free] [Classic post-apocalyptic role-playing games]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/free-games'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zsppu7/windows_fallout_fallout_2_fallout_tactics/'>Reddit</a></caption>",
"date_published": "2022-12-22T16:10:04+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zrooo9",
"url": "/r/AppHookup/comments/zrooo9/ios_proshot_599_free_lightweight_yet_fully/",
"external_url": "https://apps.apple.com/us/app/proshot/id924438909",
"title": "[iOS] [ProShot] [$5.99\u2013> Free] [Lightweight yet fully featured photography app]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/proshot/id924438909'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zrooo9/ios_proshot_599_free_lightweight_yet_fully/'>Reddit</a></caption>",
"date_published": "2022-12-21T14:42:53+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zqs5fe",
"url": "/r/AppHookup/comments/zqs5fe/windows_wolfenstein_the_new_order_1999_free/",
"external_url": "https://store.epicgames.com/en-US/p/wolfenstein-the-new-order",
"title": "[Windows] [Wolfenstein: The New Order] [$19.99\u2013> Free] [Over-the-top shooter with fun action, memorable set-piece moments, and decent characters]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/wolfenstein-the-new-order'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zqs5fe/windows_wolfenstein_the_new_order_1999_free/'>Reddit</a></caption>",
"date_published": "2022-12-20T16:03:43+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zpnaw2",
"url": "/r/AppHookup/comments/zpnaw2/iosmacapple_tv_musicsmart_liner_notes_299_free/",
"external_url": "https://apps.apple.com/us/app/musicsmart-liner-notes/id1512195368",
"title": "[iOS/Mac/Apple TV] [MusicSmart - Liner Notes] [$2.99\u2013> Free] [Shows credits and additional details for albums and songs available in your Apple Music, Spotify, or local music library. Indie App Santa #19]",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/musicsmart-liner-notes/id1512195368'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zpnaw2/iosmacapple_tv_musicsmart_liner_notes_299_free/'>Reddit</a></caption>",
"date_published": "2022-12-19T09:45:31+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zp1unk",
"url": "/r/AppHookup/comments/zp1unk/windows_sable_2499_free_open_world_exploration/",
"external_url": "https://store.epicgames.com/en-US/p/sable",
"title": "[Windows] [Sable] [$24.99\u2013> Free] [Open world exploration game in which the player can roam and adventure across vast deserts and mesmerizing landscapes, capped by the remains of spaceships and ancient wonders, in a non-linear way]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/en-US/p/sable'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zp1unk/windows_sable_2499_free_open_world_exploration/'>Reddit</a></caption>",
"date_published": "2022-12-18T16:05:31+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"
}
]
},
{
"id": "zmr9qu",
"url": "/r/AppHookup/comments/zmr9qu/windows_bloons_td_6_1399_free_craft_your_perfect/",
"external_url": "https://store.epicgames.com/p/bloons-td-6-bf95a0",
"title": "[Windows] [Bloons TD 6] [$13.99 \u00bb Free] [Craft your perfect defense from a combination of awesome Monkey Towers, upgrades, Heroes, and activated abilities, then pop every last invading Bloon!]",
"content_html": "<caption>Open: <a href='https://store.epicgames.com/p/bloons-td-6-bf95a0'>store.epicgames.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zmr9qu/windows_bloons_td_6_1399_free_craft_your_perfect/'>Reddit</a></caption>",
"date_published": "2022-12-15T17:48:09+00:00",
"authors": [
{
"name": "FrozenFireVR",
"url": "https://www.reddit.com/user/FrozenFireVR"
}
]
},
{
"id": "zlbm2c",
"url": "/r/AppHookup/comments/zlbm2c/iosipadosmacos_classifier_pro_iap_1999_free_as/",
"external_url": "https://apps.apple.com/us/app/classifier-collection-tracker/id1594081352",
"title": "[iOS/iPadOS/macOS] Classifier [Pro IAP $19.99 \u2014> FREE as apart of Indie App Santa] An app that lets you digitize your various collections!",
"content_html": "<caption>Open: <a href='https://apps.apple.com/us/app/classifier-collection-tracker/id1594081352'>apps.apple.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zlbm2c/iosipadosmacos_classifier_pro_iap_1999_free_as/'>Reddit</a></caption>",
"date_published": "2022-12-14T00:08:36+00:00",
"authors": [
{
"name": "KredditorMaximous",
"url": "https://www.reddit.com/user/KredditorMaximous"
}
]
},
{
"id": "zk06s2",
"url": "/r/AppHookup/comments/zk06s2/windows_ghost_of_a_tale_2499_free_actionrpg_game/",
"external_url": "https://www.gog.com/en/game/ghost_of_a_tale",
"title": "[Windows] [Ghost of a Tale] [$24.99\u2013> Free] [Action-RPG game in which you play as Tilo, a mouse and minstrel caught up in a perilous adventure. The game takes place in a medieval world populated only by animals, and puts an emphasis on immersion and exploration]",
"content_html": "<caption>Open: <a href='https://www.gog.com/en/game/ghost_of_a_tale'>www.gog.com</a> | <a href='https://reddit.com/r/AppHookup/comments/zk06s2/windows_ghost_of_a_tale_2499_free_actionrpg_game/'>Reddit</a></caption>",
"date_published": "2022-12-12T14:12:30+00:00",
"authors": [
{
"name": "Singhvistaar",
"url": "https://www.reddit.com/user/Singhvistaar"