Merge pull request #2178 from lilyuwuu/keyinfo2

make basic-information a mandatory page
This commit is contained in:
lily 2023-01-27 01:04:26 -08:00 committed by GitHub
commit a5f2b5aebe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 17 deletions

View file

@ -52,6 +52,9 @@ sidebar_pages:
-
title: Home
url: /
-
title: Key Information
url: key-information
-
title: Get Started
url: get-started

View file

@ -4,9 +4,6 @@ title: "Get Started"
{% include toc title="Table of Contents" %}
If this is your first time modding a 3DS and/or you're unfamiliar with technology, check out [this page](basic-information) for a quick overview of things you may want to know before starting this guide.
{: .notice--info}
Before starting this guide, we will see if custom firmware is already installed and check the current system version of your device.
#### Section I - CFW Check

View file

@ -5,8 +5,10 @@ header:
overlay_color: "#5e616c" #
overlay_image: /images/home-page-feature.jpg
overlay_filter: 0.5
cta_label: "Get Started"
cta_url: "/key-information"
caption:
excerpt: "A complete guide to 3DS custom firmware, <br /> from stock to boot9strap.<br />"
excerpt: "A complete guide to 3DS (and 2DS) custom firmware, <br /> from stock to boot9strap.<br />"
---
Thoroughly read all of the introductory pages (including this one!) before proceeding.
@ -36,5 +38,5 @@ This guide will:
___
### Continue to [Get Started](get-started)
### Continue to [Key Information](key-information)
{: .notice--primary}

View file

@ -1,24 +1,24 @@
---
title: "Basic Information"
title: "Key Information"
---
{% include toc title="Table of Contents" %}
If this is your first time modding a 3DS (or you're unfamiliar with technology), keep reading! Otherwise, if you have prior experience and know what you're doing, go back to [Get Started](get-started).
If this is your first time modding a 3DS (or you're unfamiliar with technology), keep reading! Otherwise, if you have prior experience and know what you're doing, continue to [Get Started](get-started).
{: .notice--info}
This page covers some of the base computer terminology and 3DS-specific information that you should know before following this guide.
Each section is collapsed by default. Click or tap on the name of the section to open it.
## Things about the 3DS
## Things you should know about the 3DS
{% capture compat %}
<summary><strong>3DS/2DS compatibility</strong></summary>
![]({{ "/images/screenshots/onboarding/compatible.png" | absolute_url }})
{: .notice--info}
This guide works with every retail device in the Nintendo 3DS family of consoles (including the New 3DS series and the 2DS), regardless of region or firmware.
This guide works with every retail device in the Nintendo 3DS family of consoles (including the 3DS, 3DS XL/LL, 2DS, New 3DS, New 3DS XL/LL, and New 2DS XL/LL, regardless of region or firmware.
{% endcapture %}
<details>{{ compat | markdownify }}</details>
@ -54,7 +54,7 @@ If you want, you can check your SD card for errors before following this guide u
{% capture compat %}
<summary><strong>Potential risks</strong></summary>
By modding your device , you subject it to the remote (but non-zero) possibility of the device being banned from online play or bricked (rendered non-functional). ___Incorrect file placement will NOT brick your device___, but purposely skipping instructions might. Similarly, the last ban wave occurred over five years ago, but there is no guarantee that another one will not occur in the future.
By modding your device, you subject it to the remote (but non-zero) possibility of the device being banned from online play or bricked (rendered non-functional). ___Incorrect file placement will NOT brick your device___, but purposely skipping instructions might. Similarly, the last ban wave occurred over five years ago, but there is no guarantee that another one will not occur in the future.
In short: Modding your device is safe, but it's ___your responsibility___ if something goes wrong.
@ -62,7 +62,7 @@ In short: Modding your device is safe, but it's ___your responsibility___ if som
<details>{{ compat | markdownify }}</details>
{: .notice--warning}
## Things about your computer or phone
## Things you need to do on your computer
{% capture compat %}
<summary><strong>Downloading and copying files</strong></summary>

View file

@ -180,7 +180,7 @@ $(document).ready(function() {
var sidebar_shown = true;
var sidebar_hidden_pages = ["404", "a9lh-to-b9s", "credits", "donations", "dumping-titles-and-game-cartridges",
"f3-(linux)", "f3xswift-(mac)", "faq", "file-extensions-(windows)", "get-started",
"f3-(linux)", "f3xswift-(mac)", "faq", "file-extensions-(windows)",
"godmode9-usage", "h2testw-(windows)", "region-changing", "site-navigation", "troubleshooting",
"uninstall-cfw","updating-b9s", "why-ads", "privacy-policy", "checking-for-cfw"];
@ -215,7 +215,8 @@ $(document).ready(function() {
"installing-boot9strap-(kartdlphax)": "12",
"bannerbomb3-fredtool-(twn)": "13",
"installing-boot9strap-(hbl-usm)": "14",
"installing-boot9strap-(ssloth-browser)": "15"
"installing-boot9strap-(ssloth-browser)": "15",
"key-information": "16"
};
for(var device in devices){
@ -262,7 +263,8 @@ $(document).ready(function() {
"12": ["installing-boot9strap-(kartdlphax)", "finalizing-setup"],
"13": ["seedminer", "bannerbomb3-fredtool-(twn)", "finalizing-setup"],
"14": ["seedminer", "homebrew-launcher-(pichaxx)", "installing-boot9strap-(hbl-usm)", "finalizing-setup"],
"15": ["installing-boot9strap-(ssloth-browser)", "finalizing-setup"]
"15": ["installing-boot9strap-(ssloth-browser)", "finalizing-setup"],
"16": ["multiple-options", "finalizing-setup"]
}
// Can add custom routing if necessary but currently both routes are identical
var device_old = Object.assign({}, device_common,{
@ -279,7 +281,7 @@ $(document).ready(function() {
}
unhide = unhide.concat(route[device][method]);
if(typeof unhide !== 'undefined' && unhide.length > 0){
unhide.push("home");
unhide.push("key-information")
unhide.push("get-started");
var ol = $('.sidebar.sticky .nav__list .nav__items ol');
for (var i = 0; i < unhide.length; i++){

File diff suppressed because one or more lines are too long