Перейти к содержимому
Mineforgian

TrueUUID

TrueUUID lets premium and offline-mode Minecraft players play together on the same server. Premium players keep their real Minecraft UUID and skin, while offline players can still join normally.

Загрузки
23K
Подписчики
13
Обновлён
23 июля 2026 г.
Лицензия
LGPL-3.0-only

Опубликован 7 сентября 2025 г.

TrueUUID

English | 简体中文

TrueUUID adds account verification to modded Minecraft servers that run in offline mode. A premium player's access token stays on their own computer; the server receives only the login proof needed to verify their UUID and skin.

The same TrueUUID JAR must be installed on the client and server. Always choose the JAR made for your exact Minecraft version and loader.

[!IMPORTANT] Version 1.2.0 publishes only the 36 exact targets approved in the target matrix. Omitted Minecraft patches are not implicitly supported.

Quick start

  1. Download or build the JAR for your exact loader and Minecraft version.

  2. Put that same JAR in the client's and server's mods folders.

  3. Set the server to offline mode:

    online-mode=false
    
  4. Start the server once to generate the TrueUUID configuration.

  5. Join with a matching modded client. The HUD shows green for a verified premium login and red when the server accepts offline fallback.

Do not expose a development server created by run-dev-target.sh to the internet. It deliberately binds to localhost and uses offline mode for testing.

What TrueUUID does

  • Verifies Mojang sessions without sending the player's access token to the server.
  • Uses the verified UUID, username casing, and signed skin properties during login.
  • Can allow offline players while blocking offline reuse of names that were previously verified.
  • Stores known verified names in trueuuid-registry.json.
  • Shows localized login feedback and a small premium/offline status badge.
  • Supports bounded login timeouts, response limits, HTTPS validation, public address checks, and redirect refusal.
  • Supports configured Yggdrasil/authlib-injector services on adapters that list that feature in the target matrix.

All 36 currently declared adapters include offline-to-verified data migration, admin commands, and the addon API. Every exact target passed the premium, offline fallback, confirmed migration, and known-name denial installed-JAR matrix. Consult the target matrix instead of assuming every implemented feature or an omitted adjacent Minecraft patch was exercised.

How login verification works

  1. The offline-mode server sends the client a one-time login challenge.
  2. The client uses its local session to answer the challenge through Mojang's joinServer call. Its access token never leaves the client.
  3. The server checks the result with Mojang's hasJoined endpoint.
  4. A successful login receives the verified UUID and signed skin properties.
  5. A failed or timed-out check is either rejected or handled by the configured offline-fallback policy.

For an allowed Yggdrasil provider, the same flow uses its HTTPS session endpoint. Custom endpoints are disabled until their host is explicitly allowlisted.

Installation

Server

  1. Install the loader and Minecraft version matching the TrueUUID filename.
  2. Copy the JAR into the server's mods directory.
  3. Set online-mode=false in server.properties.
  4. Keep the server behind a firewall while configuring and testing it.

Prism Launcher

  1. Open the instance matching the JAR's Minecraft version and loader.
  2. Select EditModsAdd file.
  3. Select the built TrueUUID JAR from the target's build/libs directory.
  4. Install the same JAR on the server.

Do not use a Forge JAR in NeoForge, or a JAR built for another Minecraft patch. For Fabric, use the remapped JAR in build/libs, never the development JAR in build/devlibs.

Configuration

Forge and NeoForge generate:

config/trueuuid-common.toml

Fabric generates:

config/trueuuid.json

Forge and NeoForge use the TOML keys below. Fabric stores the matching login policy settings in the JSON auth object; the target matrix lists any adapter-specific gaps.

The main policy options are:

auth.timeoutMs = 30000
auth.allowOfflineOnTimeout = false
auth.allowOfflineOnFailure = true
auth.knownPremiumDenyOffline = true
auth.allowOfflineForUnknownOnly = true
auth.recentIpGrace.enabled = true
auth.recentIpGrace.ttlSeconds = 10
auth.showJoinFeedback = true
auth.showJoinTitle = false
auth.showAccountOverlay = true

