update 2.0.2

This commit is contained in:
AMIAY
2026-01-19 23:15:29 +01:00
parent 300616ba82
commit 21f8527ed4
24 changed files with 3376 additions and 346 deletions

View File

@@ -7,16 +7,27 @@ const {
loadUsername,
saveChatUsername,
loadChatUsername,
saveChatColor,
loadChatColor,
saveJavaPath,
loadJavaPath,
saveInstallPath,
loadInstallPath,
saveDiscordRPC,
loadDiscordRPC,
saveModsToConfig,
loadModsFromConfig,
getUuidForUser,
isFirstLaunch,
markAsLaunched,
CONFIG_FILE
CONFIG_FILE,
// UUID Management
getCurrentUuid,
getAllUuidMappings,
setUuidForUser,
generateNewUuid,
deleteUuidForUser,
resetCurrentUserUuid
} = require('./core/config');
const { getResolvedAppDir, getModsPath } = require('./core/paths');
@@ -37,8 +48,6 @@ const {
const { getJavaDetection } = require('./managers/javaManager');
const { checkAndInstallMultiClient } = require('./managers/multiClientManager');
const {
downloadAndReplaceHomePageUI,
findHomePageUIPath,
@@ -85,6 +94,8 @@ module.exports = {
loadUsername,
saveChatUsername,
loadChatUsername,
saveChatColor,
loadChatColor,
getUuidForUser,
// Java configuration functions
@@ -96,6 +107,10 @@ module.exports = {
saveInstallPath,
loadInstallPath,
// Discord RPC functions
saveDiscordRPC,
loadDiscordRPC,
// Version functions
getInstalledClientVersion,
getLatestClientVersion,
@@ -106,8 +121,13 @@ module.exports = {
// Player ID functions
getOrCreatePlayerId,
// Multi-client functions
checkAndInstallMultiClient,
// UUID Management functions
getCurrentUuid,
getAllUuidMappings,
setUuidForUser,
generateNewUuid,
deleteUuidForUser,
resetCurrentUserUuid,
// Mod management functions
getModsPath,