Update bootLogoChanger.html

Updated to support the May 15th firmware
This commit is contained in:
vonmillhausen 2023-05-16 11:33:53 +01:00
parent a85c622366
commit 70b49cc9e8

View File

@ -119,6 +119,12 @@
bisrvData = data; bisrvData = data;
document.getElementById("bisrvOutput").innerHTML = "<p class=\"infoMessage\">INFO: April 20th bisrv.asd detected</p>"; document.getElementById("bisrvOutput").innerHTML = "<p class=\"infoMessage\">INFO: April 20th bisrv.asd detected</p>";
} }
else if (data.length == 12656068) {
// That's the correct length for the May 15th version of the file
logoOffset = 0x9BB0B8;
bisrvData = data;
document.getElementById("bisrvOutput").innerHTML = "<p class=\"infoMessage\">INFO: May 15th bisrv.asd detected</p>";
}
else { else {
document.getElementById("bisrvOutput").innerHTML = "<p class=\"errorMessage\">ERROR: The selected file does not appear to be a known bisrv.asd file!</p>"; document.getElementById("bisrvOutput").innerHTML = "<p class=\"errorMessage\">ERROR: The selected file does not appear to be a known bisrv.asd file!</p>";
document.getElementById("imageSelector").setAttribute("disabled", ""); document.getElementById("imageSelector").setAttribute("disabled", "");
@ -264,6 +270,6 @@
} }
</script> </script>
<hr> <hr>
<p><a rel="license" href="http://creativecommons.org/publicdomain/zero/1.0/">CC0</a>: public domain. Version 1.0, 20230509.1</p> <p><a rel="license" href="http://creativecommons.org/publicdomain/zero/1.0/">CC0</a>: public domain. Version 1.1, 20230516.1</p>
</body> </body>
</html> </html>