The recommended defaults allow an unknown offline name but stop that name from falling back to offline mode after it has completed a verified login.

All three loaders can position the account badge. Forge and NeoForge use TOML; Fabric uses the matching keys inside the JSON auth object:

auth.overlayCorner = "bottom_right"
auth.overlayOffsetX = 0
auth.overlayOffsetY = 0
auth.overlayScale = 1.25

For Yggdrasil/authlib-injector providers, add only hosts you trust:

auth.yggdrasil.apiRootWhitelist = ["littleskin.cn"]

An empty allowlist keeps Mojang as the only accepted session service.

Migration and admin commands

TrueUUID can back up and move same-name offline player data to a verified UUID. Migration requires confirmation and preserves both the old offline data and any existing destination data before changing files.

Available admin commands:

/trueuuid cleanupuuid <name>
/trueuuid migrateuuid <name>

Both commands require permission level 4. The target matrix identifies which adapters currently include migration.

Addon API

The server-side API exposes cn.alini.trueuuid.api.TrueuuidApi. Other mods can query whether a player joined as premium or through offline fallback:

AccountStatus status = TrueuuidApi.getStatus(serverPlayer);
if (status.isOffline()) {
    // Apply your server's offline-player policy.
}

The API also provides a login callback and access to the verified-name registry. Check the target matrix before depending on it.

Build one JAR for Prism Launcher

Gradle must be launched with Java 21 for every target. Java 17 targets are still compiled and run with their declared Java 17 toolchain automatically.

On Linux, from the repository checkout:

cd ~/TrueUUID
export JAVA_HOME=/usr/lib/jvm/java-21-openjdk-amd64
export PATH="$JAVA_HOME/bin:$PATH"

TARGET=neoforge-1.21.11
./scripts/ci/build-target.sh "$TARGET"

The Prism-ready JAR is then:

platform/neoforge-1.21.11/build/libs/trueuuid-1.2.0-neoforge-1.21.11.jar

Change TARGET to any ID in release/targets.json, for example:

forge-1.20.1
forge-1.21.6
forge-1.21.8
fabric-1.20.1
fabric-1.20.2
fabric-1.20.4
fabric-1.20.6
fabric-1.21.1
fabric-1.21.3
fabric-1.21.4
fabric-1.21.5
fabric-1.21.6
fabric-1.21.8
fabric-1.21.10
fabric-1.21.11
neoforge-1.20.4
neoforge-1.21.11

List every available target with:

jq -r '.targets[].id' release/targets.json

On Windows PowerShell, with Java 21 selected:

.\gradlew.bat :platform:neoforge-1.21.11:build --no-daemon
# Forge 1.21.11 is the standalone Gradle 9.5 target:
.\platform\forge-1.21.11\gradlew.bat -p platform/forge-1.21.11 build --no-daemon

To build every target instead:

./scripts/ci/build-all-targets.sh

Each finished production JAR is written to:

platform/<loader>-<minecraft-version>/build/libs/

For local client/server development runs, see local runtime testing.

Privacy and security

  • The player's access token stays on the client.
  • The server receives a nonce result, UUID, username, and signed profile properties—not the token.
  • Custom authentication endpoints must use HTTPS and pass the configured host, DNS/IP, timeout, response-size, and redirect checks.
  • Offline fallback is a server policy. Keep known-name protection enabled on shared servers.

License

TrueUUID is licensed under the GNU LGPL 3.0.

The original TrueUUID lock badge textures are Copyright (C) 2026 F1xGOD and are distributed with the project under the same GNU LGPL 3.0 license.

Maintained by @YuWan-030, @wish131400, and @F1xGOD.

Ченджлог

1.2.0+forge-1.21.6Релиз1.21.6 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+fabric-1.21.8Релиз1.21.8 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+fabric-1.21.1Релиз1.21.1 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+neoforge-1.20.6Релиз1.20.6 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+forge-1.21.8Релиз1.21.8 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+forge-1.20.1Релиз1.20.1 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+neoforge-1.21.10Релиз1.21.10 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。
1.2.0+fabric-1.21.6Релиз1.21.6 · 23 июля 2026 г.

