v1
This commit is contained in:
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
@@ -1,3 +0,0 @@
|
|||||||
github: dscalzi
|
|
||||||
patreon: dscalzi
|
|
||||||
custom: ['https://www.paypal.me/dscalzi']
|
|
||||||
BIN
app/assets/images/title.png
Normal file
BIN
app/assets/images/title.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
@@ -7,7 +7,7 @@ const logger = LoggerUtil.getLogger('ConfigManager')
|
|||||||
|
|
||||||
const sysRoot = process.env.APPDATA || (process.platform == 'darwin' ? process.env.HOME + '/Library/Application Support' : process.env.HOME)
|
const sysRoot = process.env.APPDATA || (process.platform == 'darwin' ? process.env.HOME + '/Library/Application Support' : process.env.HOME)
|
||||||
|
|
||||||
const dataPath = path.join(sysRoot, '.helioslauncher')
|
const dataPath = path.join(sysRoot, '.patatalauncher')
|
||||||
|
|
||||||
const launcherDir = require('@electron/remote').app.getPath('userData')
|
const launcherDir = require('@electron/remote').app.getPath('userData')
|
||||||
|
|
||||||
|
|||||||
4
app/assets/js/custom.js
Normal file
4
app/assets/js/custom.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
exports.getCustomConfig = () => {
|
||||||
|
packwizUrl: "https://patatapack.oier.ovh/pack.toml"
|
||||||
|
packwizBootstrap: "packwiz-installer-bootstrap.jar"
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@ const ConfigManager = require('./configmanager')
|
|||||||
|
|
||||||
// Old WesterosCraft url.
|
// Old WesterosCraft url.
|
||||||
// exports.REMOTE_DISTRO_URL = 'http://mc.westeroscraft.com/WesterosCraftLauncher/distribution.json'
|
// exports.REMOTE_DISTRO_URL = 'http://mc.westeroscraft.com/WesterosCraftLauncher/distribution.json'
|
||||||
exports.REMOTE_DISTRO_URL = 'https://helios-files.geekcorner.eu.org/distribution.json'
|
exports.REMOTE_DISTRO_URL = 'https://distribution.oier.ovh/distribution.json'
|
||||||
|
|
||||||
const api = new DistributionAPI(
|
const api = new DistributionAPI(
|
||||||
ConfigManager.getLauncherDirectory(),
|
ConfigManager.getLauncherDirectory(),
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ const { getMojangOS, isLibraryCompatible, mcVersionAtLeast } = require('helios-
|
|||||||
const { Type } = require('helios-distribution-types')
|
const { Type } = require('helios-distribution-types')
|
||||||
const os = require('os')
|
const os = require('os')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
const Custom = require('./custom')
|
||||||
const ConfigManager = require('./configmanager')
|
const ConfigManager = require('./configmanager')
|
||||||
|
|
||||||
const logger = LoggerUtil.getLogger('ProcessBuilder')
|
const logger = LoggerUtil.getLogger('ProcessBuilder')
|
||||||
@@ -70,10 +70,84 @@ class ProcessBuilder {
|
|||||||
//args = args.concat(this.constructModArguments(modObj.fMods))
|
//args = args.concat(this.constructModArguments(modObj.fMods))
|
||||||
args = args.concat(this.constructModList(modObj.fMods))
|
args = args.concat(this.constructModList(modObj.fMods))
|
||||||
}
|
}
|
||||||
|
/*const preLaunchArgs = [
|
||||||
|
"-jar",
|
||||||
|
Custom.getCustomConfig().packwizBootstrap,
|
||||||
|
Custom.getCustomConfig().packwizUrl
|
||||||
|
]*/
|
||||||
|
|
||||||
logger.info('Launch Arguments:', args)
|
const preLaunchArgsArray = [
|
||||||
|
// "-version"
|
||||||
|
"-jar",
|
||||||
|
//path.join(this.gameDir, "packwiz-installer-bootstrap.jar"),
|
||||||
|
"packwiz-installer-bootstrap.jar",
|
||||||
|
"https://patatapack.oier.ovh/pack/pack.toml"
|
||||||
|
]
|
||||||
|
const preLaunchArgs = [
|
||||||
|
"-jar " +
|
||||||
|
path.join(this.gameDir, "/packwiz-installer-bootstrap.jar") +
|
||||||
|
" https://patatapack.oier.ovh/pack.toml"
|
||||||
|
]
|
||||||
|
|
||||||
|
logger.info('PreLaunch Arguments:', preLaunchArgs)
|
||||||
|
logger.info('getJavaExecutable:', ConfigManager.getJavaExecutable(this.server.rawServer.id))
|
||||||
|
;
|
||||||
|
logger.info('Server RAW id:', this.server.rawServer.id)
|
||||||
|
logger.info('gamedir:', this.gameDir)
|
||||||
|
//const preLaunchChild = child_process.execSync(ConfigManager.getJavaExecutable(this.server.rawServer.id) +" " + preLaunchArgsArray.join(' '), preLaunchArgsArray, {
|
||||||
|
const preLaunchChild = child_process.spawnSync(ConfigManager.getJavaExecutable(this.server.rawServer.id), preLaunchArgsArray, {
|
||||||
|
|
||||||
|
cwd: this.gameDir,
|
||||||
|
// detached: ConfigManager.getLaunchDetached()
|
||||||
|
})
|
||||||
|
const authArgs = [
|
||||||
|
"-Dminecraft.api.env=custom",
|
||||||
|
"-Dminecraft.api.auth.host=https://auth.oier.ovh",
|
||||||
|
"-Dminecraft.api.account.host=https://auth.oier.ovh/user",
|
||||||
|
"-Dminecraft.api.session.host=https://auth.oier.ovh/api/yggdrasil",
|
||||||
|
"-Dminecraft.api.services.host=https://auth.oier.ovh/api/yggdrasil"
|
||||||
|
]
|
||||||
|
args = authArgs.concat(args)
|
||||||
|
|
||||||
|
//preLaunchChild.on('close', (preLaunchCode, preLaunchSignal) => {
|
||||||
|
//logger.info('PRELAUNCH Exited with code', preLaunchCode)
|
||||||
|
logger.info('Launch Arguments:', args)
|
||||||
|
|
||||||
|
const child = child_process.spawn(ConfigManager.getJavaExecutable(this.server.rawServer.id), args, {
|
||||||
|
cwd: this.gameDir,
|
||||||
|
detached: ConfigManager.getLaunchDetached()
|
||||||
|
})
|
||||||
|
|
||||||
|
if(ConfigManager.getLaunchDetached()){
|
||||||
|
child.unref()
|
||||||
|
}
|
||||||
|
|
||||||
|
child.stdout.setEncoding('utf8')
|
||||||
|
child.stderr.setEncoding('utf8')
|
||||||
|
|
||||||
|
child.stdout.on('data', (data) => {
|
||||||
|
data.trim().split('\n').forEach(x => console.log(`\x1b[32m[Minecraft]\x1b[0m ${x}`))
|
||||||
|
|
||||||
|
})
|
||||||
|
child.stderr.on('data', (data) => {
|
||||||
|
data.trim().split('\n').forEach(x => console.log(`\x1b[31m[Minecraft]\x1b[0m ${x}`))
|
||||||
|
})
|
||||||
|
child.on('close', (code, signal) => {
|
||||||
|
logger.info('Exited with code', code)
|
||||||
|
fs.remove(tempNativePath, (err) => {
|
||||||
|
if(err){
|
||||||
|
logger.warn('Error while deleting temp dir', err)
|
||||||
|
} else {
|
||||||
|
logger.info('Temp dir deleted successfully.')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
//return child
|
||||||
|
return child
|
||||||
|
// });
|
||||||
|
|
||||||
const child = child_process.spawn(ConfigManager.getJavaExecutable(this.server.rawServer.id), args, {
|
/* const child = child_process.spawn(ConfigManager.getJavaExecutable(this.server.rawServer.id), args, {
|
||||||
cwd: this.gameDir,
|
cwd: this.gameDir,
|
||||||
detached: ConfigManager.getLaunchDetached()
|
detached: ConfigManager.getLaunchDetached()
|
||||||
})
|
})
|
||||||
@@ -103,7 +177,7 @@ class ProcessBuilder {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
return child
|
return child */
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,15 +18,6 @@ function loginOptionsCancelEnabled(val){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
loginOptionMicrosoft.onclick = (e) => {
|
|
||||||
switchView(getCurrentView(), VIEWS.waiting, 500, 500, () => {
|
|
||||||
ipcRenderer.send(
|
|
||||||
MSFT_OPCODE.OPEN_LOGIN,
|
|
||||||
loginOptionsViewOnLoginSuccess,
|
|
||||||
loginOptionsViewOnLoginCancel
|
|
||||||
)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
loginOptionMojang.onclick = (e) => {
|
loginOptionMojang.onclick = (e) => {
|
||||||
switchView(getCurrentView(), VIEWS.login, 500, 500, () => {
|
switchView(getCurrentView(), VIEWS.login, 500, 500, () => {
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
# Custom Language File for Launcher Customizer
|
# Custom Language File for Launcher Customizer
|
||||||
|
|
||||||
[ejs.app]
|
[ejs.app]
|
||||||
title = "Helios Launcher"
|
title = "PatataLauncher"
|
||||||
|
|
||||||
[ejs.landing]
|
[ejs.landing]
|
||||||
mediaGitHubURL = "https://github.com/dscalzi/HeliosLauncher"
|
mediaGitHubURL = "#"
|
||||||
mediaTwitterURL = "#"
|
mediaTwitterURL = "#"
|
||||||
mediaInstagramURL = "#"
|
mediaInstagramURL = "#"
|
||||||
mediaYouTubeURL = "#"
|
mediaYouTubeURL = "#"
|
||||||
mediaDiscordURL = "https://discord.gg/zNWUXdt"
|
mediaDiscordURL = "#"
|
||||||
|
|
||||||
[ejs.settings]
|
[ejs.settings]
|
||||||
sourceGithubLink = "https://github.com/dscalZi/HeliosLauncher"
|
sourceGithubLink = "https://github.com/dscalZi/HeliosLauncher"
|
||||||
supportLink = "https://github.com/dscalZi/HeliosLauncher/issues"
|
supportLink = "https://github.com/dscalZi/HeliosLauncher/issues"
|
||||||
|
|
||||||
[ejs.welcome]
|
[ejs.welcome]
|
||||||
welcomeHeader = "WELCOME TO WESTEROSCRAFT"
|
welcomeHeader = "Ongi etorri Patata!"
|
||||||
welcomeDescription = "Our mission is to recreate the universe imagined by author George RR Martin in his fantasy series, A Song of Ice and Fire. Through the collaborative effort of thousands of community members, we have sought to create Westeros as accurately and precisely as possible within Minecraft. The world we are creating is yours to explore. Journey from Dorne to Castle Black, and if you aren’t afraid, beyond the Wall itself, but best not delay. As the words of House Stark ominously warn: Winter is Coming."
|
welcomeDescription = "Patata launcher."
|
||||||
welcomeDescCTA = "You are just a few clicks away from Westeros."
|
welcomeDescCTA = "Go go go"
|
||||||
|
|||||||
@@ -100,13 +100,13 @@
|
|||||||
<span id="player_count"><%- lang('landing.serverStatusPlaceholder') %></span>
|
<span id="player_count"><%- lang('landing.serverStatusPlaceholder') %></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="bot_divider"></div>
|
<div class="bot_divider"></div>
|
||||||
<div id="mojangStatusWrapper">
|
<!-- <div id="mojangStatusWrapper">
|
||||||
<span class="bot_label"><%- lang('landing.mojangStatus') %></span>
|
<span class="bot_label"><%- lang('landing.mojangStatus') %></span>
|
||||||
<span id="mojang_status_icon">•</span>
|
<span id="mojang_status_icon">•</span>
|
||||||
<div id="mojangStatusTooltip">
|
<div id="mojangStatusTooltip">
|
||||||
<div id="mojangStatusTooltipTitle"><%- lang('landing.mojangStatusTooltipTitle') %></div>
|
<div id="mojangStatusTooltipTitle"><%- lang('landing.mojangStatusTooltipTitle') %></div>
|
||||||
<div id="mojangStatusEssentialContainer">
|
<div id="mojangStatusEssentialContainer">
|
||||||
<!-- Essential Mojang services are populated here. -->
|
< !-- Essential Mojang services are populated here. -- >
|
||||||
</div>
|
</div>
|
||||||
<div id="mojangStatusNEContainer">
|
<div id="mojangStatusNEContainer">
|
||||||
<div class="mojangStatusNEBar"></div>
|
<div class="mojangStatusNEBar"></div>
|
||||||
@@ -114,10 +114,10 @@
|
|||||||
<div class="mojangStatusNEBar"></div>
|
<div class="mojangStatusNEBar"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="mojangStatusNonEssentialContainer">
|
<div id="mojangStatusNonEssentialContainer">
|
||||||
<!-- Non Essential Mojang services are populated here. -->
|
< !-- Non Essential Mojang services are populated here. -- >
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -3,17 +3,6 @@
|
|||||||
<div class="loginOptionsMainContent">
|
<div class="loginOptionsMainContent">
|
||||||
<h2><%- lang('loginOptions.loginOptionsTitle') %></h2>
|
<h2><%- lang('loginOptions.loginOptionsTitle') %></h2>
|
||||||
<div class="loginOptionActions">
|
<div class="loginOptionActions">
|
||||||
<div class="loginOptionButtonContainer">
|
|
||||||
<button id="loginOptionMicrosoft" class="loginOptionButton">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 23 23">
|
|
||||||
<path fill="#f35325" d="M1 1h10v10H1z" />
|
|
||||||
<path fill="#81bc06" d="M12 1h10v10H12z" />
|
|
||||||
<path fill="#05a6f0" d="M1 12h10v10H1z" />
|
|
||||||
<path fill="#ffba08" d="M12 12h10v10H12z" />
|
|
||||||
</svg>
|
|
||||||
<span><%- lang('loginOptions.loginWithMicrosoft') %></span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="loginOptionButtonContainer">
|
<div class="loginOptionButtonContainer">
|
||||||
<button id="loginOptionMojang" class="loginOptionButton">
|
<button id="loginOptionMojang" class="loginOptionButton">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 9.677 9.667">
|
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 9.677 9.667">
|
||||||
|
|||||||
BIN
authlib-injector-1.2.5.jar
Normal file
BIN
authlib-injector-1.2.5.jar
Normal file
Binary file not shown.
BIN
build/icon.png
BIN
build/icon.png
Binary file not shown.
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 1.5 KiB |
449
distribution.json
Normal file
449
distribution.json
Normal file
@@ -0,0 +1,449 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0.0",
|
||||||
|
"rss": "<LINK TO RSS FEED>",
|
||||||
|
"discord": {
|
||||||
|
"clientId": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"smallImageText": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"smallImageKey": "<FILL IN OR REMOVE DISCORD OBJECT>"
|
||||||
|
},
|
||||||
|
"servers": [
|
||||||
|
{
|
||||||
|
"id": "PatataPack2-1.20.1",
|
||||||
|
"name": "PatataPack2 (Minecraft 1.20.1)",
|
||||||
|
"description": "PatataPack2 Running Minecraft 1.20.1 (Forge v47.3.7)",
|
||||||
|
"icon": null,
|
||||||
|
"version": "1.0.0",
|
||||||
|
"address": "patatapack.oier.ovh:25565",
|
||||||
|
"minecraftVersion": "1.20.1",
|
||||||
|
"discord": {
|
||||||
|
"shortId": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"largeImageText": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"largeImageKey": "<FILL IN OR REMOVE DISCORD OBJECT>"
|
||||||
|
},
|
||||||
|
"mainServer": true,
|
||||||
|
"autoconnect": false,
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:lowcodelanguage:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (lowcodelanguage)",
|
||||||
|
"type": "ForgeHosted",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 7399,
|
||||||
|
"MD5": "040d351d606060d5b83fddd26e81705d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/lowcodelanguage/1.20.1-47.3.7/lowcodelanguage-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": [
|
||||||
|
{
|
||||||
|
"id": "1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (version.json)",
|
||||||
|
"type": "VersionManifest",
|
||||||
|
"artifact": {
|
||||||
|
"size": 16542,
|
||||||
|
"MD5": "9a8ba2d460c39e7af1595566ece8d136",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/versions/1.20.1-forge-47.3.7/1.20.1-forge-47.3.7.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:fmlcore:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (fmlcore)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 118686,
|
||||||
|
"MD5": "b1c804dde01878dbcf9310c3bd04eea6",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/fmlcore/1.20.1-47.3.7/fmlcore-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:javafmllanguage:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (javafmllanguage)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 16516,
|
||||||
|
"MD5": "e9db49e1ca0eee9fec499c3e9173a319",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/javafmllanguage/1.20.1-47.3.7/javafmllanguage-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:mclanguage:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (mclanguage)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 5000,
|
||||||
|
"MD5": "6b2bda8e9f9047e54d0e0d925f89cdf7",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/mclanguage/1.20.1-47.3.7/mclanguage-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:forge:1.20.1-47.3.7:universal",
|
||||||
|
"name": "Minecraft Forge (universal jar)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 2753823,
|
||||||
|
"MD5": "015c7a55def72696038352f56d741d32",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/forge/1.20.1-47.3.7/forge-1.20.1-47.3.7-universal.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:forge:1.20.1-47.3.7:client",
|
||||||
|
"name": "Minecraft Forge (client jar)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 4793821,
|
||||||
|
"MD5": "8e4fb7202d94e3336ea097a8621e8733",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/forge/1.20.1-47.3.7/forge-1.20.1-47.3.7-client.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraft:client:1.20.1-20230612.114412:srg",
|
||||||
|
"name": "Minecraft Forge (client srg)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 18842082,
|
||||||
|
"MD5": "8bfacfba4f54cda741019756165c5ecf",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraft:client:1.20.1-20230612.114412:slim",
|
||||||
|
"name": "Minecraft Forge (client slim)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 12592249,
|
||||||
|
"MD5": "28edebec7b5a007bc9961ee9bab4d764",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-slim.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraft:client:1.20.1-20230612.114412:extra",
|
||||||
|
"name": "Minecraft Forge (client extra)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 10436626,
|
||||||
|
"MD5": "da6bb1a2c23108392fd6c103da40867c",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-extra.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cpw.mods:securejarhandler:2.1.10",
|
||||||
|
"name": "Minecraft Forge (securejarhandler)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 88749,
|
||||||
|
"MD5": "d9ff48d1c68388270388b803fa42611e",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm:9.7",
|
||||||
|
"name": "Minecraft Forge (asm)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 125428,
|
||||||
|
"MD5": "3957b18bf02a62edcb6726d074b90b08",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm/9.7/asm-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-commons:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-commons)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 73426,
|
||||||
|
"MD5": "53a46610df6a8dbc4ff85b8fd4cdea66",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-tree:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-tree)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 51934,
|
||||||
|
"MD5": "ea5cad3e0cbd2520688e4b0b5c4218e7",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-util:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-util)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 93784,
|
||||||
|
"MD5": "e7d6e20888e6fd99605f4c5fe1dfa8b0",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-util/9.7/asm-util-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-analysis:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-analysis)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 34776,
|
||||||
|
"MD5": "910ac9c691023f1a9ff33c413ae9fbf6",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-analysis/9.7/asm-analysis-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:accesstransformers:8.0.4",
|
||||||
|
"name": "Minecraft Forge (accesstransformers)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 77756,
|
||||||
|
"MD5": "f0d3533f9437ba4428eaee9f28f7ecd9",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.antlr:antlr4-runtime:4.9.1",
|
||||||
|
"name": "Minecraft Forge (antlr4-runtime)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 337868,
|
||||||
|
"MD5": "0dcc4b860d5d8d2852ab94d58c56ca2d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:eventbus:6.0.5",
|
||||||
|
"name": "Minecraft Forge (eventbus)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 53985,
|
||||||
|
"MD5": "2a6245210b446b2144071e71ca13432b",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:forgespi:7.0.1",
|
||||||
|
"name": "Minecraft Forge (forgespi)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 29831,
|
||||||
|
"MD5": "bd34d20287dc95201fe9475a8bbc2540",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:coremods:5.1.6",
|
||||||
|
"name": "Minecraft Forge (coremods)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 24124,
|
||||||
|
"MD5": "4b4fe7e512819804660d621bf11c7381",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/coremods/5.1.6/coremods-5.1.6.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cpw.mods:modlauncher:10.0.9",
|
||||||
|
"name": "Minecraft Forge (modlauncher)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 130343,
|
||||||
|
"MD5": "07507d18d72661f8ae6a5da75bbf35be",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:unsafe:0.2.0",
|
||||||
|
"name": "Minecraft Forge (unsafe)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 2834,
|
||||||
|
"MD5": "2d1016ebe4c1a63dd50a59d26bd12db1",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:mergetool:1.1.5:api",
|
||||||
|
"name": "Minecraft Forge (mergetool)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 2572,
|
||||||
|
"MD5": "8df9c5bf87d004ddb884eca99bc2a4b1",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "com.electronwill.night-config:core:3.6.4",
|
||||||
|
"name": "Minecraft Forge (core)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 199834,
|
||||||
|
"MD5": "d83ab07267e402131fb93d899a57f5cd",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "com.electronwill.night-config:toml:3.6.4",
|
||||||
|
"name": "Minecraft Forge (toml)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 31816,
|
||||||
|
"MD5": "bc95d0709fff2164b01fd09fbc988be8",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.apache.maven:maven-artifact:3.8.5",
|
||||||
|
"name": "Minecraft Forge (maven-artifact)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 58077,
|
||||||
|
"MD5": "ce473b0d9fbfd10fe147f03fe8707d67",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.jodah:typetools:0.6.3",
|
||||||
|
"name": "Minecraft Forge (typetools)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 18281,
|
||||||
|
"MD5": "d4a375bf382f726cf1a650ccb38a736c",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/jodah/typetools/0.6.3/typetools-0.6.3.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecrell:terminalconsoleappender:1.2.0",
|
||||||
|
"name": "Minecraft Forge (terminalconsoleappender)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 15977,
|
||||||
|
"MD5": "679363fa893293791e55a21f81342f87",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.jline:jline-reader:3.12.1",
|
||||||
|
"name": "Minecraft Forge (jline-reader)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 150765,
|
||||||
|
"MD5": "a2e7b012cd9802f83321187409174a94",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.jline:jline-terminal:3.12.1",
|
||||||
|
"name": "Minecraft Forge (jline-terminal)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 211712,
|
||||||
|
"MD5": "3c52be5ab5e3847be6e62269de924cb0",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.spongepowered:mixin:0.8.5",
|
||||||
|
"name": "Minecraft Forge (mixin)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 1089277,
|
||||||
|
"MD5": "19b3a2ae9e445a6e626fd7d1648cfcb8",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.openjdk.nashorn:nashorn-core:15.3",
|
||||||
|
"name": "Minecraft Forge (nashorn-core)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 2167288,
|
||||||
|
"MD5": "91e98c20afa1090c344229ce28b4c53f",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:JarJarSelector:0.3.19",
|
||||||
|
"name": "Minecraft Forge (JarJarSelector)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 17374,
|
||||||
|
"MD5": "2bb6cbe0e6c6fbcd8f92d2e6b1ea678e",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:JarJarMetadata:0.3.19",
|
||||||
|
"name": "Minecraft Forge (JarJarMetadata)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 15895,
|
||||||
|
"MD5": "9633546d299d4282ca68d10582be1c8f",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cpw.mods:bootstraplauncher:1.1.2",
|
||||||
|
"name": "Minecraft Forge (bootstraplauncher)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 8284,
|
||||||
|
"MD5": "48f5255aa337344c467c0150d347813d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:JarJarFileSystems:0.3.19",
|
||||||
|
"name": "Minecraft Forge (JarJarFileSystems)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 32195,
|
||||||
|
"MD5": "c2be1a88b63eb1b58b00ab6e498cd97d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:fmlloader:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (fmlloader)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 264940,
|
||||||
|
"MD5": "23f0d0ea2c9b56938019c207363a1589",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/fmlloader/1.20.1-47.3.7/fmlloader-1.20.1-47.3.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:fmlearlydisplay:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (fmlearlydisplay)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 170425,
|
||||||
|
"MD5": "9866c86a40d79514f2fcfbf901788567",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/fmlearlydisplay/1.20.1-47.3.7/fmlearlydisplay-1.20.1-47.3.7.jar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "packwiz-installer-bootstrap.jar",
|
||||||
|
"name": "packwiz-installer-bootstrap.jar",
|
||||||
|
"type": "File",
|
||||||
|
"artifact": {
|
||||||
|
"size": 98989,
|
||||||
|
"url": "https://distribution.oier.ovh/servers/PatataPack2-1.20.1/files/packwiz-installer-bootstrap.jar",
|
||||||
|
"MD5": "51454da9ed9625bd3ca5cdc7a402b43b",
|
||||||
|
"path": "packwiz-installer-bootstrap.jar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
449
distribution_dev.json
Normal file
449
distribution_dev.json
Normal file
@@ -0,0 +1,449 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0.0",
|
||||||
|
"rss": "<LINK TO RSS FEED>",
|
||||||
|
"discord": {
|
||||||
|
"clientId": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"smallImageText": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"smallImageKey": "<FILL IN OR REMOVE DISCORD OBJECT>"
|
||||||
|
},
|
||||||
|
"servers": [
|
||||||
|
{
|
||||||
|
"id": "PatataPack2-1.20.1",
|
||||||
|
"name": "PatataPack2 (Minecraft 1.20.1)",
|
||||||
|
"description": "PatataPack2 Running Minecraft 1.20.1 (Forge v47.3.7)",
|
||||||
|
"icon": null,
|
||||||
|
"version": "1.0.0",
|
||||||
|
"address": "patatapack.oier.ovh:25565",
|
||||||
|
"minecraftVersion": "1.20.1",
|
||||||
|
"discord": {
|
||||||
|
"shortId": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"largeImageText": "<FILL IN OR REMOVE DISCORD OBJECT>",
|
||||||
|
"largeImageKey": "<FILL IN OR REMOVE DISCORD OBJECT>"
|
||||||
|
},
|
||||||
|
"mainServer": true,
|
||||||
|
"autoconnect": false,
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:lowcodelanguage:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (lowcodelanguage)",
|
||||||
|
"type": "ForgeHosted",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 7399,
|
||||||
|
"MD5": "040d351d606060d5b83fddd26e81705d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/lowcodelanguage/1.20.1-47.3.7/lowcodelanguage-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": [
|
||||||
|
{
|
||||||
|
"id": "1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (version.json)",
|
||||||
|
"type": "VersionManifest",
|
||||||
|
"artifact": {
|
||||||
|
"size": 16542,
|
||||||
|
"MD5": "9a8ba2d460c39e7af1595566ece8d136",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/versions/1.20.1-forge-47.3.7/1.20.1-forge-47.3.7.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:fmlcore:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (fmlcore)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 118686,
|
||||||
|
"MD5": "b1c804dde01878dbcf9310c3bd04eea6",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/fmlcore/1.20.1-47.3.7/fmlcore-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:javafmllanguage:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (javafmllanguage)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 16516,
|
||||||
|
"MD5": "e9db49e1ca0eee9fec499c3e9173a319",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/javafmllanguage/1.20.1-47.3.7/javafmllanguage-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:mclanguage:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (mclanguage)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": true,
|
||||||
|
"artifact": {
|
||||||
|
"size": 5000,
|
||||||
|
"MD5": "6b2bda8e9f9047e54d0e0d925f89cdf7",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/mclanguage/1.20.1-47.3.7/mclanguage-1.20.1-47.3.7.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:forge:1.20.1-47.3.7:universal",
|
||||||
|
"name": "Minecraft Forge (universal jar)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 2753823,
|
||||||
|
"MD5": "015c7a55def72696038352f56d741d32",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/forge/1.20.1-47.3.7/forge-1.20.1-47.3.7-universal.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:forge:1.20.1-47.3.7:client",
|
||||||
|
"name": "Minecraft Forge (client jar)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 4793821,
|
||||||
|
"MD5": "8e4fb7202d94e3336ea097a8621e8733",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/forge/1.20.1-47.3.7/forge-1.20.1-47.3.7-client.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraft:client:1.20.1-20230612.114412:srg",
|
||||||
|
"name": "Minecraft Forge (client srg)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 18842082,
|
||||||
|
"MD5": "8bfacfba4f54cda741019756165c5ecf",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-srg.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraft:client:1.20.1-20230612.114412:slim",
|
||||||
|
"name": "Minecraft Forge (client slim)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 12592249,
|
||||||
|
"MD5": "28edebec7b5a007bc9961ee9bab4d764",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-slim.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraft:client:1.20.1-20230612.114412:extra",
|
||||||
|
"name": "Minecraft Forge (client extra)",
|
||||||
|
"type": "Library",
|
||||||
|
"classpath": false,
|
||||||
|
"artifact": {
|
||||||
|
"size": 10436626,
|
||||||
|
"MD5": "da6bb1a2c23108392fd6c103da40867c",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraft/client/1.20.1-20230612.114412/client-1.20.1-20230612.114412-extra.jar"
|
||||||
|
},
|
||||||
|
"subModules": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cpw.mods:securejarhandler:2.1.10",
|
||||||
|
"name": "Minecraft Forge (securejarhandler)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 88749,
|
||||||
|
"MD5": "d9ff48d1c68388270388b803fa42611e",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm:9.7",
|
||||||
|
"name": "Minecraft Forge (asm)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 125428,
|
||||||
|
"MD5": "3957b18bf02a62edcb6726d074b90b08",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm/9.7/asm-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-commons:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-commons)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 73426,
|
||||||
|
"MD5": "53a46610df6a8dbc4ff85b8fd4cdea66",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-commons/9.7/asm-commons-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-tree:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-tree)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 51934,
|
||||||
|
"MD5": "ea5cad3e0cbd2520688e4b0b5c4218e7",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-tree/9.7/asm-tree-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-util:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-util)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 93784,
|
||||||
|
"MD5": "e7d6e20888e6fd99605f4c5fe1dfa8b0",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-util/9.7/asm-util-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.ow2.asm:asm-analysis:9.7",
|
||||||
|
"name": "Minecraft Forge (asm-analysis)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 34776,
|
||||||
|
"MD5": "910ac9c691023f1a9ff33c413ae9fbf6",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/ow2/asm/asm-analysis/9.7/asm-analysis-9.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:accesstransformers:8.0.4",
|
||||||
|
"name": "Minecraft Forge (accesstransformers)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 77756,
|
||||||
|
"MD5": "f0d3533f9437ba4428eaee9f28f7ecd9",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.antlr:antlr4-runtime:4.9.1",
|
||||||
|
"name": "Minecraft Forge (antlr4-runtime)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 337868,
|
||||||
|
"MD5": "0dcc4b860d5d8d2852ab94d58c56ca2d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:eventbus:6.0.5",
|
||||||
|
"name": "Minecraft Forge (eventbus)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 53985,
|
||||||
|
"MD5": "2a6245210b446b2144071e71ca13432b",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:forgespi:7.0.1",
|
||||||
|
"name": "Minecraft Forge (forgespi)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 29831,
|
||||||
|
"MD5": "bd34d20287dc95201fe9475a8bbc2540",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:coremods:5.1.6",
|
||||||
|
"name": "Minecraft Forge (coremods)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 24124,
|
||||||
|
"MD5": "4b4fe7e512819804660d621bf11c7381",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/coremods/5.1.6/coremods-5.1.6.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cpw.mods:modlauncher:10.0.9",
|
||||||
|
"name": "Minecraft Forge (modlauncher)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 130343,
|
||||||
|
"MD5": "07507d18d72661f8ae6a5da75bbf35be",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:unsafe:0.2.0",
|
||||||
|
"name": "Minecraft Forge (unsafe)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 2834,
|
||||||
|
"MD5": "2d1016ebe4c1a63dd50a59d26bd12db1",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:mergetool:1.1.5:api",
|
||||||
|
"name": "Minecraft Forge (mergetool)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 2572,
|
||||||
|
"MD5": "8df9c5bf87d004ddb884eca99bc2a4b1",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "com.electronwill.night-config:core:3.6.4",
|
||||||
|
"name": "Minecraft Forge (core)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 199834,
|
||||||
|
"MD5": "d83ab07267e402131fb93d899a57f5cd",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "com.electronwill.night-config:toml:3.6.4",
|
||||||
|
"name": "Minecraft Forge (toml)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 31816,
|
||||||
|
"MD5": "bc95d0709fff2164b01fd09fbc988be8",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.apache.maven:maven-artifact:3.8.5",
|
||||||
|
"name": "Minecraft Forge (maven-artifact)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 58077,
|
||||||
|
"MD5": "ce473b0d9fbfd10fe147f03fe8707d67",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.jodah:typetools:0.6.3",
|
||||||
|
"name": "Minecraft Forge (typetools)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 18281,
|
||||||
|
"MD5": "d4a375bf382f726cf1a650ccb38a736c",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/jodah/typetools/0.6.3/typetools-0.6.3.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecrell:terminalconsoleappender:1.2.0",
|
||||||
|
"name": "Minecraft Forge (terminalconsoleappender)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 15977,
|
||||||
|
"MD5": "679363fa893293791e55a21f81342f87",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.jline:jline-reader:3.12.1",
|
||||||
|
"name": "Minecraft Forge (jline-reader)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 150765,
|
||||||
|
"MD5": "a2e7b012cd9802f83321187409174a94",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.jline:jline-terminal:3.12.1",
|
||||||
|
"name": "Minecraft Forge (jline-terminal)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 211712,
|
||||||
|
"MD5": "3c52be5ab5e3847be6e62269de924cb0",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.spongepowered:mixin:0.8.5",
|
||||||
|
"name": "Minecraft Forge (mixin)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 1089277,
|
||||||
|
"MD5": "19b3a2ae9e445a6e626fd7d1648cfcb8",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "org.openjdk.nashorn:nashorn-core:15.3",
|
||||||
|
"name": "Minecraft Forge (nashorn-core)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 2167288,
|
||||||
|
"MD5": "91e98c20afa1090c344229ce28b4c53f",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:JarJarSelector:0.3.19",
|
||||||
|
"name": "Minecraft Forge (JarJarSelector)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 17374,
|
||||||
|
"MD5": "2bb6cbe0e6c6fbcd8f92d2e6b1ea678e",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:JarJarMetadata:0.3.19",
|
||||||
|
"name": "Minecraft Forge (JarJarMetadata)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 15895,
|
||||||
|
"MD5": "9633546d299d4282ca68d10582be1c8f",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "cpw.mods:bootstraplauncher:1.1.2",
|
||||||
|
"name": "Minecraft Forge (bootstraplauncher)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 8284,
|
||||||
|
"MD5": "48f5255aa337344c467c0150d347813d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:JarJarFileSystems:0.3.19",
|
||||||
|
"name": "Minecraft Forge (JarJarFileSystems)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 32195,
|
||||||
|
"MD5": "c2be1a88b63eb1b58b00ab6e498cd97d",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:fmlloader:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (fmlloader)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 264940,
|
||||||
|
"MD5": "23f0d0ea2c9b56938019c207363a1589",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/fmlloader/1.20.1-47.3.7/fmlloader-1.20.1-47.3.7.jar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "net.minecraftforge:fmlearlydisplay:1.20.1-47.3.7",
|
||||||
|
"name": "Minecraft Forge (fmlearlydisplay)",
|
||||||
|
"type": "Library",
|
||||||
|
"artifact": {
|
||||||
|
"size": 170425,
|
||||||
|
"MD5": "9866c86a40d79514f2fcfbf901788567",
|
||||||
|
"url": "https://distribution.oier.ovh/repo/lib/net/minecraftforge/fmlearlydisplay/1.20.1-47.3.7/fmlearlydisplay-1.20.1-47.3.7.jar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "packwiz-installer-bootstrap.jar",
|
||||||
|
"name": "packwiz-installer-bootstrap.jar",
|
||||||
|
"type": "File",
|
||||||
|
"artifact": {
|
||||||
|
"size": 98989,
|
||||||
|
"url": "https://distribution.oier.ovh/servers/PatataPack2-1.20.1/files/packwiz-installer-bootstrap.jar",
|
||||||
|
"MD5": "51454da9ed9625bd3ca5cdc7a402b43b",
|
||||||
|
"path": "packwiz-installer-bootstrap.jar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
appId: 'helioslauncher'
|
appId: 'patatalauncher'
|
||||||
productName: 'Helios Launcher'
|
productName: 'PatataLauncher'
|
||||||
artifactName: '${productName}-setup-${version}.${ext}'
|
artifactName: '${productName}-${version}.${ext}'
|
||||||
|
|
||||||
copyright: 'Copyright © 2018-2024 Daniel Scalzi'
|
copyright: 'Copyleft 2024 Daniel Scalzi'
|
||||||
|
|
||||||
asar: true
|
asar: true
|
||||||
compression: 'maximum'
|
compression: 'maximum'
|
||||||
|
|||||||
9752
package-lock.json
generated
9752
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "helioslauncher",
|
"name": "patatalauncher",
|
||||||
"version": "2.2.1",
|
"version": "1.0.0",
|
||||||
"productName": "Helios Launcher",
|
"productName": "Helios Launcher",
|
||||||
"description": "Modded Minecraft Launcher",
|
"description": "Modded Minecraft Launcher",
|
||||||
"author": "Daniel Scalzi (https://github.com/dscalzi/)",
|
"author": "Daniel Scalzi (https://github.com/dscalzi/)",
|
||||||
@@ -17,7 +17,8 @@
|
|||||||
"dist:win": "npm run dist -- -w",
|
"dist:win": "npm run dist -- -w",
|
||||||
"dist:mac": "npm run dist -- -m",
|
"dist:mac": "npm run dist -- -m",
|
||||||
"dist:linux": "npm run dist -- -l",
|
"dist:linux": "npm run dist -- -l",
|
||||||
"lint": "eslint --config .eslintrc.json ."
|
"lint": "eslint --config .eslintrc.json .",
|
||||||
|
"postinstall": "patch-package"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "20.x.x"
|
"node": "20.x.x"
|
||||||
@@ -36,6 +37,7 @@
|
|||||||
"helios-distribution-types": "^1.3.0",
|
"helios-distribution-types": "^1.3.0",
|
||||||
"jquery": "^3.7.1",
|
"jquery": "^3.7.1",
|
||||||
"lodash.merge": "^4.6.2",
|
"lodash.merge": "^4.6.2",
|
||||||
|
"patch-package": "^8.0.0",
|
||||||
"semver": "^7.6.0",
|
"semver": "^7.6.0",
|
||||||
"toml": "^3.0.0"
|
"toml": "^3.0.0"
|
||||||
},
|
},
|
||||||
|
|||||||
26
patches/helios-core+2.2.1.patch
Normal file
26
patches/helios-core+2.2.1.patch
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
diff --git a/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.d.ts b/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.d.ts
|
||||||
|
index 49f2b19..cf661ce 100644
|
||||||
|
--- a/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.d.ts
|
||||||
|
+++ b/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.d.ts
|
||||||
|
@@ -44,7 +44,7 @@ export interface UpptimeSummary {
|
||||||
|
export declare class MojangRestAPI {
|
||||||
|
private static readonly logger;
|
||||||
|
private static readonly TIMEOUT;
|
||||||
|
- static readonly AUTH_ENDPOINT = "https://authserver.mojang.com";
|
||||||
|
+ static readonly AUTH_ENDPOINT = "https://auth.oier.ovh/api/yggdrasil/authserver";
|
||||||
|
static readonly STATUS_ENDPOINT = "https://raw.githubusercontent.com/AventiumSoftworks/helios-status-page/master/history/summary.json";
|
||||||
|
private static authClient;
|
||||||
|
private static statusClient;
|
||||||
|
diff --git a/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.js b/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.js
|
||||||
|
index 3fbc718..ba38f57 100644
|
||||||
|
--- a/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.js
|
||||||
|
+++ b/node_modules/helios-core/dist/mojang/rest/MojangRestAPI.js
|
||||||
|
@@ -38,7 +38,7 @@ var MojangStatusColor;
|
||||||
|
class MojangRestAPI {
|
||||||
|
static logger = LoggerUtil_1.LoggerUtil.getLogger('Mojang');
|
||||||
|
static TIMEOUT = 2500;
|
||||||
|
- static AUTH_ENDPOINT = 'https://authserver.mojang.com';
|
||||||
|
+ static AUTH_ENDPOINT = 'https://auth.oier.ovh/api/yggdrasil/authserver';
|
||||||
|
static STATUS_ENDPOINT = 'https://raw.githubusercontent.com/AventiumSoftworks/helios-status-page/master/history/summary.json';
|
||||||
|
static authClient = got_1.default.extend({
|
||||||
|
prefixUrl: MojangRestAPI.AUTH_ENDPOINT,
|
||||||
Reference in New Issue
Block a user