2023-02-24 21:02:18 -05:00
|
|
|
const { DistributionAPI } = require('helios-core/common')
|
2018-07-22 11:40:15 -04:00
|
|
|
|
|
|
|
const ConfigManager = require('./configmanager')
|
2022-12-24 22:17:30 -05:00
|
|
|
|
2023-03-20 21:24:56 -04:00
|
|
|
// Old WesterosCraft url.
|
|
|
|
// exports.REMOTE_DISTRO_URL = 'http://mc.westeroscraft.com/WesterosCraftLauncher/distribution.json'
|
|
|
|
exports.REMOTE_DISTRO_URL = 'https://helios-files.geekcorner.eu.org/distribution.json'
|
2018-07-22 11:40:15 -04:00
|
|
|
|
2023-02-24 21:02:18 -05:00
|
|
|
const api = new DistributionAPI(
|
|
|
|
ConfigManager.getLauncherDirectory(),
|
2023-02-25 03:28:40 -05:00
|
|
|
null, // Injected forcefully by the preloader.
|
|
|
|
null, // Injected forcefully by the preloader.
|
2023-02-24 21:02:18 -05:00
|
|
|
exports.REMOTE_DISTRO_URL,
|
|
|
|
false
|
|
|
|
)
|
2018-07-22 11:40:15 -04:00
|
|
|
|
2023-02-24 21:02:18 -05:00
|
|
|
exports.DistroAPI = api
|