Add system update pages for super-skaterhax and seedminer

- EUR/JPN N3DS 11.14-11.15: super-skaterhax
- TWN 11.15, KOR O3DS 11.15: seedminer
This commit is contained in:
lifehackerhansol 2023-05-23 19:30:21 -07:00
parent 8705963982
commit cce3077f0b
No known key found for this signature in database
GPG key ID: 80FB184AFC0B3B0E
3 changed files with 44 additions and 5 deletions

View file

@ -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}

View file

@ -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}

View file

@ -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)";
}