update readme
This commit is contained in:
parent
ae767a9637
commit
84c6a86177
3 changed files with 5 additions and 4 deletions
|
|
@ -98,6 +98,7 @@ If you like the tool and wish it developed further with more functions and easie
|
||||||
— Changes/Fixes:
|
— Changes/Fixes:
|
||||||
✅ Rewrote and optimized large parts of the code. Should work a bit faster now, especially on mobile devices.
|
✅ 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).
|
✅ 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.
|
✅ 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.
|
✅ 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!)
|
✅ 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
|
|
@ -1118,8 +1118,8 @@ document.getElementById("save-area-file").addEventListener("change", (event) =>
|
||||||
|
|
||||||
var label = document.getElementById("save-area-file").nextElementSibling;
|
var label = document.getElementById("save-area-file").nextElementSibling;
|
||||||
var labelInitialText = label.innerHTML;
|
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 fileDate = new Date(event.target.files[0].lastModified);
|
||||||
|
|
||||||
var year = fileDate.getFullYear();
|
var year = fileDate.getFullYear();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue