From 9029109137d872b929c7c8dd2ecab83db2c640c3 Mon Sep 17 00:00:00 2001 From: zml Date: Sun, 22 Dec 2024 21:02:58 -0800 Subject: [PATCH] platform-mod: 6.2.0 --- source/conf.py | 2 +- source/platform/fabric.rst | 4 ++-- source/platform/modded.rst | 8 ++++---- source/platform/neoforge.rst | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source/conf.py b/source/conf.py index 10a55ac..f8f4530 100644 --- a/source/conf.py +++ b/source/conf.py @@ -32,7 +32,7 @@ # The latest versions of adventure-platform builds platform_version = '4.3.4' -platform_mod_version = '6.1.0' +platform_mod_version = '6.2.0' # The latest version of the ansi library ansi_version = '1.1.1' diff --git a/source/platform/fabric.rst b/source/platform/fabric.rst index 081f3a0..721c708 100644 --- a/source/platform/fabric.rst +++ b/source/platform/fabric.rst @@ -66,7 +66,7 @@ First, add the repository: :substitutions: dependencies { - modImplementation include("net.kyori:adventure-platform-fabric:|mod_version|") // for Minecraft 1.21.2-1.21.3 + modImplementation include("net.kyori:adventure-platform-fabric:|mod_version|") // for Minecraft 1.21.2-1.21.4 } @@ -77,7 +77,7 @@ First, add the repository: :substitutions: dependencies { - modImplementation(include("net.kyori:adventure-platform-fabric:|modversion|")!!) // for Minecraft 1.21.2-1.21.3 + modImplementation(include("net.kyori:adventure-platform-fabric:|modversion|")!!) // for Minecraft 1.21.2-1.21.4 } The Fabric platform requires *fabric-api-base* in order to provide the locale change event, *fabric-command-api-v2* for the callback click event, and can optionally use Colonel_ (or *fabric-networking-api-v1*) to allow the ``Component`` and ``Key`` argument types to be used on clients without the mod installed. There are no other dependencies. diff --git a/source/platform/modded.rst b/source/platform/modded.rst index a333db9..031b54b 100644 --- a/source/platform/modded.rst +++ b/source/platform/modded.rst @@ -70,10 +70,10 @@ First, add the repository: dependencies { // Loom project - modCompileOnly("net.kyori:adventure-platform-mod-shared-fabric-repack:|mod_version|") // for Minecraft 1.21.2-1.21.3 + modCompileOnly("net.kyori:adventure-platform-mod-shared-fabric-repack:|mod_version|") // for Minecraft 1.21.2-1.21.4 // NeoGradle/ModDevGradle/VanillaGradle project - compileOnly("net.kyori:adventure-platform-mod-shared:|mod_version|") // for Minecraft 1.21.2-1.21.3 + compileOnly("net.kyori:adventure-platform-mod-shared:|mod_version|") // for Minecraft 1.21.2-1.21.4 } @@ -85,10 +85,10 @@ First, add the repository: dependencies { // Loom project - modCompileOnly("net.kyori:adventure-platform-mod-shared-fabric-repack:|mod_version|") // for Minecraft 1.21.2-1.21.3 + modCompileOnly("net.kyori:adventure-platform-mod-shared-fabric-repack:|mod_version|") // for Minecraft 1.21.2-1.21.4 // NeoGradle/ModDevGradle/VanillaGradle project - compileOnly("net.kyori:adventure-platform-mod-shared:|mod_version|") // for Minecraft 1.21.2-1.21.3 + compileOnly("net.kyori:adventure-platform-mod-shared:|mod_version|") // for Minecraft 1.21.2-1.21.4 } diff --git a/source/platform/neoforge.rst b/source/platform/neoforge.rst index 8653b73..4453daa 100644 --- a/source/platform/neoforge.rst +++ b/source/platform/neoforge.rst @@ -58,7 +58,7 @@ First, add the repository: :substitutions: dependencies { - implementation jarJar("net.kyori:adventure-platform-neoforge:|mod_version|") // for Minecraft 1.21.2-1.21.3 + implementation jarJar("net.kyori:adventure-platform-neoforge:|mod_version|") // for Minecraft 1.21.2-1.21.4 } @@ -69,7 +69,7 @@ First, add the repository: :substitutions: dependencies { - implementation(jarJar("net.kyori:adventure-platform-neoforge:|mod_version|")!!) // for Minecraft 1.21.2-1.21.3 + implementation(jarJar("net.kyori:adventure-platform-neoforge:|mod_version|")!!) // for Minecraft 1.21.2-1.21.4 }