Fix links

This commit is contained in:
rmc 2023-12-07 18:23:03 -05:00
parent 68be298a9d
commit 7f53ece5bf
No known key found for this signature in database
GPG Key ID: 5633EC10309D77D1
2 changed files with 11 additions and 2 deletions

View File

@ -10,6 +10,7 @@
<meta name="description" content="DSi Debug Shop">
<meta property="og:description" content="DSi Debug Shop">
<meta name="keywords" content="dsi, ds, nintendo, dev" />
<script src="/common/js/footer.js"></script>
<link rel="stylesheet" type="text/css" href="/style.css">
@ -24,7 +25,7 @@
<body>
<div id="content-wrap">
<div class="screenlabels">
<a href="https://randomeaninglesscharacters.com/"><-- Main site</a> | <a href="/">Shop start page</a> | <a href="https://github.com/rvtr/debug-dsi-shop" target="_blank"> GitHub </a>
<a href="https://randommeaninglesscharacters.com/"><-- Main site</a> | <a href="/">Shop start page</a> | <a href="https://discord.gg/se9yQBeX3e" target="_blank">Discord</a> | <a href="https://github.com/rvtr/debug-dsi-shop" target="_blank"> GitHub </a>
</div><hr>
<h1 style="text-align:center;">DSi Debug Shop</h1><hr>
<div class="screenlabels">
@ -40,7 +41,7 @@
<br><br>
<div style="text-align:left;">
<hr>
<h2>This is an interactive demo of the DSi Debug Shop.</h2>The developer DSi shop uses a modified version of the DSi Browser, and most of its content is local HTML/JS. Because the app is almost entirely HTML/JS, I was able to take the HTML pages from NitroFS and edit them to work in any browser.<br><br>Many of the pages are missing- locked behind Nintendo's development servers or just straight up gone. I patched things up wherever possible, killing any dead links and linking to otherwise unlinked pages.<br>Features such as the console information and DSi specific operations are also missing/broken (as is to be expected when running a DSi app on a modern browser). I tried filling in the blanks where I could, but it's not perfect.<br>If you want to help polish up the code, feel free to submit a PR <a href="https://github.com/rvtr/debug-dsi-shop">here.</a><br>
<h2>This is an interactive demo of the DSi Debug Shop.</h2>The developer DSi shop uses a modified version of the DSi Browser, and most of its content is local HTML/JS. Because the app is almost entirely HTML/JS, I was able to take the HTML pages from NitroFS and edit them to work in any browser.<br><br>Many of the pages are missing- locked behind Nintendo's development servers or just straight up gone. I patched things up wherever possible, killing any dead links and linking to otherwise unlinked pages.<br>Features such as the console information and DSi specific operations are also missing/broken (as is to be expected when running a DSi app on a modern browser). I tried filling in the blanks where I could, but it's not perfect.<br>If you want to help polish up the code, feel free to submit a PR <a href="https://github.com/rvtr/debug-dsi-shop" target="_blank">here.</a><br>
<h2>Download original app:</h2>
I have found 3 different versions of this app. I am not sure what the specific differences between the apps are.<br>
I used the files from <i><b>shop.HNFC.Release.v1536</b></i> for my demo.
@ -56,5 +57,7 @@ shop.HNFC.Release.thumb: <a href="https://archive.org/download/rmc-dsi/shop.HNFC
<br><br>
</div>
</div>
<hr>
<div style="text-align: center;font-size: 10px;padding-bottom: 5px;"><i>Copyright &copy; 2021-<span id="footerDate"></span> Lillian M. Skinner <a href="https://randommeaninglesscharacters.com/contact.html" class="text-reset fw-bold">Contact me.</a></i></div>
</body>
</html>

6
common/js/footer.js Normal file
View File

@ -0,0 +1,6 @@
window.addEventListener('load', setFooterDate, false);
function setFooterDate() {
let footerDate = document.getElementById("footerDate");
footerDate.textContent = new Date().getFullYear().toString();
}