Merge pull request #19 from tumGER/master
Remove Payloads that only confused users and were outdatedpull/20/head
commit
9d415cfe54
|
@ -7,8 +7,5 @@ This is a port of [fusee-launcher](https://github.com/reswitched/fusee-launcher)
|
|||
# Forked
|
||||
This is also a fork of [web-fusee-launcher](https://github.com/atlas44/web-fusee-launcher), which I fixed up a bit, added hekate 5 and 4, and did some CSS stuff.
|
||||
|
||||
# Instant CFW Payload
|
||||
This site uses a payload made by me that instantly boots CFW with hekate. you can find it [here](https://github.com/ElijahZAwesome/hekate-ipl-instant-boot-edition).
|
||||
|
||||
# Try it out
|
||||
Either use a web server to host the files (must be on https, because of the fact that WebUSB is new technology and therefore has a lot of security restrictions) or you can try it [on github pages](https://elijahzawesome.github.io/web-cfw-loader/).
|
||||
|
|
|
@ -101,10 +101,6 @@
|
|||
|
||||
<div class="col-xs-6">
|
||||
<select class="pull-right" id="payloadSelect" onchange="onSelectChange()">
|
||||
<option value="instaboot" id="optionInstantV5">Instantly boot CFW (5.0.x)</option>
|
||||
<option value="instabootv4" id="optionInstantV4">Instantly boot CFW (4.x)</option>
|
||||
<option value="hekate v5" id="optionHekateV5" >Hekate for 5.0.x Switches</option>
|
||||
<option value="hekate v4" id="optionHekateV4" >Hekate for 4.0.x Switches</option>
|
||||
<option value="CTCaer_Hekate" id="optionHekateV4" >CTCaer's Hekate Mod v3.0 (All Firmwares)</option>
|
||||
<option value="fusee" id="optionFusee" >(Re)Switched test payload (fusee)</option>
|
||||
<option value="sx os" id="optionSXOS" >SX OS (All Firmwares)</option>
|
||||
|
|
16
main.js
16
main.js
|
@ -146,24 +146,12 @@ document.getElementById("goButton").addEventListener("click", async () => {
|
|||
}
|
||||
|
||||
let payload;
|
||||
if (payloadType === "hekate v5") {
|
||||
payload = hekate5;
|
||||
|
||||
} else if (payloadType === "hekate v4") {
|
||||
payload = hekate4;
|
||||
if (payloadType === "CTCaer_Hekate") {
|
||||
payload = CTCaer_Hekate;
|
||||
|
||||
} else if (payloadType === "fusee") {
|
||||
payload = fusee;
|
||||
|
||||
} else if (payloadType === "instaboot") {
|
||||
payload = instaboot;
|
||||
|
||||
} else if (payloadType === "instabootv4") {
|
||||
payload = instabootv4;
|
||||
|
||||
} else if (payloadType === "CTCaer_Hekate") {
|
||||
payload = CTCaer_Hekate;
|
||||
|
||||
} else if (payloadType === "sx os") {
|
||||
payload = sx;
|
||||
} else if (payloadType === "uploaded") {
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue