Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 21 additions & 12 deletions docs/_internal/consoleVersionSelect.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
<table id="modeltable" class="modeltable">
<thead>
<th><div align="center">Old 3DS/2DS</div></th>
<th><div align="center">New 3DS/2DS</div></th>
<tr>
<th><div style="text-align:center">Old 3DS/2DS</div></th>
<th><div style="text-align:center">New 3DS/2DS</div></th>
</tr>
</thead>
<tbody>
<td> <img class="tableimage" src="/images/old3ds.png" alt="old 3DS"> <img class="tableimage" src="/images/old3dsxl.png" alt="old 3DS"> <img class="tableimage" src="/images/2ds.png" alt="old 3DS"><br><br><input type="radio" name="checkbox" id="old3DS"></td>
<td> <img class="tableimage" src="/images/new3ds.png" alt="old 3DS"> <img class="tableimage" src="/images/new3dsxl.png" alt="old 3DS"> <img class="tableimage" src="/images/new2dsxl.png" alt="old 3DS"><br><br><input type="radio" name="checkbox" id="new3DS"></td>
<tr>
<td><img class="tableimage" src="/images/old3ds.png" alt="Old 3DS"> <img class="tableimage" src="/images/old3dsxl.png" alt="Old 3DS XL"> <img class="tableimage" src="/images/2ds.png" alt="Old 2DS"><br><br><input type="radio" name="checkbox" id="old3DS"></td>
<td><img class="tableimage" src="/images/new3ds.png" alt="New 3DS"> <img class="tableimage" src="/images/new3dsxl.png" alt="New 3DS XL"> <img class="tableimage" src="/images/new2dsxl.png" alt="New 2DS XL"><br><br><input type="radio" name="checkbox" id="new3DS"></td>
</tr>
</tbody>
</table>
<div id="selectversion" class="selectversion">
<br>
<select id="prefix">
<option />
<option></option>
<option>Ver.</option>
<option>Sys.</option>
<option>Emu.</option>
<option>{{ $frontmatter.otherPrefix }}</option>
</select>&nbsp;<select id="major">
<option />
<option></option>
<option>11</option>
<option>10</option>
<option>9</option>
Expand All @@ -31,7 +35,7 @@
<option>1</option>
<option>0</option>
</select>.<select id="minor">
<option />
<option></option>
<option>17</option>
<option>16</option>
<option>15</option>
Expand All @@ -51,10 +55,10 @@
<option>1</option>
<option>0</option>
</select>.<select id="whydidnintendodecidetodothingslikethis">
<option />
<option></option>
<option>0</option>
</select>-<select id="nver">
<option />
<option></option>
<option>50</option>
<option>49</option>
<option>48</option>
Expand Down Expand Up @@ -107,7 +111,7 @@
<option>1</option>
<option>0</option>
</select><select id="region">
<option />
<option></option>
<option>E</option>
<option>U</option>
<option>J</option>
Expand All @@ -119,7 +123,12 @@
<input type="button" onclick="redirect()" value="Confirm">
</div>

<p id="result_noneSelected" style="display:none">{{ $frontmatter.noneSelected }}</p>
<p id="result_invalidVersion" style="display:none">{{ $frontmatter.invalidVersion }}</p>
<div class="custom-block danger" id="result_noneSelected" style="display:none">{{ $frontmatter.noneSelected }}</div>
<div class="custom-block danger" id="result_invalidVersion" style="display:none">{{ $frontmatter.invalidVersion }}</div>
<div class="custom-block danger" id="result_cfwPrefixDetected" style="display:none">
Your console may already have custom firmware installed. Please retry Section I. If you still only reach the HOME menu, click the link below and ask, in English, for assistance.
<br>
<a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>
</div>

<noscript>Please enable JavaScript to continue with the guide.</noscript>
2 changes: 2 additions & 0 deletions docs/get-started.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
noneSelected: System model is required.
invalidVersion: This doesn't seem to be a valid system version.
cfwPrefixDetected: Your console may already have custom firmware installed. Please retry Section I. If you still only reach the HOME menu, click the link below and ask, in English, for assistance.
inviteLinkText: Nintendo Homebrew on Discord
otherPrefix: (Other)
head: [
['script', {src: '/assets/js/common.js'}],
Expand Down
4 changes: 2 additions & 2 deletions docs/public/assets/js/selecting.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2023 Gruetzig
Copyright (C) 2023 Nintendo Homebrew
Copyright (C) 2025 Nintendo Homebrew

SPDX-License-Identifier: MIT
*/
Expand Down Expand Up @@ -180,7 +180,7 @@ function redirect() {
sessionStorage.setItem("selected_version", JSON.stringify({major, minor, nver, region, model}));

if(prefix != "Ver.") {
window.location.href = "checking-for-cfw";
document.getElementById("result_cfwPrefixDetected").style.display = "block";
return true;
}

Expand Down