Skip to content

Commit

Permalink
platform-mod: 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Dec 23, 2024
1 parent 5a5fe47 commit 9029109
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions source/platform/fabric.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions source/platform/modded.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
Expand Down
4 changes: 2 additions & 2 deletions source/platform/neoforge.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
Expand Down

0 comments on commit 9029109

Please sign in to comment.