From 9003b9e3b5fb7d54923ebb36f5e0629fa353fe7c Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Tue, 23 May 2023 06:57:28 -0700 Subject: [PATCH] get-started: 11.17 E/J can use super-skaterhax --- _pages/en_US/homebrew-launcher-(super-skaterhax).txt | 2 +- assets/js/selecting.js | 12 +++--------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/_pages/en_US/homebrew-launcher-(super-skaterhax).txt b/_pages/en_US/homebrew-launcher-(super-skaterhax).txt index c2d2d34348..776414a624 100644 --- a/_pages/en_US/homebrew-launcher-(super-skaterhax).txt +++ b/_pages/en_US/homebrew-launcher-(super-skaterhax).txt @@ -14,7 +14,7 @@ For technical details on the exploits that you will be using on this page, see [ ### Compatibility Notes -Super-skaterhax (when used to launch the Homebrew Launcher) is compatible with New models on version 11.16.0 in all regions except TWN/CHN. +Super-skaterhax (when used to launch the Homebrew Launcher) is compatible with New models on version 11.16.0 in all regions, and 11.17.0 in the EUR and JPN regions. The instructions provided only apply to the New 3DS, New 3DS XL, and New 2DS XL. Please ensure that the device you are modding is a New 3DS, New 3DS XL, or New 2DS XL before continuing. {: .notice--warning} diff --git a/assets/js/selecting.js b/assets/js/selecting.js index 3d858f7301..fc4852ce91 100644 --- a/assets/js/selecting.js +++ b/assets/js/selecting.js @@ -89,9 +89,6 @@ function redirect() { else if (major.value == 0) { document.getElementById("result_invalidVersion").style.display = "block"; } - else if (major.value == 11 && minor.value == 17) { - document.getElementById("result_methodUnavailable").style.display = "block"; - } // only do things if major isnt 0, which would be invalid else { // USA/EUR/JPN things @@ -107,16 +104,13 @@ 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)"; - } - */ // 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"; } + else if (major.value == 11 && minor.value == 17 && isN3DS && region.value != "U") { + window.location.href = "homebrew-launcher-(super-skaterhax)"; + } else { document.getElementById("result_methodUnavailable").style.display = "block"; }