diff --git a/_pages/en_US/updating-firmware-(kor-twn).md b/_pages/en_US/updating-firmware-(kor-twn).md new file mode 100644 index 0000000000..74a2b48f90 --- /dev/null +++ b/_pages/en_US/updating-firmware-(kor-twn).md @@ -0,0 +1,18 @@ +--- +title: "Updating Firmware (KOR/TWN)" +--- + +### Required Reading + +To use the Seedminer exploit, you must update your device to the latest system version. + +### What you need + +* An internet connection on your device + +#### Section I - Updating the System + +{% include_relative include/sysupdate.txt cfw="false" %} + +Continue to [Seedminer](seedminer) +{: .notice--primary} diff --git a/_pages/en_US/updating-firmware-(new-3ds).md b/_pages/en_US/updating-firmware-(new-3ds).md new file mode 100644 index 0000000000..5366fdd3b9 --- /dev/null +++ b/_pages/en_US/updating-firmware-(new-3ds).md @@ -0,0 +1,18 @@ +--- +title: "Updating Firmware (New 3DS)" +--- + +### Required Reading + +To use the super-skaterhax exploit, you must update your device to the latest system version. + +### What you need + +* An internet connection on your device + +#### Section I - Updating the System + +{% include_relative include/sysupdate.txt cfw="false" %} + +Continue to [Homebrew Launcher (super-skaterhax)](homebrew-launcher-(super-skaterhax)) +{: .notice--primary} diff --git a/assets/js/selecting.js b/assets/js/selecting.js index fc4852ce91..4be3e6d633 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -104,6 +104,9 @@ function redirect() { else if (minor.value < 15 && isO3DS) { window.location.href = "installing-boot9strap-(safecerthax)"; } + else if(isN3DS && region.value != "U" && (minor.value == 14 || minor.value == 15)) { + window.location.href = "updating-firmware-(new-3ds)"; + } // seedminer does still work for the latest version on E/U/J/K/T/C, but can only be chained on E/U/J/K/T else if (major.value == 11 && minor.value == 16) { window.location.href = "seedminer"; @@ -128,12 +131,9 @@ function redirect() { else if (minor.value < 15 && isO3DS) { window.location.href = "installing-boot9strap-(safecerthax)"; } - // new browserhax for latest version - /* - else if (isN3DS) { - window.location.href = "homebrew-launcher-(super-skaterhax)"; + else if(minor.value == 15) { + window.location.href = "updating-firmware-(kor-twn)"; } - */ // seedminer does still work for the latest version on E/U/J/K/T/C, but can only be chained on E/U/J/K/T else if (major.value == 11 && minor.value == 16) { window.location.href = "seedminer"; @@ -158,6 +158,9 @@ function redirect() { else if (minor.value < 15 && isO3DS) { window.location.href = "installing-boot9strap-(safecerthax)"; } + else if(minor.value == 15) { + window.location.href = "updating-firmware-(kor-twn)"; + } else if (major.value == 11 && minor.value == 16) { //seedminer does still work for the latest version on E/U/J/K/T/C, but can only be chained on E/U/J/K/T window.location.href = "seedminer-(twn)"; }