diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-08-02 17:43:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-02 17:43:50 +0900 |
| commit | 45c29405be5169e088023aa01cde50467f3eabed (patch) | |
| tree | 7a5ef472546694d939535a9f1d6d1fb4cbc15f5e /website/.vitepress | |
| parent | c2575cc3089819e3cd877c743b78f11bc9131e79 (diff) | |
| download | LunaticChat-45c29405be5169e088023aa01cde50467f3eabed.tar.gz LunaticChat-45c29405be5169e088023aa01cde50467f3eabed.tar.bz2 LunaticChat-45c29405be5169e088023aa01cde50467f3eabed.zip | |
feat: support Paper 26.2 (Minecraft 26.2)
Paper 26.2 bundles Adventure 5.2.0, a major bump from the 4.26.1 shipped by 26.1.
Adventure 5 makes ClickEvent generic, so the raw type in
CommandContext.replyWithEvent no longer compiled. Auditing the rest of the
Adventure 5 removals found no other affected usage.
api-version is raised to 26.2, dropping 26.1 support: the two Adventure majors
are not binary compatible, so claiming 26.1 compatibility would be a lie.
Also fixes two problems found while verifying on a real server: the Velocity
healthcheck invoked mc-health, which does not exist in the mc-proxy image, so the
container had never once passed its check; and the debug environments pinned no
build at all, which meant the proxy came up as 4.1.0-SNAPSHOT while the plugin is
compiled against velocity-api 3.5.1. Server versions are now derived by x from
the Gradle coordinates so they cannot drift from what the plugin targets.
Diffstat (limited to 'website/.vitepress')
| -rw-r--r-- | website/.vitepress/theme/components/DownloadCard.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/.vitepress/theme/components/DownloadCard.vue b/website/.vitepress/theme/components/DownloadCard.vue index 6c16470..af54d10 100644 --- a/website/.vitepress/theme/components/DownloadCard.vue +++ b/website/.vitepress/theme/components/DownloadCard.vue @@ -14,7 +14,7 @@ const t = computed(() => description: 'Download the latest releases of LunaticChat.', requirements: 'Requirements', javaReq: '25 or later', - paperReq: '26.1.x or later', + paperReq: '26.2.x or later', velocityReq: '3.5.x or later', noRelease: 'No release', releaseDate: 'Release date', @@ -44,7 +44,7 @@ const t = computed(() => description: 'LunaticChat の最新リリースをダウンロードできます。', requirements: '動作要件', javaReq: '25 以降', - paperReq: '26.1.x 以降', + paperReq: '26.2.x 以降', velocityReq: '3.5.x 以降', noRelease: 'リリースなし', releaseDate: 'リリース日', |
