update readme

This commit is contained in:
ReznoRMichael 2021-07-20 17:33:44 +02:00
parent ae767a9637
commit 84c6a86177
3 changed files with 5 additions and 4 deletions

View file

@ -98,6 +98,7 @@ If you like the tool and wish it developed further with more functions and easie
— Changes/Fixes:
✅ Rewrote and optimized large parts of the code. Should work a bit faster now, especially on mobile devices.
✅ Drag and Drop save file should now work for the whole window (not just for the file input field).
✅ Choose Save File appearance change. Will now show file's name, date and time after file is loaded.
✅ Number of Health Masks, Soul Orbs and Charm Notches is now displayed as a number next to the graphics.
✅ Display all entry descriptions by default. They are all blurred when Spoilers checkbox is unchecked. Hover over them to uncover one-by-one.
✅ After analyzing a file, entries that are not yet done are now fully blurred when Spoiler checkbox is unchecked. Hover over the name and/or description to uncover it one-by-one. (thanks to kanna for the idea and inspiration!)

File diff suppressed because one or more lines are too long

View file

@ -1118,8 +1118,8 @@ document.getElementById("save-area-file").addEventListener("change", (event) =>
var label = document.getElementById("save-area-file").nextElementSibling;
var labelInitialText = label.innerHTML;
var fileName = event.target.files[0].name;
var fileName = event.target.files[0].name;
var fileDate = new Date(event.target.files[0].lastModified);
var year = fileDate.getFullYear();
@ -1139,7 +1139,7 @@ document.getElementById("save-area-file").addEventListener("change", (event) =>
var seconds = fileDate.getSeconds();
if (seconds < 10) seconds = "0" + seconds;
var fileDateFormat = `${year}.${month}.${day} ${hour}:${minutes}:${seconds}`;
if (fileName) {
@ -1151,7 +1151,7 @@ document.getElementById("save-area-file").addEventListener("change", (event) =>
/* Clean the text area and file input from leftover save file if present (Firefox especially) */
document.addEventListener("DOMContentLoaded", () => {
(async () => {
document.getElementById("save-area").value = "";
document.getElementById("save-area-file").value = "";