You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
let dropdown = document.getElementById("dropdown")
|
|
let downloads = document.getElementById("dl")
|
|
let versionObject64 = {
|
|
"Infdev": {
|
|
"Infdev 20100227 (Maxxx)": {
|
|
"v1": "./mods/64bit/infdev/inf-20100227/minecraft-inf-20100227-v1-maxxx.zip",
|
|
},
|
|
"Infdev 20100313 (RVH)": {
|
|
// Todo: add notes system
|
|
"v0.0.1": "./mods/64bit/infdev/inf-20100313/inf313_long_0.0.1.zip",
|
|
"v0.0.2": "./mods/64bit/infdev/inf-20100313/inf313_long_0.0.2.zip",
|
|
"v0.0.3": "./mods/64bit/infdev/inf-20100313/inf313_long_0.0.3.zip"
|
|
},
|
|
"Infdev 20100325 (Maxxx)": {
|
|
|
|
},
|
|
"Infdev 20100330 (Zero)": {
|
|
|
|
},
|
|
"Infdev 20100414 (314rft)": {
|
|
|
|
},
|
|
"Infdev 20100420 (314rft, Zero)": {
|
|
|
|
},
|
|
"Infdev 20100624 (314rft)": {
|
|
|
|
},
|
|
},
|
|
"Alpha": {
|
|
"Alpha v1.0.1_01 (Zeta and Zero)": {
|
|
"0.0.3_02": "./mods/64bit/alpha/a1.0.1_01/minecraft-a1.0.1_01-64bit_v0.0.3_02-zero-and-zeta.zip",
|
|
},
|
|
}
|
|
}
|
|
dropdown.onchange = () => {
|
|
dl.hidden = false;
|
|
for (let val in versionObject64[this.value]) {
|
|
dl.options[dl.options.length] = new Option(val, val);
|
|
}
|
|
}
|
|
window.onload = () => {
|
|
|
|
}
|
|
let button = document.getElementById("button64")
|
|
button.addEventListener(execute)
|
|
|
|
function execute() {
|
|
|
|
} |