forked from bigdunka/alttptracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.html
1204 lines (1202 loc) · 80 KB
/
release.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
<html>
<head>
<title>ALTTP Randomizer Community Tracker - Release Notes</title>
<script type="text/javascript" src="js/index.js?v=21007"></script>
<script type="text/javascript" src="js/jquery-3.3.1.js?v=21007"></script>
<script type="text/javascript" src="js/jquery.powertip.js?v=21007"></script>
<script type="text/javascript" src="js/bootstrap.min.js?v=21007"></script>
<link href="css/jquery.powertip.css?v=21007" rel="stylesheet" />
<link href="css/launcher.css?v=21007" rel="stylesheet">
<link href="css/fonts.css?v=21007" rel="stylesheet">
<link href="css/sprites.css?v=21007" rel="stylesheet">
<link href="css/toast.css?v=21007" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z3T0KM2W1L"></script>
<script>
$(function() {
$('.south').powerTip({ placement: 's' });
});
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Z3T0KM2W1L');
</script>
<style>
a { color: lightblue; }
</style>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="apple-touch-icon" sizes="180x180" href="images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/icons/favicon-16x16.png">
</head>
<body>
<div class="outer-wrapper">
<div>
<div class="header-main-div">
<a href="./index.html"><img src="./images/overlay/header.png" class="header-main-img"></a>
<div class="header-news-div" >
<span class="default-white-text">Build 2.1.007 082624 - Compatible for v31.x.x<br>Report any issues to Dunka (Discord: @bigdunka)<br>Check Known Issues for current known outstanding issues</span>
</div>
</div>
<div class="header-links">
<a href="./release.html">
<div class="header-link-img"><span class="header-text-span">Release Notes</span></div>
</a>
<a href="./instructions.html">
<div class="header-link-img"><span class="header-text-span">Instructions</span></div>
</a>
<a href="./issues.html">
<div class="header-link-img"><span class="header-text-span">Known Issues</span></div>
</a>
<a href="./contributors.html">
<div class="header-link-img" ><span class="header-text-span">Contributors</span></div>
</a>
<a href="./downloads.html">
<div class="header-link-img"><span class="header-text-span">Downloads</span></div>
</a>
</div>
</div>
<div class="main-wrapper">
<div class="preset-div">
<span id="gameplayarrow"></span> Release 2.1
<div id="release21">
<b><i>08/26/2024 Build 2.1.007 082624</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for upcoming ALTTPR Tournaments</li>
</ul>
<b><i>08/04/2024 Build 2.1.006 080424</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Twenty-Five Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
<li>Fixed boss small key check for PoD from being possible with 6 or more small keys</li>
</ul>
<b><i>06/06/2024 Build 2.1.005 060624</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Twenty-Four Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
Big thanks to Catobat for the following changes:<br>
<li>Fixed autotracking dungeon items being counted as non-dungeon items when dropped by a boss, on a torch or in Hera Basement Cage</li>
<li>Keys autotracking in Hera Basement Cage no longer counted twice</li>
<li>Fixed Hera boss logic in entrance sometimes saying dark rooms are required</li>
<li>Added dark room navigation support to the logic in overworld shuffle</li>
<li>Several small logic improvements to overworld and bug fixes (normal TR layout, flipped SP without Moon Pearl, dungeon logic not updating after getting items, and more)</li>
</ul>
<b><i>05/18/2024 Build 2.1.004 051824</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed dungeon chest tracking issue with Mystery after changing flags</li>
NOTE: If you do a hard reset of your game, chest tracking may become inaccurate. This is still a work in progress and we will look for a fix for this problem. Please report this or any other issues you may find with dungeon tracking with Mystery or any other mode.
<li>Fixed Bottle tracking issue in Mystery after changing flags</li>
<li>Fixed key logic with small keys over the normal limit in some dungeons</li>
<li>Fixed logical loop overflow with recent EDDM logic change</li>
</ul>
<b><i>05/13/2024 Build 2.1.003 051324</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added (auto)tracking support for modes with additional dungeon locations (like pots and enemy drops), dungeon logic not supported. To enable, set Doors to Crossed, and then right click a compass in the item tracker. Big thanks to Catobat for these changes!</li>
<li>Fixed compact map information window location</li>
<li>We will continue to investigate potential issues with the new changes with autotracking and the map. If you discover any issues, please do a force refresh (Ctrl + R) in your tracker browser window to ensure you have all of the latest updates.</li>
</ul>
<b><i>05/11/2024 Build 2.1.002 051124</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Misc fixes for floating divs with compact and vertical modes</li>
<li>Fixed cookie for reloading with vertical map</li>
<li>Fixed logic reallowing to uncheck Mushroom when not using autotracking</li>
<li>Added known issue for Hera tracking problem with small key. We are not going to fix this as it seems the ROM fix is coming "soon".</li>
</ul>
<b><i>05/08/2024 Build 2.1.001 050824</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added new autotracking functionality for bottles and dungeon items. Dungeon item tracking can be disabled by selecting "Classic" under the autotracking option.</li>
NOTE: These changes are very extensive and we apologize in advance if anybody comes across any issues. Please report them if you do!
<li>Added new Bottle tracking for each individual bottle with contents</li>
<li>Added vertical map layouts</li>
NOTE: This is not compatible with sphere tracking. We will work on adding this in the future.
You will find that the caption bar may not be visible, as the window is 1330px tall, and will only be usable on 1440p and 4k monitors. This is a sacrifice that needs to be made in order to make it fit on the screen and keep the proper sizing. We also recognize that some of the lines on the vertical layout with entrance may be slightly off.
<li>Increased upper dungeon item limits for Crossed Doors</li>
<u>Logic Fixes</u><br>
<li>Fixed logic issue in entrance with reaching EDM with access to DMWDM with Mirror and Hookshot</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('20');">
<span id="arrow20">▼</span> Release 2.0
</div>
<div id="release20" style="display: none;">
<b><i>4/21/2024 Build 2.0.036 042124</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated launcher query string to allow for 5 digit autotracking ports</li>
This may require a force refresh of your browser cache (Ctrl + F5 on most browsers)
</ul>
<b><i>4/7/2024 Build 2.0.035 040724</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added button presets for War for Hyrule Modes</li>
<li>Sprites fixes</li>
</ul>
<b><i>3/23/2024 Build 2.0.034 032324</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Twenty-Three Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
<li>Added logic to keep the Mushroom on the item tracker, even after it has been used at the Magic Shop</li>
<u>Planned Changes</u><br>
<li>We will be adding the new dungeon tracking to autotracking "soon", likely within the next week or two</li>
<li>Fix to entrance logic for WDM; EP MC Shuffle issue;</li>
</ul>
<b><i>1/17/2024 Build 2.0.033 011724</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Twenty-Two Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
</ul>
<b><i>11/13/2023 Build 2.0.032 111323</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Twenty-One Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
</ul>
<b><i>11/2/2023 Build 2.0.031 110223</i></b><br>
<ul>
<u>Logic Fixes</u><br>
<li>Fixed first chest of Hookshot cave in Inverted, without Hookshot, with a unique set of items</li>
<li>Fixed first two chests upstairs in GT to be available in entrance modes with proper items</li>
NOTE: This introduces some rare odd logic for possible items, which we are going to flag, but will fix at a later date
</ul>
<b><i>9/11/2023 Build 2.0.030 091123</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added jump to launcher button when selecting an archived preset from the dropdown menu</li>
<li>Fixed a couple issues with sprites not loading due to naming</li>
</ul>
<b><i>9/2/2023 Build 2.0.029 090223</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added a whole buncha new sprites from the last release</li>
</ul>
<b><i>8/31/2023 Build 2.0.028 083123</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Twenty Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
Big thanks to Catobat for the following changes:<br>
<li>Tracked data can now be exported as Customizer YAML files, in this way Overworld Shuffle plandos can be easily created. Note that these cannot be imported in the tracker again, save the tracker data separately instead if you want to modify anything later.</li>
<li>Tracked data can now be saved to JSON files.</li>
<li>Buttons for setting certain edges to vanilla have been moved to a new menu accessed through the "Bulk transition actions" button, new buttons have been added, and most of these can be applied when opening the tracker as part of entering the seed settings.</li>
<li>Added support for Swapped Overworld Shuffle (not implemented in the randomizer yet).</li>
<li>Added an option to always draw edges on the overworld map even if they are unshuffled.</li>
<li>The Overworld Path Search has 2 new buttons to save a few clicks for example when starting a new path from the last target.</li>
<li>When hovering over a screen or edges in certain modes, in addition to drawing lines to connected edges, the connected screens are outlined to make them easier to see.</li>
<li>Fixed several issues with auto adjustments after changing mode settings.</li>
<u>Logic Changes</u><br>
<li>Fixed Arrghus boss shuffle kill conditions check</li>
</ul>
<b><i>7/29/2023 Build 2.0.027 062523</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed inverted logic for Potion Shop access</li>
<li>Fixed Shopsanity logic for DDM Shop</li>
</ul>
<b><i>6/25/2023 Build 2.0.026 062523</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Nineteen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
<li>Fixed a few more stylesheet issues with sprites not loading</li>
<u>Logic Changes</u><br>
<li>Updated logic for Arrghus checks to also look for Bow and either Ice Rod or Fire Rod, or Ice Rod or Fire Rod and 2 Magic extensions (Bottles or Half Magic). Yes, this is a real thing.</li>
<li>Added an issue to the Known Issues list, where the boss of Mire isn't accurately taking into account of a small key on the boss with a boss shuffle active, if the boss isn't killable. This is a bit more complex to fix, and we will look to correct this in a future release.</li>
</ul>
<b><i>4/20/2023 Build 2.0.025 042023</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Eighteen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
</ul>
<b><i>4/9/2023 Build 2.0.024 040923</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added an alternate color scheme to the launcher to assist with color blind users. Thank you to PowerToMario for providing the proper color codes!</li>
<li>Fixed Hard Open preset to include non-progressive bows</li>
<li>Updated archive presets with additional modes</li>
<u>Logic Changes</u><br>
<li>Fixed logic issue in ToH with non-small key shuffle and available chests</li>
<li>We have identified the area where sometimes, with the Ambrosia flag active, the tracker will show 'Possible' instead of 'Available', even though the dungeon logic requires item checks to force items into certain locations (ie: IP). This has been added to the Known Issues report, but likely won't be fixed without a re-write of the Ambrosia functionality.</li>
</ul>
<b><i>3/18/2023 Build 2.0.023 031823</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Various sprite and preset fixes from the launcher</li>
</ul>
<b><i>3/12/2023 Build 2.0.022 031223</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added a metric shit ton of sprites from the v31.1 release</li>
</ul>
<b><i>3/10/2023 Build 2.0.021 031023</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Main Tournament Modes</li>
<u>Logic Changes</u><br>
<li>Fix Smithy logic in inverted with activated flute and Mitts</li>
</ul>
<b><i>2/11/2023 Build 2.0.020 021123</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Seventeen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
<u>Logic Changes</u><br>
<li>Fixed Hera entrance with WDDM bottom access w/ Hookshot and Mirror</li>
<li>Fixed MCS small key logic in Hera</li>
<li>Fixed Mimic Cave check with small key shuffle, requiring 2 small keys to be able to get to</li>
</ul>
<b><i>12/06/2022 Build 2.0.019 120622</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Sixteen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
<li>Reverted change for tracking on mobile, as we work for a better method to allow for mobile stylesheets</li>
</ul>
<b><i>10/23/2022 Build 2.0.018 102322</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Small style change to allow for tracking on mobile, just in time for SGL</li>
</ul>
<b><i>10/12/2022 Build 2.0.017 101222</i></b><br>
<ul>
Big thanks to Catobat for the following changes:<br>
<u>Logic Changes</u><br>
<li>Logic fixes for TR portal, HC gate and Purple Chest</li>
<li>Torch dark rooms are now only considered in logic with only Fire Rod if Entrance Shuffle, Door Shuffle, Overworld Shuffle and Shopsanity are all disabled</li>
<li>Added Dam requirement for SP boss in Entrance Shuffle</li>
<li>Fixed GT reachability logic</li>
<li>Fixed GT climb logic in Retro</li>
<li>Fixed PoD chest logic in Retro</li>
<li>Fixed Back of Escape logic in Inverted in unusual scenarios</li>
<u>Interface Changes</u><br>
<li>Added support for Free Terrain</li>
<li>Added support for Decoupled Overworld</li>
<li>Overhauled the behavior for after changing mode settings later on (like in Mystery) and the automatic transition adjustments the tracker then offers you to do. The text and button for these adjustments are only displayed if there actually are changes that would happen. It can provide a list of what types of changes would happen, for example if any edges that are invalid in the current mode would get deleted, or if any edges will be deduced from the mode or already tracked edges. All of this can also be accessed through a new button on the full overworld map for convenience.</li>
<li>Overhauled the controls under the overworld map while a transition is selected. The names of the selected transition and all currently connected transitions are now displayed. Hovering over any "Disconnect" buttons or names of connected transitions will highlight the corresponding line(s) on the map. A button was added to allow whirlpools to loop with themselves in Whirlpool Shuffle.</li>
<li>Changed the interface for syncing the tracker with the main window and added a setting for the default sync type when the tracker window is opened</li>
<li>Fixed some issues with swapping screens in Mixed Overworld, and hovering over the controls for the Mixed state will now highlight the affected screens on the map above</li>
<li>Hovering over an arrow or whirlpool in a path that is attached to the overworld map now highlights only the corresponding connection</li>
<li>Added two new options to the Overworld Path Search for requiring not to move the mirror portal (if one is currently placed) and ignoring item requirements</li>
<li>Added buttons at the bottom of the Overworld Tracking page for setting all horizontal or all vertical edges to vanilla or deleting all edges and screen states</li>
</ul>
<b><i>9/28/2022 Build 2.0.016 092822</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated button presets for ALTTPR Ladder Season Fifteen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
</ul>
<b><i>9/4/2022 Build 2.0.015 090422</i></b><br>
<ul>
Thanks to Catobat for the following changes:<br>
<u>Logic Changes</u><br>
<li>Fixed boss availability in Entrance Shuffle with Door Shuffle or vanilla dungeon items</li>
<li>Fixed minor visual bug with entrance highlighting</li>
<u>Interface Changes</u><br>
<li>Split up Layout Shuffle and Whirlpool Shuffle into separate settings</li>
<li>In Crossed Overworld with vanilla layout, edges that only have one option no longer have to be marked and are hidden</li>
<li>Added a vertical map layout and a new menu and option for changing the map layout</li>
<li>Added an option to have 2 columns on the Overworld Tracking main page</li>
<li>Added a short overview over all available Overworld Shuffle settings</li>
<li>In mode combinations involving Mixed Overworld, edges that have been connected to screens with unknown Mixed state now have a question mark</li>
<li>Added a connector checkbox from the back of TR to the front for vanilla entrances</li>
<li>Added Throne Room for Standard and Hera Boss Room in Door Shuffle/li>
<li>Added option for which symbols are shown in Basic Door Shuffle</li>
<li>Fixed visual bug with the Ganon drop in Entrance Shuffle with Mixed Overworld</li>
</ul>
<b><i>7/31/2022 Build 2.0.014 073122</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updates and fixes for restreaming mode</li>
</ul>
<b><i>7/30/2022 Build 2.0.013 073022</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fix for spoiler mode, where the spoiler select screen wasn't displaying properly</li>
<li>Fix for a few sprites with images not showing up properly</li>
<li>Updated button presets for ALTTPR Ladder Season Fourteen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
</ul>
<b><i>7/15/2022 Build 2.0.012 071522</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed logical access to EDM from WDDM, Mirror, and Hammer</li>
<li>Fixed entrance chest tracking ToH showing boss as dark available instead of just available</li>
<u>Interface Changes</u><br>
<li>Added boss availability to each dungeon in entrance as a color coded box over the boss image</li>
<li>Changed some of the names of entrance locations as to not confuse duplicate locations in the entrance summary page</li>
</ul>
<b><i>7/11/2022 Build 2.0.011 071122</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Added chest availability logic to confirm both SP and Dam located in order to enter SP</li>
<li>Added chest availability logic to confirm Wizrobes can be killed to advance in MM</li>
</ul>
<b><i>7/4/2022 Build 2.0.010 070422</i></b><br>
<ul>
Thanks to Catobat for the following changes:<br>
<u>Logic Changes</u><br>
<li>Fixed bug with Skull Woods boss logic</li>
<li>Fixed general bugs with multi-entrance dungeons</li>
<li>Improved Hyrule Castle logic; Reaching the back without lamp</li>
<li>Added bunny logic; Chests are red if the dungeon can only be entered as a bunny, with exceptions in Door Shuffle</li>
<li>Fixed bug with Sanctuary on Pyramid or Castle</li>
<u>Interface Changes</u><br>
<li>Entrance chest colors now work with all Door Shuffle modes</li>
<li>Fixed minor visual bug with Hyrule Castle in Door Shuffle modes</li>
<li>Fixed minor visual bug with Hyrule Castle Hole in Inverted Entrance</li>
<li>Disabled chest colors in Overworld Shuffle logic (not fully implemented yet)</li>
</ul>
<b><i>6/30/2022 Build 2.0.009 063022</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Numerous inverted fixes</li>
<li>Yeah, not gonna name them all, there were several</li>
</ul>
<b><i>6/23/2022 Build 2.0.008 062322</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed the Sanc start chest availability in inverted entrance</li>
<li>Fixed logic issue with first chest in Hookshot Cave with dark availability</li>
<li>Fixed inverted logic issue with turning in the Smithy and Purple Chest without Moon Pearl, but getting LW access from Aga 1</li>
<li>Fixed logic issue for Fairy Ascension cave entrance with lower DDM access, Moon Pearl, and Mirror</li>
</ul>
<b><i>6/19/2022 Build 2.0.007 061922</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added entrance chest availability tracking! Instead of having the color coding over the dungeon, like in non-entrance modes, it shows up over the chests</li>
NOTE: We do know of a few bugs, like TR tracking, and those have be noted in the known issues list, and will be fixed at a later date
</ul>
<b><i>6/10/2022 Build 2.0.006 061022</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added map and compass tracking to autotracking if wild maps and/or compasses are set to true and they have not been manually set</li>
<u>Logic Changes</u><br>
<li>Fixed inverted Bottom EDDM checks from Paradox middle cave being available</li>
<li>Fixed inverted entrance check for Ganon's Tower entrance with crystal count check</li>
<li>Fixed inverted check for Hookshot Cave showing active without DM access</li>
</ul>
<b><i>5/17/2022 Build 2.0.005 051722</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed various issues with restreamer and presets</li>
</ul>
<b><i>5/15/2022 Build 2.0.004 051522</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed inverted check for back of sewers without glove but with HC small key</li>
<li>Fixed inverted check Smithy without Moon Pearl or Mirror</li>
</ul>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Thirteen Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>)</li>
<li>Removed the long used Grab Bag matrix. Forever will it live in our memories.</li>
</ul>
<b><i>4/30/2022 Build 2.0.003 043022</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Modified previous TR fix to not affect Door Shuffle</li>
<li>Fixed MC shuffle flag for Champions Swordless in Grab Bag</li>
</ul>
<b><i>4/24/2022 Build 2.0.002 042422</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Yet another Inverted TR logic issue resolved, with front access entry being allowed without Somaria</li>
</ul>
<b><i>4/23/2022 Build 2.0.001 042322</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Major overhaul and style changes of all non-tracker pages</li>
<li>Changed the categories and order of some of the presets to consolidate and simplify launcher</li>
<li>Added visible flags for Non-Progressive Bows and Activated Flute</li>
<li>Added an interface for all normal starting items from the launcher</li>
<li>Added the Restreaming function, which allows for a Tracker (or racer) to send current tracker status to a Restreamer (NOTE: Currently, only the item tracker status is being shared; We expect to add full map tracking in the near future)</li>
<li>Added Grab Bag preset and interface to switch between modes after the tracker is launched</li>
<li>Added an offline checker to remove items that will not work when running offline</li>
<li>Fixed a few invalid sprites which weren't loading properly</li>
<li>Added a settings menu to the Overworld and Dungeon Tracker window which includes a light theme and many other behavior and display customization options</li>
<li>Overworld Shuffle: Updated the logic for Inverted and Mixed to the current Inverted implementation in the OWR branch (only affects the logic from the Overworld Tracker window)</li>
<li>Door Shuffle: When adding a room node, more rooms are now available, and rooms are divided into multiple categories (default view can be changed in the settings menu)</li>
<li>Made the button for adding a new connector larger</li>
<u>Logic Changes</u><br>
<li>Fixed a bug with TR Bridge in Inverted Entrance </li>
<li>Fixed a bug with reaching Catfish in Inverted with Mirrow and LW access</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('18');">
<span id="arrow18">▼</span> Release 1.8
</div>
<div id="release18" style="display: none;">
<b><i>3/10/2022 Build 1.8.004 031022</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed issues with auto-tracking and OW Dungeons with non-progressive bows</li>
</ul>
<b><i>3/9/2022 Build 1.8.003 030922</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Twelve Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) and Main Tournament modes (subject to change)</li>
<li>Restored functionality for non-progressive Bows with Open Plus and Hard Open presets (flag is hidden)</li>
<u>Logic Changes</u><br>
<li>Fixed logic issue with Turtle Rock in Inverted mode showing clearable if only having front access</li>
<li>Fixed logic issue with Hookshot Cave in Inverted mode not showing available with Mirror and LW access instead of a Glove</li>
<li>Fixed logic issue with Tower of Hera in Inverted mode with Basement chest being not obtainable with a fire source</li>
</ul>
<b><i>1/30/2022 Build 1.8.002 013022</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Minor scripting fixes</li>
</ul>
<b><i>1/29/2022 Build 1.8.001 012922</i></b><br>
<ul>
Thanks to Catobat for the following changes:<br>
<u>Interface Changes</u><br>
<li>In Mystery, when switching between Entrance and Non-Entrance (or World State in Entrance mode), the page no longer reloads. This means item tracking progress is no longer lost and it no longer causes disconnects with the Overworld Tracking window or Autotracking.</li>
<li>In Mystery, it is now possible to change the Door Shuffle, Overworld Shuffle and Shopsanity settings</li>
<li>The Dungeon and Overworld Tracking window now automatically saves and loads display settings. More customization options will be added in the future.</li>
<li>Overworld paths that were generated by a search now have a "Repeat search" button that allows for later repeating of a search with the same search settings.</li>
<li>When Overworld Tracking is synced with the main window, a new button assists in changing World State and Entrance Shuffle in case those were not set correctly from the start.</li>
<li>Updated sprites from 31.0.11</li>
<u>Logic Changes</u><br>
<li>Certain mode combinations will automatically mark Sanctuary (or Dark Chapel) as a common starting location when beginning.</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('17');">
<span id="arrow17">▼</span> Release 1.7
</div>
<div id="release17" style="display: none;">
<b><i>1/5/2022 Build 1.7.005 010522</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Eleven Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
</ul>
<b><i>12/17/2021 Build 1.7.004 121721</i></b><br>
<ul>
Thanks to Catobat for the following changes to the Overworld Tracker:<br>
<u>Interface Changes</u><br>
<li>The full overworld map can now also be used directly on the main Overworld Tracking page</li>
<li>Paths are now viewable on the overworld map</li>
<li>When opening the Overworld and Dungeon Tracker window for the first time, you are now immediately asked to either select all the mode settings and whether they might still change later, or load saved data to continue a previous session. Mystery mode is also available which simply sets all mode settings to the least restrictive options for the start.</li>
<li>The Overworld Path Search UI has been completely overhauled and now has a clearer distinction between and indication of start and target points</li>
<li>More Overworld Path Search options (selecting a single region on the starting screen, how common starts can be used when a specific starting screen is selected, followers, and mirror portals (only at start or target regions)) When you are about to start a new search and asked about the target screen, you can now also select a search preset for commonly needed paths that may involve more than just selecting a target screen, like delivering the purple chest to the thief.</li>
<li>Below the Overworld Path Search, there is now a checklist that provides some quick tips on what may be missing if a path could not be found</li>
<li>When selecting a screen on the full overworld map, the buttons for adding a common start region can now also be used to remove already existing ones</li>
<li>Easier screen swapping in Mixed with an option to keep marked transitions in the same world as before the swap</li>
<li>In Mystery, when changing certain settings in the main tracker window that force a disconnection between the two tracker windows, a warning and explanation on how to reconnect the tracker windows is now displayed. The main page also starts showing a warning and the same explanation (this also happens if the connection is lost in some other way).</li>
<li>Fixed a bug where Castle Tower wasn't visually moved to Death Mountain in Inverted with Door Shuffle</li>
<li>Setting the flute spots in Flute Shuffle gives you the option to disable Flute Shuffle</li>
<u>Logic Changes</u><br>
<li>Logic supports traversal with followers</li>
<li>In Mixed, the item tracker logic now takes screens with unknown states into account. There are some minor issues with this that will be addressed in the future.</li>
</ul>
<b><i>11/1/2021 Build 1.7.003 110121</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Ten Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
</ul>
<b><i>10/17/2021 Build 1.7.002 101721</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added sorting, various filtering options and notes to the Entrance Summary</li>
<li>Added compass icon to boss rotation if Compasses are Wild</li>
<u>Logic Changes</u><br>
<li>Fixed minor bugs with changing Boss Shuffle and Wild Maps in Mystery</li>
<li>Fixed minor styling issues in Entrance right-click menu</li>
</ul>
<b><i>10/14/2021 Build 1.7.001 101421</i></b><br>
<ul>
<li>We've updated our URL! Please note the new URL: <a href="https://alttprtracker.dunka.net">https://alttprtracker.dunka.net</a></li>
The old URL will continue to work for a time and redirect to the new URL, and then will eventually be replaced permanently<br><br>
<li>A big thank you to Catobat for several of the following updates, notated by ** in the below notes</li>
<u>Interface Changes</u><br>
<li>Added Shopsanity tracking and logic**</li>
<li>Updated sprites from 31.0.10</li>
<li>Removed non-Bomb start in Standard modes to prevent confusion with Bomb Logic</li>
<li>Overworld Shuffle interface improvements**</li>
<li>Added Overworld Shuffle logic to the main window**</li>
<li>Added Polar Mixed Overworld tracking support**</li>
<li>Minor changes to importing flags**</li>
<li>FINALLY added the Known Locations and Known Entrances interface to the Entrance Tracker</li>
<u>Logic Changes</u><br>
<li>Added StructuralMike's Bomb Mode Logic, which allows for logic to not be able to use bombs until they are located. A big thanks to StructuralMike for this update and Catobat for merging it!</li>
<li>Door Shuffle logic adjustments**</li>
<li>Changed Old Man logic in Entrance**</li>
<li>Minor dungeon logic fixes (EP, DP, IP, TR and GT)**</li>
<li>Some preparations for dungeon logic in Entrance**</li>
<li>Added Door Shuffle logic for Entrance (only affects SW)**</li>
<li>Fix to Bombos Tablet check in entrance with no Moon Pearl</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('16');">
<span id="arrow16">▼</span> Release 1.6
</div>
<div id="release16" style="display: none;">
<b><i>8/29/2021 Build 1.6.022 082921</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Nine Modes (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
<li>Updated import flag endpoint to match new ALTTPR repository</li>
</ul>
<b><i>8/14/2021 Build 1.6.021 081421</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Logic fixes in entrance and mystery</li>
</ul>
<b><i>8/7/2021 Build 1.6.020 080721</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Thanks to Catobat for updating the Overworld Shuffle tracker! It now supports the following modes:</li>
- Inverted<br>
- Mixed Overworld<br>
- Crossed Overworld<br>
- Flute Shuffle<br>
<li>All combinations of the above and Vanilla/Parallel/Full Overworld Layout Shuffle are now supported (The map tracker in the main window is still not affected)</li>
<li>Various improvements to the Overworld/Dungeon Tracker window (side by side view for the map, flute activation handled manually and more)</li>
<li>Added starting activated Flute logic for Inverted Mystery. It can be toggled from the Mystery flags menu</li>
<li>Fixed sprite issue with Ark and Ark Cape</li>
</ul>
<b><i>7/18/2021 Build 1.6.019 071821</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed styles for some sprites which were not showing up upon load</li>
<li>Autotracking status will now be hidden when hovering over any object which displays a message in the map area</li>
</ul>
<b><i>7/11/2021 Build 1.6.018 071121</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed bug when switching between entrance modes in Mystery where autotracking would fail to re-load</li>
</ul>
<b><i>6/26/2021 Build 1.6.017 062621</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Eight Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
<li>Updated sprite list, fixed outstanding missing sprites</li>
<li>Added a status indicator for Autotracking status in the bottom right corner of the map tracker</li>
NOTE: Because of lack of space, there is no spot left on the item tracker for this indicator for this feature, so unless you are using the map tracker, this feature will not be available
</ul>
<ul>
<u>Logic Changes</u><br>
<li>Changed logic for GT entry in Mystery Modes, for when crystal requirement is unknown, entry will be marked as possible instead of unavailable if GT is reachable</li>
</ul>
<b><i>5/24/2021 Build 1.6.016 052421</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Big thanks to Catobat for the following updates:</li>
<li>Added Overworld Shuffle tracking support which is located in the Dungeon Tracker window</li>
<li>Made some improvements to the Dungeon Tracker window including an optional sidebar for quick switching between dungeons (or dungeon and overworld)</li>
<li>Fixed right-clicking locations and marking them with items when auto-tracking is enabled</li>
<li>Fixed minor logic bugs at Mimic Cave and Desert West Ledge with Door Shuffle enabled</li>
<li>Fixed minor launcher styling issues (mostly in Firefox)</li>
</ul>
<b><i>4/24/2021 Build 1.6.015 042421</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Seven Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
</ul>
<b><i>3/28/2021 Build 1.6.014 032821</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Finally added the additional sprites for 31.0.8, just a little late!</u>
<li>Fixed logic issue in entrance with EDW access with limited items</u>
</ul>
<b><i>2/6/2021 Build 1.6.013 020621</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed North WDM access with Hookshot, Mirror, and South EDM access in entrance</u>
<li>Fixed enemizer boss check in MM</u>
</ul>
<b><i>1/24/2021 Build 1.6.012 012421</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed Hera basement chest in key shuffled modes</u>
<li>Fixed several OWG logic issues</u>
</ul>
<b><i>1/17/2021 Build 1.6.011 011721</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed locations reachable via Flute activations in inverted entrance</u>
<li>Fixed King's Tomb opening in inverted entrance</u>
<li>Made locations in SW/Outcast area reachable always with Moon Pearl and back of SW entrance located</u><br>
NOTE: This is a reversion from a previous change. Where it is possible to get locked behind the one entrance and drop that you can access, it is always much more likely that it will be available. Be aware that this entrance may be one sided and you cannot progress through the single door, although unlikely. This will require the use of "Possible" entrances, which is currently not a feature. We will work on adding this in the future.<br>
</ul>
<b><i>1/16/2021 Build 1.6.010 011621</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed fringe case of AGA required items in swordless mode</u>
</ul>
<b><i>1/9/2021 Build 1.6.009 010921</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added back end scripting to prevent accidental reloading of the tracker in Mystery modes by navigating backward (After doing this twice in Mystery, I had enough...)</li>
<u>Logic Changes</u><br>
<li>Fixed GT access with 0 GT requirements</u>
</ul>
<b><i>1/2/2021 Build 1.6.008 010221</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Massive changes to Crossed Door shuffle and dungeon tracker, big thanks to catobat for updating his interface and logic! Check the instructions page for updated information.</u>
<li>Fix to launcher import settings functionality when importing from a seed</u>
<li>Fix to some of the sprites that were imported with the last build</u>
</ul>
<b><i>12/22/2020 Build 1.6.007 122220</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed launcher issues, missing sprites from dropdown</u>
</ul>
<b><i>12/21/2020 Build 1.6.006 122120</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Inverted Entrance logic has finally been added! Big thanks to willwc for creating this logic! Please report any issues you come across.</li>
<u>Interface Changes</u><br>
<li>Added version 31.0.7 sprites</u>
<li>Updated up the presets for ALTTPR Ladder Season Five Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
</ul>
<b><i>12/08/2020 Build 1.6.005 120820</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed the ability to right click on medallions in entrance mode</li>
<li>Fixed the import flag issue for checkboxes when importing item shuffles</li>
</ul>
<b><i>11/11/2020 Build 1.6.004 111120</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Small logical fixes for IP and inverted</li>
</ul>
<b><i>10/19/2020 Build 1.6.003 101920</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed auto tracking issues with entrance overworld locations</li>
<li>Fixed DP logic for Boots checks</li>
<li>Fixed inverted information check for Grove Cave without Moon Pearl</li>
</ul>
<b><i>10/19/2020 Build 1.6.002 101920</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed style issue with maps not showing up in entrance tracker</li>
<u>Logic Changes</u><br>
<li>Fixed auto tracking issues with swordless modes and half magic tracking</li>
<li>Disabled auto tracking for CT chests</li>
</ul>
<b><i>10/18/2020 Build 1.6.001a 101820a</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added instructions for auto tracking to the instructions page</li>
<li>Added variable port option for auto tracking</li>
</ul>
<b><i>10/18/2020 Build 1.6.001 101820</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Numerous updates to the launcher!</li>
Updated the Logic Settings to include individual Shuffled Items for wild maps, compasses, small keys, and big keys<br>
NOTE: The Dungeon Items selector works to fill in presets, but it is no longer used beyond the launcher as each individual setting is now looked at for logic.<br>
Added Ambrosia to the logic settings, to always check for the last item in each dungeon when only one item remains<br>
Added Starting Items to the launcher, which is more for the presets and imports, but it will carry over to the tracker if you preset it (NOTE: If you use a preset with starting boots, like Open Boots, and then change up other flags, the boots will already be preset and you cannot uncheck it without using a different preset. This is NOT a bug, but an annoyance. Just uncheck them when you launch, and this will be addressed at a later time.)<br>
Removed Advanced/Basic difficulty settings, as it will no longer be looked at and all modes will be considered as advanced placement<br>
Added (FINALLY) an instructions document from the launcher, which explains all of the various modes and how to use the tracker in general<br><br>
<li>Updated up the presets for ALTTPR Ladder Season Four Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
<li>For those that have the ability to use it, there is a new auto tracking module added for items and locations! Just have it selected on the Launcher. Big shout-out to Bonta for providing the module to make this work! NOTE: The default websocket port that is being used is 8080.</li>
<li>Overworld Glitches logic has been added! Big thanks to Coxla for adding it! It hasn't been fully tested, so please report any issues. Major/No Logic will always show all locations, as logic there is not yet implemented. (Nor likely will it ever)</li>
<li>Added a map icon whenever Wild Maps are live, which is at the end of the rotation, and accessible by right clicking on pendant/crystal rotator when it is at the start (?)</li>
<li>Right clicking on medallions for MM and TR will now navigate backward</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('15');">
<span id="arrow15">▼</span> Release 1.5
</div>
<div id="release15" style="display: none;">
<b><i>9/9/2020 Build 1.5.025 090920</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added enhanced dungeon tracking for Door Rando! This is a feature with a lot of new options, so there is a walkthrough that you can <a href="instructions.html#dungeon" target="_blank">view here</a>. Thanks goes out to Catobat for this new addition to Door Rando tracking!</li>
<u>Logic Changes</u><br>
<li>Small keysanity logic fixes</li>
<li>Fixed typo with Magic Cape for some invuln checks</li>
</ul>
<b><i>8/15/2020 Build 1.5.024 081520</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated up the presets for ALTTPR Ladder Season Three Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
<u>Logic Changes</u><br>
<li>Change to logic for Fire Rod access to back of Escape (Was previously hotfixed)</li>
</ul>
<b><i>7/6/2020 Build 1.5.023 070620</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added the new sprites for the 31.0.6 release</li>
</ul>
<b><i>6/23/2020 Build 1.5.022 062320</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Changes up the presets for ALTTPR Ladder Season Two Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
<li>Added the new sprites for the 31.0.5 release!</li>
<u>Logic Changes</u><br>
<li>Various fixes in entrance mode</li>
</ul>
<b><i>5/21/2020 Build 1.5.021 052120</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Reworked some of the PoD logic for Keysanity/MCS modes</li>
NOTE: We are reviewing this logic and may rework some of the methods in which we assign chest priorities, more to come in later builds<br><br>
</ul>
<b><i>5/14/2020 Build 1.5.020 051420</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added more presets to the main menu, coincidentally matching our current ALTTPR Ladder Season 1 Modes! (<a href="https://alttprladder.com" target="_blank">https://alttprladder.com</a>) </li>
<u>Logic Changes</u><br>
<li>Fixed two DW entrance issues</li>
<li>Fixed logical checks for tablets in swordless modes</li>
</ul>
<b><i>4/30/2020 Build 1.5.019 043020</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed a logical issue EP Keysanity</li>
</ul>
<b><i>4/5/2020 Build 1.5.018 040520</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed a few DM entrance issues</li>
<li>Fixed a logical issue with PoD in Inverted mode</li>
</ul>
<b><i>3/16/2020 Build 1.5.017 031620</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fix in mystery mode where the goal icon could vanish</li>
<li>Added a generic "Chest" key location to entrance interface, for chests that are not obtainable but have been found</li>
<u>Logic Changes</u><br>
<li>Various fixes to entrance logic</li>
</ul>
<b><i>3/12/2020 Build 1.5.016 031220</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Small fixes to import flags function, and added the ability to paste the entire URL instead of just the hash</li>
<li>Fixed issue where chests were only visually changed in mystery mode when going from open to standard</li>
<li>Fixed issue where small keys were being reset when switching between full Keysanity and MCS</li>
</ul>
<b><i>2/28/2020 Build 1.5.015 022820</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>New location note feature has been added! If you right click on a location, it will allow you to select an item, which will then leave a note (hover to see it below the map in the caption area) on the location so you remember to go back for it later. Thanks goes out to Catobat for this handy new feature!</li>
<u>Logic Changes</u><br>
<li>Various entrance logic fixes</li>
</ul>
<b><i>2/22/2020 Build 1.5.014 022220</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Various entrance logic fixes</li>
</ul>
<b><i>1/25/2020 Build 1.5.013 012520</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fix for MM logic boss clear without either fire source</li>
<u>Interface Changes</u><br>
<li>It is true, you always have bombs, except..... *dramatic chipmunk!*</li>
</ul>
<b><i>1/18/2020 Build 1.5.012 011820</i></b><br>
<ul>
<u>Mode Changes</u><br>
<li>Thanks to Catobat to contributing a new toggle for tracking door rando! This adds additional chest and key info for tracking individual pieces of dungeons, which also does open up new considerations, like small keys in EP, or the bomb hole in TT. Currently, there is no logic built to track what could be available within the dungeons and what chests could be accessed logically, as there really isn't a good way to tell the tracker what is and what isn't available. So the mode may look a little bit different.</li>
<u>Logic Changes</u><br>
<li>Small logical fixes for enemizer combinations</li>
</ul>
<b><i>1/2/2020 Build 1.5.011 010220</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed logical issue in entrance where the Bumper Cave exit ledge was included in the WDM entrance pool</li>
<li>Fixed logical issue in entrance where WDM was not available with WDDM access and Mirror</li>
<li>Fixed logical issue in entrance where the dark shopping mall areas were available with Flippers and without Moon Pearl</li>
</ul>
<b><i>12/28/2019 Build 1.5.010 122819</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Compact map now has entrance and full mystery options available! Big thanks to Catobat for making these changes! The compact map may still be a little hard to read at times...but what can ya do with that space? We will work on ways of improving the visual aspect to improve visibility.</li>
</ul>
<b><i>12/22/2019 Build 1.5.009 122219</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed issue where map tracker icon for dungeons were being overwritten when changing enemy shuffle option</li>
<li>Added override styles for unavailable known locations in entrance tracking mode</li>
</ul>
<b><i>12/10/2019 Build 1.5.008 121019</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added starting zones for Entrance for Link's House, Sanctuary, and Death Mountain</li>
<li>Modified tag locations for areas near the north of the map to show under the location tab instead of over, to prevent it falling off the screen</li>
<u>Logic Changes</u><br>
<li>Applied already live hotfix for new swordless bug</li>
</ul>
<b><i>12/08/2019 Build 1.5.007 120819</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Changed the map tracker icons from the boss icons for each respective dungeon to the selected dungeon prize</li>
NOTE: This change is currently tentative, based off feedback, and may be reverted<br><br>
<u>Logic Changes</u><br>
<li>Fixed swordless bug for entry into MM/TR/IP</li>
</ul>
<b><i>12/04/2019 Build 1.5.006 120419</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Moved Mystery settings flag to the main interface and changed so the tracker does not auto-load on a preset setting, but instead goes to the display settings at the bottom</li>
<u>Logic Changes</u><br>
<li>Modified the Ice Palace boss logic to once again allow for possible completion without Hookshot or Somaria</li>
NOTE: I've gone back and forth with this logic, as it makes no actual sense. However, there are situations where you can force the old vanilla route with keys up front where hook and cane are not actually required. Also note, that in full keysanity mode, it will still return an unavailable (red) for the boss when you don't have hook, cane, or the big key. Chest logic remains unchanged.<br><br>
<li>Fixed issue where hammer was required for low crystal count GT for chests</li>
<li>Fixed a map tracking update issue where crystals and pendants are swapped, not affecting map tracking for GT entry and Ganon vulnerability until a refresh has occurred</li>
</ul>
<b><i>12/02/2019 Build 1.5.005 120219</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>A few new entrance logic fixes</li>
<li>Fixed a bug in retro mode where SP was looking for non-retro small keys to complete</li>
</ul>
<b><i>12/01/2019 Build 1.5.004a 120119</i></b><br>
<ul>
<u>Mode Changes</u><br>
<li>Because everybody loves a good mystery, a new Mystery Seed preset has been added! This will allow you to switch between modes in a mystery race (They are ALLLLLL the rage these days) whenever you figure out one of the flags. Doing so will load the default settings: Open, non-Entrance, Boss + Enemy Shuffle, Keysanity, Ganon w/ Random-Random. When in Mystery Seed mode, a new flag icon will appear in the top left under the Ganon Vulnerable icon. Simply click on it, change what settings you want, and save and the adjustments should occur. Note, that if you switch between Entrance and non-Entrance, you will lose all of your tracked items and map locations. If you switch between Inverted and non-Inverted, you will lose your map tracking locations.</li>
NOTE: Entrance mode is not supported with compact map and thus, you cannot switch between them<br><br>
<li>Added basic "glitched" tracking, which is basically just everything is on for now without any logic built in, so the modes are currently condensed into one. When proper logic is added later, those will be split back out again.</li>
<u>Logic Changes</u><br>
<li>Numerous entrance logic fixes</li>
<li>Fixed back of escape chests in retro not showing available with lantern</li>
<li>Fixed inverted keysanity check with Castle Tower showing available when it should be dark accessible only</li>
<li>Fixed inverted keysanity SP boss check without small key showing available</li>
<li>Fixed unlikely scenario where SP items were showing possible, but no actual way to get to SP, after AGA1 kill</li>
</ul>
<b><i>11/21/2019 Build 1.5.003 112119</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed entrance known areas for dungeons not recognizing located</li>
<li>Fixed entrance bug for lower EDM w/ hookshot and WDM access</li>
<li>Added Dam location check for Dam underwater item and updated text</li>
</ul>
<b><i>11/20/2019 Build 1.5.002 112019</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Updated entrance interface to allow for multiple entrances (up to 3) to be connected to a single location</li>
NOTE: This changes how the connector addition interface works, and you now need to go to the right click menu to connect and disconnect locations. Having the on screen icon to add was too troublesome with the new multi-entrance logic build. All entrance adds and disconnects will now be handled from this menu. The old connect button on the map has been removed and the disconnect will only be visible when needing to cancel a location. That space will be replaced by the soon-to-have Summary Page, which will show you a summary of all known locations.<br><br>
<li>Added a small note indicator when a note is active on a location, although other on-screen items always have priority (So the note icon may be hidden)</li>
<li>Updated the hover-over caption to give more complete information</li>
<li>Modified key locations in conjunction with connectors, allowing both connectors and key locations to be on one item; Key location color schemes will always get priority in this case</li>
<li>Updated the right click menu to better summarize the location details</li>
<li>Added temp location for Mystery Seed default settings, it is coming soon, which will give you the ability to update flags without reloading the tracker in mystery seeds!</li>
<u>Logic Changes</u><br>
<li>Fixed small logic issues with entrance logic</li>
</ul>
<b><i>11/16/2019 Build 1.5.001 111619</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Changed the default item tracker, added bombs, half magic, and AGA 2, and split some items to share one spot</li>
Explanation: Okay, I feel like I need to explain this one. The core of this revolves around needing AGA 2 as a clickable option, because entrance and non-fast Ganon modes require clearing AGA 2, but not always when you are ready to finish the game. So making the split spot for AGA 1 and AGA 2 was natural. However, there has been a push by some of the community to make the tracker match the in-game menu, which meant adding...sigh...Bombs. (Editors note: YOU ALWAYS HAVE BOMBS!!) In order to do that, it required merging Mushroom/Powder and Shovel/Flute spots. The deciding factor in all of this, is that it allowed the addition of Half Magic, something which I have been wanting for a while, because there is some logic that runs from it. (NOTE: That logic has yet to be implemented in this release, and it is limited to basic item placement modes, so it will come later) So, hopefully this should make MOST people happy.<br><br>
<u>Logic Changes</u><br>
<li>Added logic for non-inverted entrance mode! Be aware, in order to properly use it, you will need to make connectors to the areas that you need access to. For example, you need to make a valid connection to Death Mountain for the logic to recognize it. Also, this logic is still in the validation phase, so please report any issues!</li>
<li>Fixed bug in medallion checks</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('14');">
<span id="arrow14">▼</span> Release 1.4
</div>
<div id="release14" style="display: none;">
<b><i>10/21/2019 Build 1.4.009 102119</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Fixed issue with spoiler log mode where the hover overs were not compatible with some of the latest entrance changes (NOTE: Spoiler logs and entrance still do not mix well, maybe that'll get added at some point)</li>
<u>Logic Changes</u><br>
<li>Fixed some retro logic with standard and MC shuffles with the incorrect amount of chests showing up</li>
</ul>
<b><i>10/20/2019 Build 1.4.008 102019</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Finished uploading ALL of the custom sprites! Huge thanks to Catobat for the way to automate the generation, saved several hours of time!</li>
<u>Logic Changes</u><br>
<li>Changed method of validation MM and TR medallion checks, removing some legacy code which was causing a conflict with the new method of chest checks</li>
</ul>
<b><i>10/19/2019 Build 1.4.007 101919a</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Started implementing custom sprites! For right now, it is just Link and Ultros, but we'll put in more as we can design them</li>
</ul>
<b><i>10/19/2019 Build 1.4.006 101919</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed logic issue with Full Keysanity/MCS Shuffle with retro, where small keys are not being ignored by the retro key tracker</li>
</ul>
<b><i>10/17/2019 Build 1.4.005 101719</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added visual tags for known key locations, which also are hidden when the location is checked off</li>
<li>Added new category for key entrance locations for general locations, and added an "Unknown Connector" location</li>
<li>Fixed a scripting error when right clicking on small keys in entrance mode</li>
</ul>
<b><i>10/16/2019 Build 1.4.004 101619</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Consolidated Entrance modes on the launcher, as at this time (and probably in the future) there will be no functional changes between modes</li>
<li>Removed Insanity Entrance mode on the launcher, as this will not be supported at this time</li>
<li>Fixed connector line issue with entrances on the same X/Y coordinate</li>
<li>Fixed spoiler log issue with tracking progressive bow</li>
<li>Modified entrance tracker chest color codes to be more subtle</li>
</ul>
<b><i>10/15/2019 Build 1.4.003 101519a</i></b><br>
<ul>
<u>Interface Changes</u><br>
<li>Added color scheme changes for chests in entrance mode to show when chests are available in dungeons, since the dungeon trackers have been removed</li>
</ul>
<b><i>10/15/2019 Build 1.4.002 101519</i></b><br>
<ul>
<u>Mode Changes</u><br>
<li>Added Connect icon to the right click menu for entrance tracking, to save a click if already in the menu</li>
<li>Added Ganon to the Dark World Key Locations in the right click menu for entrance tracking</li>
<li>Changed opacity of checked locations in entrance to half opacity, to prevent additional clutter on the map</li>
</ul>
<b><i>10/14/2019 Build 1.4.001 101419</i></b><br>
<ul>
<u>Mode Changes</u><br>
<li>Basic entrance tracking has been added!<br>
This is going to be the first of several releases of Entrance, as we are going to roll it out slowly. This first initial build has no built in logic behind the entrances. Just the locations, the ability to check off locations, tag known locations, make connections, and add notes. The next major builds will improve and clean up the interface, the ability to properly track available dungeon chests, followed by logic.<br>
Currently, if you left click on a diamond (entrance), it will simply check it off, the way that chests currently do. However, if you right click on it, it will bring up the options for the entrance. You can click a known location, which will highlight it, and/or add a note. Any known locations or notes will show up in the caption area under the map.<br>
To add a connector, click at the connector button near the bottom right area of the light world map. Then click on the two entrances you want to connect, and they should highlight that they are active. Hovering over them will show where they are connected in the caption area, or you can view the details on the right click menu. That is where you can remove the connector as well, it will show a Disconnect button. Also, if you want to view the lines of the connector, you can do so by clicking on the Eye button in the bottom left hand corner of the dark world map. You can re-hide them by pressing the button again.<br>
Also, for the entrance version of the map, there are no dungeon indicators on the map (because the dungeon could be anywhere!). As stated before, we will update this with a new method to track chests in a future release.<br>
As always, please report any issues, thank you!<br>
<br>
<u>Logic Changes</u><br>
<li>Updated dark logic to GT</li>
<li>Updated Ganon vulnerability check when Ganon Vuln is available, but GT is not, and is not Fast Ganon</li>
<li>Updated dark + advanced logic in EP</li>
<li>Updated MM boss check w/ unknown medallion</li>
</ul>
</div>
</div>
<div class="preset-div">
<div class="preset-header" onclick="togglereleasediv('13');">
<span id="arrow13">▼</span> Release 1.3
</div>
<div id="release13" style="display: none;">
<b><i>10/1/2019 Build 1.3.011 100119</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Updated Ice Palace boss logic<br>
This logic is going to be one of those exceptions to the rules, in regards to what is "required" vs what is "expected". This may change down the road, but as it stands, it basically requires the Hookshot or Somaria and the big key (in full keysanity mode), although that does not exactly fit what the logic says.<br>
<br>
</ul>
<b><i>9/29/2019 Build 1.3.010 092919</i></b><br>
<ul>
<u>Logic Changes</u><br>
<li>Fixed Dark Cross Advanced logic w/ Fire Rod</li>
<li>Removed old sequence break logic and will replace with new glitched logic in future revision</li>
</ul>
<b><i>9/28/2019 Build 1.3.009 092819</i></b><br>
<ul>
<u>Logic Changes</u><br>