forked from SerpentAI/ArchipelagoNewsLegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive2024.html
5164 lines (4107 loc) · 320 KB
/
archive2024.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Archipelago News</title>
<style type="text/css">
html,body{margin:0;padding:0}
h1,h2,h3{margin-top:0;line-height:1.2;padding-top:10px}
:root{--bg:white;--text:#444;--link:#0000EE;--link-visited:#0000EE;}
@media(prefers-color-scheme:dark){:root{--bg:#333;--text:#F0F0F0;--link:#7575FF;--link-visited:#7575FF;;}}
#color-mode:checked ~ * {--bg:#333;--text:#F0F0F0;--link:#7575FF;--link-visited:#7575FF;}
@media (prefers-color-scheme:dark) {#color-mode:checked ~ * {--bg:white;--text:#444;--link:#7575FF;--link-visited:#7575FF;}}
.color-scheme-wrapper {min-height: 100vh;background:var(--bg);color:var(--text);}
.color-scheme-wrapper a {color:var(--link);}
.color-scheme-wrapper a:visited {color:var(--link-visited);}
.color-scheme-wrapper div {margin:0 auto;max-width:650px;line-height:1.6;font-size:18px;padding:0 10px;overflow-y:hidden}
.light-mode-hide {display:none;}
@media (prefers-color-scheme:dark) {.dark-mode-hide {display:none;}}
@media (prefers-color-scheme:dark) {.light-mode-hide {display:initial;}}
</style>
<link rel="icon" type="image/gif" href="favicon.gif"/>
</head>
<body>
<input id="color-mode" type="checkbox" name="color-mode">
<label for="color-mode">
<span class="dark-mode-hide">Dark Mode</span>
<span class="light-mode-hide">Light Mode</span>
</label>
<div class="color-scheme-wrapper">
<div>
<header>
<h1 style="padding-top:20px">Archipelago News</h1>
<p>
<a href="index.html">News</a><br />
<a href="apworlds.html">APWorlds</a><br /><br />
News Archive <a href="archive2024.html">2024</a>
</p>
<p>
<strong>Archipelago Discord Server</strong> [<a href="https://discord.gg/8Z65BR2">Link</a>]<br />
</p>
</header>
<h2>2024 Archive</h2>
<h2 id="W202435">Week of August 26 - September 1, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> ANIMAL WELL [<a href="apworlds.html#ANIMALWELL">Link</a>]</li>
<li><strong>APWorld Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Bloons TD 6 [<a href="apworlds.html#BloonsTD6">Link</a>]</li>
<li><strong>APWorld Update</strong> Castlevania: Symphony of the Night [<a href="apworlds.html#CastlevaniaSymphonyOfTheNight">Link</a>]</li>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid: Zero Mission [<a href="apworlds.html#MetroidZeroMission">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokémon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Scooby-Doo! Night of 100 Frights [<a href="apworlds.html#ScoobyDooNightOf100Frights">Link</a>]</li>
<li><strong>APWorld Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> The Legend of Zelda: Majora's Mask [<a href="apworlds.html#TheLegendOfZeldaMajorasMask">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Game Mod Update</strong> Bloons TD 6 [<a href="apworlds.html#BloonsTD6">Link</a>]</li>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lethal Company [<a href="apworlds.html#LethalCompany">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Overcooked! 2 [<a href="apworlds.html#Overcooked2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Huniepop 2: Double Date [<a href="apworlds.html#HuniePop2DoubleDate">Link</a>]</li>
<li><strong>New APWorld</strong> Local YAML Creator [<a href="apworlds.html#LocalYAMLCreator">Link</a>]</li>
<li><strong>New APWorld</strong> Ori and the Blind Forest [<a href="apworlds.html#OriAndTheBlindForest">Link</a>]</li>
<li><strong>New APWorld</strong> The Legend of Zelda: Oracle of Ages [<a href="apworlds.html#TheLegendOfZeldaOracleOfAges">Link</a>]</li>
<li><strong>New APWorld</strong> Toejam & Earl [<a href="apworlds.html#ToejamAndEarl">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Final Fantasy IV [<a href="apworlds.html#FinalFantasy4">Link</a>]</li>
<li><strong>New Tracker</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasy12OpenWorld">Link</a>]</li>
<li><strong>New Tracker</strong> The Legend of Zelda: A Link Between Worlds [<a href="apworlds.html#TheLegendOfZeldaALinkBetweenWorlds">Link</a>]</li>
</ul>
<h2 id="W202434">Week of August 19-25, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> ANIMAL WELL [<a href="apworlds.html#ANIMALWELL">Link</a>]</li>
<li><strong>APWorld Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>APWorld Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>APWorld Update</strong> Bloons TD 6 [<a href="apworlds.html#BloonsTD6">Link</a>]</li>
<li><strong>APWorld Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>APWorld Update</strong> Civilization VI [<a href="apworlds.html#CivilizationVI">Link</a>]</li>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy 6 Worlds Collide [<a href="apworlds.html#FinalFantasy6WorldsCollide">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy Tactics Advance [<a href="apworlds.html#FinalFantasyTacticsAdvance">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy XII Open World [<a href="apworlds.html#FinalFantasyXIIOpenWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter [<a href="apworlds.html#JakAndDaxter">Link</a>]</li>
<li><strong>APWorld Update</strong> Lethal Company [<a href="apworlds.html#LethalCompany">Link</a>]</li>
<li><strong>APWorld Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X [<a href="apworlds.html#MegaManX">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X2 [<a href="apworlds.html#MegaManX2">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X3 [<a href="apworlds.html#MegaManX3">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid: Zero Mission [<a href="apworlds.html#MetroidZeroMission">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Risk of Rain [<a href="apworlds.html#RiskOfRain">Link</a>]</li>
<li><strong>APWorld Update</strong> Scooby-Doo! Night of 100 Frights [<a href="apworlds.html#ScoobyDooNightOf100Frights">Link</a>]</li>
<li><strong>APWorld Update</strong> shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Universal Tracker [<a href="apworlds.html#UniversalTracker">Link</a>]</li>
<li><strong>APWorld Update</strong> Yu-Gi-Oh! Forbidden Memories [<a href="apworlds.html#YuGiOhForbiddenMemories">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Timespinner [<a href="apworlds.html#Timespinner">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>Game Mod Update</strong> Bloons TD 6 [<a href="apworlds.html#BloonsTD6">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>Game Mod Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>Game Mod Update</strong> Final Fantasy XII Open World [<a href="apworlds.html#FinalFantasyXIIOpenWorld">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lethal Company [<a href="apworlds.html#LethalCompany">Link</a>]</li>
<li><strong>Game Mod Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>Game Mod Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
<li><strong>Game Mod Update</strong> Risk of Rain [<a href="apworlds.html#RiskOfRain">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Final Fantasy 4 Free Enterprise [<a href="apworlds.html#FinalFantasy4FreeEnterprise">Link</a>]</li>
<li><strong>New APWorld</strong> Guild Wars 2 [<a href="apworlds.html#GuildWars2">Link</a>]</li>
<li><strong>New APWorld</strong> Mindustry [<a href="apworlds.html#Mindustry">Link</a>]</li>
<li><strong>New APWorld</strong> The Legend of Zelda: A Link Between Worlds [<a href="apworlds.html#TheLegendOfZeldaALinkBetweenWorlds">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game Merged</strong> Mega Man 2 [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3256">Link</a>]</li>
<li><strong>New Game Merged</strong> Yacht Dice [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3482">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game PR Opened</strong> Hades [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3815">Link</a>]</li>
<li><strong>New Game PR Opened</strong> Kingdom Hearts RE: Chain of Memories [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3819">Link</a>]</li>
<li><strong>New Game PR Opened</strong> Mega Man X [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3842">Link</a>]</li>
<li><strong>New Game PR Opened</strong> Mega Man X2 [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3843">Link</a>]</li>
<li><strong>New Game PR Opened</strong> Mega Man X3 [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3844">Link</a>]</li>
</ul>
<h2 id="W202433">Week of August 12-18, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> ANIMAL WELL [<a href="apworlds.html#ANIMALWELL">Link</a>]</li>
<li><strong>APWorld Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>APWorld Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>APWorld Update</strong> ChecksMate [<a href="apworlds.html#ChecksMate">Link</a>]</li>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy 6 Worlds Collide [<a href="apworlds.html#FinalFantasy6WorldsCollide">Link</a>]</li>
<li><strong>APWorld Update</strong> Freddy Fazbear's Pizzeria Simulator [<a href="apworlds.html#FreddyFazbearsPizzeriaSimulator">Link</a>]</li>
<li><strong>APWorld Update</strong> Hades [<a href="apworlds.html#Hades">Link</a>]</li>
<li><strong>APWorld Update</strong> Hammerwatch [<a href="apworlds.html#Hammerwatch">Link</a>]</li>
<li><strong>APWorld Update</strong> Into the Breach [<a href="apworlds.html#IntoTheBreach">Link</a>]</li>
<li><strong>APWorld Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>APWorld Update</strong> Kindergarten 2 [<a href="apworlds.html#Kindergarten2">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Oracle of Seasons [<a href="apworlds.html#OracleOfSeasons">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Paper Mario 64 [<a href="apworlds.html#PaperMario64">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Scooby-Doo! Night of 100 Frights [<a href="apworlds.html#ScoobyDooNightOf100Frights">Link</a>]</li>
<li><strong>APWorld Update</strong> Sentinels of the Multiverse [<a href="apworlds.html#SentinelsOfTheMultiverse">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Subversion (Super Metroid Hack) [<a href="apworlds.html#Subversion">Link</a>]</li>
<li><strong>APWorld Update</strong> Yu-Gi-Oh! Forbidden Memories [<a href="apworlds.html#YuGiOhForbiddenMemories">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Mario and Luigi: Superstar Saga [<a href="apworlds.html#MarioAndLuigiSuperstarSaga">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Terraria [<a href="apworlds.html#Terraria">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSouls3">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Terraria [<a href="apworlds.html#Terraria">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Game Mod Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>Game Mod Update</strong> ChecksMate [<a href="apworlds.html#ChecksMate">Link</a>]</li>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>Game Mod Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hades [<a href="apworlds.html#Hades">Link</a>]</li>
<li><strong>Game Mod Update</strong> Into the Breach [<a href="apworlds.html#IntoTheBreach">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Kindergarten 2 [<a href="apworlds.html#Kindergarten2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sentinels of the Multiverse [<a href="apworlds.html#SentinelsOfTheMultiverse">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> shapez [<a href="apworlds.html#Shapez">Link</a>]</li>
<li><strong>New APWorld</strong> Spelunky 2 [<a href="apworlds.html#Spelunky2">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game Merged</strong> Kingdom Hearts 1 Final Mix [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3201">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>New Tracker</strong> Subversion (Super Metroid Hack) [<a href="apworlds.html#Subversion">Link</a>]</li>
</ul>
<h2 id="D20240811">August 11, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> Freddy Fazbear's Pizzeria Simulator [<a href="apworlds.html#FreddyFazbearsPizzeriaSimulator">Link</a>]</li>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid: Zero Mission [<a href="apworlds.html#MetroidZeroMission">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Wario Land 4 [<a href="apworlds.html#WarioLand4">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New Beta APWorld</strong> Timespinner [<a href="apworlds.html#Timespinner">Link</a>]</li>
</ul>
<h2 id="D20240810">August 10, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> ANIMAL WELL [<a href="apworlds.html#ANIMALWELL">Link</a>]</li>
<li><strong>APWorld Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New Beta APWorld</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
<li><strong>New Beta APWorld</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<ul>
<li><strong>New Beta Game Mod</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
<li><strong>New Beta Game Mod</strong> TUNIC [<a href="apworlds.html#TUNIC">Link</a>]</li>
</ul>
<h2 id="D20240809">August 9, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>APWorld Update</strong> Freddy Fazbear's Pizzeria Simulator [<a href="apworlds.html#FreddyFazbearsPizzeriaSimulator">Link</a>]</li>
<li><strong>APWorld Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X [<a href="apworlds.html#MegaManX">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X2 [<a href="apworlds.html#MegaManX2">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X3 [<a href="apworlds.html#MegaManX3">Link</a>]</li>
<li><strong>APWorld Update</strong> The Wind Waker [<a href="apworlds.html#TheWindWaker">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
</ul>
<h2 id="D20240808">August 8, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>APWorld Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>APWorld Update</strong> Freddy Fazbear's Pizzeria Simulator [<a href="apworlds.html#FreddyFazbearsPizzeriaSimulator">Link</a>]</li>
<li><strong>APWorld Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Tyrian [<a href="apworlds.html#Tyrian">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Mario and Luigi: Superstar Saga [<a href="apworlds.html#MarioAndLuigiSuperstarSaga">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>Game Mod Update</strong> Tyrian [<a href="apworlds.html#Tyrian">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Peggle [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
</ul>
<h2 id="D20240807">August 7, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X [<a href="apworlds.html#MegaManX">Link</a>]</li>
<li><strong>APWorld Update</strong> Mega Man X3 [<a href="apworlds.html#MegaManX3">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Metal Gear Rising: Revengeance [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> myPOPGOES [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Ring Fit Adventure [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Mega Man X2 [<a href="apworlds.html#MegaManX2">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> The Henry Stickmin Collection [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Tracker Update</strong> The Wind Waker [<a href="apworlds.html#TheWindWaker">Link</a>]</li>
</ul>
<h2 id="D20240806">August 6, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Freddy Fazbear's Pizzeria Simulator [<a href="apworlds.html#FreddyFazbearsPizzeriaSimulator">Link</a>]</li>
<li><strong>APWorld Update</strong> Hatsune Miku: Project DIVA Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDIVAMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Mario 3D World [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Peggle [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Peggle Nights [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Pokemon Platinum [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game Merged</strong> Old School RuneScape [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/1976">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game PR Opened</strong> Civilization VI [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3736">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Jazztronauts (Garry's Mod) [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> Metal Gear Rising: Revengeance [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<h2 id="D20240805">August 5, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>APWorld Update</strong> Civilization VI [<a href="apworlds.html#CivilizationVI">Link</a>]</li>
<li><strong>APWorld Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Aquaria [<a href="apworlds.html#Aquaria">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Brotato [<a href="apworlds.html#Brotato">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>Game Mod Update</strong> CrossCode [<a href="apworlds.html#CrossCode">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Freddy Fazbear's Pizzeria Simulator [<a href="apworlds.html#FreddyFazbearsPizzeriaSimulator">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
</ul>
<h2 id="D20240804">August 4, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Keep Talking and Nobody Explodes [<a href="apworlds.html#KeepTalkingAndNobodyExplodes">Link</a>]</li>
<li><strong>APWorld Update</strong> Kindergarten 2 [<a href="apworlds.html#Kindergarten2">Link</a>]</li>
<li><strong>APWorld Update</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Prodigal [<a href="apworlds.html#Prodigal">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Astalon: Tears of the Earth [<a href="apworlds.html#AstalonTearsOfTheEarth">Link</a>]</li>
<li><strong>Game Mod Update</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>Game Mod Update</strong> Kindergarten 2 [<a href="apworlds.html#Kindergarten2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Prodigal [<a href="apworlds.html#Prodigal">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Mario 3D World [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Pokemon Mystery Dungeon: Rescue Team DX [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Five Nights at Freddy's: Pizzeria Simulator [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> Phoenix Wright: Ace Attorney [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> myPOPGOES [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<h2 id="D20240803">August 3, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Hatsune Miku: Project DIVA Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDIVAMegaMix">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter [<a href="apworlds.html#JakAndDaxter">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Hot Wheels: Turbo Racing [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Kirby Super Star [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Mario and Luigi: Bowser's Inside Story [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Phineas and Ferb: Across the 2nd Dimension [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Super Smash Bros. [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Cavern of Dreams [<a href="apworlds.html#CavernOfDreams">Link</a>]</li>
<li><strong>New APWorld</strong> Majora's Mask [<a href="apworlds.html#MajorasMask">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game PR Opened</strong> Wargroove 2 [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3730">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Classic GameBoy Pack [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> Honkai Star Rail - Divergent Universe [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> LEGO Indiana Jones: The Original Adventures [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> DLC Quest [<a href="apworlds.html#DLCQuest">Link</a>]</li>
<li><strong>Tracker Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
</ul>
<h2 id="D20240802">August 2, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>APWorld Update</strong> Sea of Thieves [<a href="apworlds.html#SeaOfThieves">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Kirby Super Star Ultra [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Manual Rhythm Game Randomizer [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Pizza Tower [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Tale of Two Wastelands [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Game PR Opened</strong> Sea of Thieves [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3729">Link</a>]</li>
</ul>
<h2 id="D20240801">August 1, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> The Wind Waker [<a href="apworlds.html#TheWindWaker">Link</a>]</li>
<li><strong>APWorld Update</strong> Tyrian [<a href="apworlds.html#Tyrian">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Minecraft [<a href="apworlds.html#Minecraft">Link</a>]</li>
<li><strong>Game Mod Update</strong> Tyrian [<a href="apworlds.html#Tyrian">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Genshin Impact [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Manual Rhythm Game Randomizer [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Mario and Luigi: Bowser's Inside Story [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Powerwash Simulator [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Rayman Raving Rabbids 2 [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> The Grinch [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Undertale [<a href="apworlds.html#Undertale">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> DLC Quest [<a href="apworlds.html#DLCQuest">Link</a>]</li>
</ul>
<h2 id="D20240731">July 31st, 2024</h2>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Dragon Ball Z: Budokai 3 [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Library of Ruina [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Mario 3D World [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Tracker Update</strong> Yu-Gi-Oh! Forbidden Memories [<a href="apworlds.html#YuGiOhForbiddenMemories">Link</a>]</li>
</ul>
<h2 id="D20240730">July 30th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>APWorld Update</strong> Castlevania: Symphony of the Night [<a href="apworlds.html#CastlevaniaSymphonyOfTheNight">Link</a>]</li>
<li><strong>APWorld Update</strong> Diddy Kong Racing [<a href="apworlds.html#DiddyKongRacing">Link</a>]</li>
<li><strong>APWorld Update</strong> Final Fantasy 6 Worlds Collide [<a href="apworlds.html#FinalFantasy6WorldsCollide">Link</a>]</li>
<li><strong>APWorld Update</strong> Into the Breach [<a href="apworlds.html#IntoTheBreach">Link</a>]</li>
<li><strong>APWorld Update</strong> Kingdom Hearts Birth by Sleep [<a href="apworlds.html#KingdomHeartsBirthBySleep">Link</a>]</li>
<li><strong>APWorld Update</strong> Tyrian [<a href="apworlds.html#Tyrian">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Game Mod Update</strong> Into the Breach [<a href="apworlds.html#IntoTheBreach">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lil Gator Game [<a href="apworlds.html#LilGatorGame">Link</a>]</li>
<li><strong>Game Mod Update</strong> Tyrian [<a href="apworlds.html#Tyrian">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Library of Ruina [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Luigi's Mansion: Dark Moon [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> POPGOES Arcade [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Super Mario Galaxy [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Super Mario Galaxy 2 [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Thrillville: Off the Rails [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Kingdom Hearts Birth by Sleep [<a href="apworlds.html#KingdomHeartsBirthBySleep">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Tracker Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>Tracker Update</strong> Diddy Kong Racing [<a href="apworlds.html#DiddyKongRacing">Link</a>]</li>
</ul>
<h2 id="D20240729">July 29th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Kingdom Hearts Birth by Sleep [<a href="apworlds.html#KingdomHeartsBirthBySleep">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Mario Kart 64 [<a href="apworlds.html#MarioKart64">Link</a>]</li>
<li><strong>APWorld Update</strong> Old School RuneScape [<a href="apworlds.html#OldSchoolRuneScape">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Blasphemous [<a href="apworlds.html#Blasphemous">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Mario and Luigi: Partners in Time [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Resident Evil 5 Gold Edition [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> The Grinch [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<h2 id="D20240728">July 28th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Wario Land 4 [<a href="apworlds.html#WarioLand4">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
<li><strong>Beta APWorld Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
<li><strong>Beta Game Mod Update</strong> Stardew Valley [<a href="apworlds.html#StardewValley">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Inscryption [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Mario and Luigi: Bowser's Inside Story [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> MultiVersus (Rifts) [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Super Mario Odyssey [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Super Street Fighter II Turbo [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> The Grinch [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> The SpongeBob SquarePants Movie [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Bully: Scholarship Edition [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> The SpongeBob SquarePants Movie [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<h2 id="D20240727">July 27th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Kingdom Hearts 1 Final Mix [<a href="apworlds.html#KingdomHearts1">Link</a>]</li>
<li><strong>APWorld Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Sea of Thieves [<a href="apworlds.html#SeaOfThieves">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Lunacid [<a href="apworlds.html#Lunacid">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Binding of Isaac: Repentance [<a href="apworlds.html#TheBindingOfIsaacRepentance">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Geometry Dash [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Mario and Luigi: Dream Team [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Pokemon Snap [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Doors (Roblox) [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> Rayman Raving Rabbids 2 [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> Super Street Fighter II Turbo [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Tracker Update</strong> Lil Gator Game [<a href="apworlds.html#LilGatorGame">Link</a>]</li>
</ul>
<h2 id="D20240726">July 26th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>APWorld Update</strong> Digimon World [<a href="apworlds.html#DigimonWorld">Link</a>]</li>
<li><strong>APWorld Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>APWorld Update</strong> Lil Gator Game [<a href="apworlds.html#LilGatorGame">Link</a>]</li>
<li><strong>APWorld Update</strong> Oracle of Seasons [<a href="apworlds.html#OracleOfSeasons">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Against the Storm [<a href="apworlds.html#AgainstTheStorm">Link</a>]</li>
<li><strong>Game Mod Update</strong> Don't Starve Together [<a href="apworlds.html#DontStarveTogether">Link</a>]</li>
<li><strong>Game Mod Update</strong> Lil Gator Game [<a href="apworlds.html#LilGatorGame">Link</a>]</li>
<li><strong>Game Mod Update</strong> Muse Dash [<a href="apworlds.html#MuseDash">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Update Merged</strong> Lingo <em>Add panels mode door shuffle</em> [<a href="https://github.com/ArchipelagoMW/Archipelago/pull/3163">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Paper Mario: The Thousand-Year Door [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> POPGOES Arcade [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Tracker</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Lil Gator Game [<a href="apworlds.html#LilGatorGame">Link</a>]</li>
</ul>
<h2 id="D20240725">July 25th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
<li><strong>APWorld Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>APWorld Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta APWorld Update</strong> Dark Souls III [<a href="apworlds.html#DarkSoulsIII">Link</a>]</li>
</ul>
<ul>
<li><strong>Beta Game Mod Update</strong> The Witness [<a href="apworlds.html#TheWitness">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>Game Mod Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Game Mod Update</strong> Outer Wilds [<a href="apworlds.html#OuterWilds">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Five Nights at Freddy's [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Luigi's Mansion: Dark Moon [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> MultiVersus (Rifts) [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Ape Escape [<a href="apworlds.html#ApeEscape">Link</a>]</li>
</ul>
<h2 id="D20240724">July 24th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>APWorld Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Game Mod Update</strong> The Messenger [<a href="apworlds.html#TheMessenger">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Lil Gator Game [<a href="apworlds.html#LilGatorGame">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> Pokemon Mystery Dungeon: Rescue Team DX [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
</ul>
<h2 id="D20240723">July 23rd, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>APWorld Update</strong> Diddy Kong Racing [<a href="apworlds.html#DiddyKongRacing">Link</a>]</li>
<li><strong>APWorld Update</strong> Jak and Daxter [<a href="apworlds.html#JakAndDaxter">Link</a>]</li>
<li><strong>APWorld Update</strong> Metroid Prime [<a href="apworlds.html#MetroidPrime">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Balatro [<a href="apworlds.html#Balatro">Link</a>]</li>
<li><strong>Game Mod Update</strong> ChecksMate [<a href="apworlds.html#ChecksMate">Link</a>]</li>
<li><strong>Game Mod Update</strong> DLC Quest [<a href="apworlds.html#DLCQuest">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Baldi's Basics Classic Remastered [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Kirby and the Forgotten Land [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Mario Kart 8 Deluxe [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
</ul>
<h2 id="D20240722">July 22nd, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> A Short Hike [<a href="apworlds.html#AShortHike">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hatsune Miku: Project DIVA Mega Mix+ [<a href="apworlds.html#HatsuneMikuProjectDIVAMegaMix">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Final Fantasy XIV [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> MultiVersus (Rifts) [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>New Manual APWorld</strong> Stray [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Banjo-Tooie [<a href="apworlds.html#BanjoTooie">Link</a>]</li>
<li><strong>Tracker Update</strong> EarthBound [<a href="apworlds.html#EarthBound">Link</a>]</li>
<li><strong>Tracker Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
</ul>
<h2 id="D20240721">July 21st, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Gauntlet Legends [<a href="apworlds.html#GauntletLegends">Link</a>]</li>
<li><strong>APWorld Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>APWorld Update</strong> MetroCUBEvania [<a href="apworlds.html#MetroCUBEvania">Link</a>]</li>
<li><strong>APWorld Update</strong> Oracle of Seasons [<a href="apworlds.html#OracleOfSeasons">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon Crystal [<a href="apworlds.html#PokemonCrystal">Link</a>]</li>
<li><strong>APWorld Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>APWorld Update</strong> Wargroove 2 [<a href="apworlds.html#Wargroove2">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Hades [<a href="apworlds.html#Hades">Link</a>]</li>
<li><strong>Game Mod Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Game Mod Update</strong> MetroCUBEvania [<a href="apworlds.html#MetroCUBEvania">Link</a>]</li>
<li><strong>Game Mod Update</strong> Psychonauts [<a href="apworlds.html#Psychonauts">Link</a>]</li>
</ul>
<ul>
<li><strong>Manual APWorld Update</strong> Paper Mario: The Thousand-Year Door [<a href="apworlds.html#Manual">Link</a>]</li>
<li><strong>Manual APWorld Update</strong> Wobbly Life [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>New APWorld</strong> Anodyne [<a href="apworlds.html#Anodyne">Link</a>]</li>
<li><strong>New APWorld</strong> Kindergarten 2 [<a href="apworlds.html#Kindergarten2">Link</a>]</li>
<li><strong>New APWorld</strong> Kingdom Hearts: Birth by Sleep [<a href="apworlds.html#KingdomHeartsBirthBySleep">Link</a>]</li>
</ul>
<ul>
<li><strong>New Manual APWorld</strong> MCParks (Minecraft) [<a href="apworlds.html#Manual">Link</a>]</li>
</ul>
<ul>
<li><strong>Tracker Update</strong> Ittle Dew 2+ [<a href="apworlds.html#IttleDew2">Link</a>]</li>
<li><strong>Tracker Update</strong> Pokemon FireRed and LeafGreen [<a href="apworlds.html#PokemonFireRedAndLeafGreen">Link</a>]</li>
<li><strong>Tracker Update</strong> Pokemon Red and Blue [<a href="apworlds.html#PokemonRedAndBlue">Link</a>]</li>
</ul>
<h2 id="D20240720">July 20th, 2024</h2>
<ul>
<li><strong>APWorld Update</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasyXII">Link</a>]</li>
<li><strong>APWorld Update</strong> Oracle of Seasons [<a href="apworlds.html#OracleOfSeasons">Link</a>]</li>
<li><strong>APWorld Update</strong> Sea of Thieves [<a href="apworlds.html#SeaOfThieves">Link</a>]</li>
<li><strong>APWorld Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>APWorld Update</strong> Yacht Dice [<a href="apworlds.html#YachtDice">Link</a>]</li>
</ul>
<ul>
<li><strong>Game Mod Update</strong> Final Fantasy XII: Open World [<a href="apworlds.html#FinalFantasyXII">Link</a>]</li>
<li><strong>Game Mod Update</strong> Hades [<a href="apworlds.html#Hades">Link</a>]</li>
<li><strong>Game Mod Update</strong> Sonic Adventure DX [<a href="apworlds.html#SonicAdventureDX">Link</a>]</li>
<li><strong>Game Mod Update</strong> Yacht Dice [<a href="apworlds.html#YachtDice">Link</a>]</li>