mirror of
https://github.com/rvtr/debug-dsi-shop.git
synced 2025-06-18 10:35:35 -04:00
Fix links
This commit is contained in:
parent
68be298a9d
commit
7f53ece5bf
@ -10,6 +10,7 @@
|
|||||||
<meta name="description" content="DSi Debug Shop">
|
<meta name="description" content="DSi Debug Shop">
|
||||||
<meta property="og:description" content="DSi Debug Shop">
|
<meta property="og:description" content="DSi Debug Shop">
|
||||||
<meta name="keywords" content="dsi, ds, nintendo, dev" />
|
<meta name="keywords" content="dsi, ds, nintendo, dev" />
|
||||||
|
<script src="/common/js/footer.js"></script>
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/style.css">
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||||
|
|
||||||
@ -24,7 +25,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div id="content-wrap">
|
<div id="content-wrap">
|
||||||
<div class="screenlabels">
|
<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>
|
</div><hr>
|
||||||
<h1 style="text-align:center;">DSi Debug Shop</h1><hr>
|
<h1 style="text-align:center;">DSi Debug Shop</h1><hr>
|
||||||
<div class="screenlabels">
|
<div class="screenlabels">
|
||||||
@ -40,7 +41,7 @@
|
|||||||
<br><br>
|
<br><br>
|
||||||
<div style="text-align:left;">
|
<div style="text-align:left;">
|
||||||
<hr>
|
<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>
|
<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 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.
|
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>
|
<br><br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div style="text-align: center;font-size: 10px;padding-bottom: 5px;"><i>Copyright © 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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
6
common/js/footer.js
Normal file
6
common/js/footer.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
window.addEventListener('load', setFooterDate, false);
|
||||||
|
|
||||||
|
function setFooterDate() {
|
||||||
|
let footerDate = document.getElementById("footerDate");
|
||||||
|
footerDate.textContent = new Date().getFullYear().toString();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user