English

TrueUUID 1.2.0 is a major cross-loader update since 1.1.2. It expands the previous Forge 1.20.1 and NeoForge 1.21.1 release to 36 exact builds across Forge, Fabric, and NeoForge.

Highlights

  • Added Fabric support and expanded Forge and NeoForge coverage across Minecraft 1.20.1, 1.20.2, 1.20.4, 1.20.6, 1.21.1, 1.21.3, 1.21.4, 1.21.5, 1.21.6, 1.21.8, 1.21.10, and 1.21.11. Each JAR targets one exact loader and Minecraft version.
  • Added a localized account-status badge for Premium, Offline, Singleplayer, and Premium (LAN): it appears briefly in the HUD, fades after three seconds, and remains as the same lock-and-label badge in the pause menu. Private singleplayer now emits one status message; opening the world to LAN changes the chat and badge once to Premium (LAN).
  • Added one private server-confirmed join result for the joining player, structured login audit logs, and optional operator-only notifications (off by default).
  • Added the public, loader-neutral TrueuuidApi for addons to query account state, register login callbacks, and inspect protected verified names.
  • Hardened Mojang/Yggdrasil verification, offline fallback, verified-name protection, migration handling, timeouts, and short same-IP reconnect grace.
  • Fixed the profile-property handling that could leave Fabric 1.21.10 and 1.21.11 stuck on the negotiating screen, and repaired Forge 1.20.1 production Mixin packaging.
  • Consolidated shared status timing, artwork, presentation, notification routing, and loader runtime behavior so version modules contain only narrow API-era seams.
  • All 36 release targets passed build and packaging checks plus premium login, offline fallback, confirmed migration, and known-name denial acceptance tests. GitHub, Modrinth, and CurseForge publish the same tested JARs and this exact changelog.

中文

TrueUUID 1.2.0 是自 1.1.2 以来的一次重要跨加载器更新。支持范围从原有的 Forge 1.20.1 和 NeoForge 1.21.1 扩展到 Forge、Fabric 与 NeoForge 的 36 个精确构建。

主要更新

  • 新增 Fabric 支持,并将 Forge 与 NeoForge 扩展到 Minecraft 1.20.1、1.20.2、1.20.4、1.20.6、1.21.1、1.21.3、1.21.4、1.21.5、1.21.6、1.21.8、1.21.10 和 1.21.11。每个 JAR 仅对应一个加载器和 Minecraft 版本。
  • 新增正版、离线、单人模式与正版(局域网)的本地化账号状态徽章:在 HUD 中短暂显示,三秒后淡出,并在暂停菜单中持续显示相同的锁图标和文字。私有单人世界只提示一次;开放至局域网后,聊天与徽章会切换一次到正版(局域网)。
  • 加入玩家仅收到一次服务器确认结果;服务器记录结构化登录审计,并可选择仅向管理员发送通知(默认关闭)。
  • 新增跨加载器公开 TrueuuidApi,供附加模组查询账号状态、注册登录回调并检查受保护的已验证名称。
  • 加强 Mojang/Yggdrasil 验证、离线回退、已验证名称保护、迁移处理、超时控制和短时间同 IP 重连宽限。
  • 修复可能导致 Fabric 1.21.10 和 1.21.11 卡在“正在协商”界面的 profile 属性处理问题,并修复 Forge 1.20.1 生产 JAR 的 Mixin 打包。
  • 统一了状态计时、图案、显示信息、通知路由与加载器运行逻辑,各版本模块只保留必要的 API 时代适配层。
  • 全部 36 个发布目标均通过构建和打包检查,以及正版登录、离线回退、确认迁移和已验证名称拒绝验收。GitHub、Modrinth 与 CurseForge 将发布同一批已测试 JAR 和这份完全一致的更新日志。

Комментарии

Загружаем…