Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/content/docs/adventure/platform/modded.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,17 @@ Adventure facilities this through the `net.kyori:adventure-platform-mod-shared`
A second variant, `net.kyori:adventure-platform-mod-shared-fabric-repack`, is also published. This variant should be used
when your common code is managed by `fabric-loom`.

If you are building a Fabric-only or NeoForge-only mod, or do not care to use the platform API in shared code,
then you don't need to use this artifact explicitly. This is because both platforms depend on it transitively.
:::caution[Note]
These artifacts are for the common module on multi-platform mods. For specific platforms, take a look at the
[Fabric](/adventure/platform/fabric) or [NeoForge](/adventure/platform/neoforge) pages. If you are building a
Fabric-only or NeoForge-only mod, or do not care to use the platform API in shared code, then you don't need to use
this artifact explicitly. This is because both platforms depend on it transitively.
:::

As with the rest of the Adventure projects, releases are distributed on Maven Central, and snapshots on Sonatype OSS:



<Tabs syncKey="build-system">
<TabItem label="Gradle (Kotlin)">
```kotlin title="build.gradle.kts" replace
Expand Down Expand Up @@ -81,6 +87,7 @@ Each major Minecraft release will require different platform versions. For older

| Minecraft Version | Adventure version | `adventure-platform-(mod-shared/fabric/neoforge)` version |
|-------------------|-------------------|-----------------------------------------------------------|
| 1.21.9-1.21.10 | 4.25.0 | 6.7.0 |
| 1.21.6-1.21.8 | 4.24.0 | 6.6.0 |
| 1.21.5 | 4.21.0 | 6.4.0 |
| 1.21.2-1.21.4 | 4.20.0 | 6.3.0 |
Expand Down
6 changes: 3 additions & 3 deletions src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ const userdevVersions: string[] = await fetchGitHubTags("PaperMC/paperweight");

export const LATEST_USERDEV_RELEASE = userdevVersions[0];

export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.9";
export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.11";
export const LATEST_ADVENTURE_SUPPORTED_MC_RANGE = LATEST_ADVENTURE_SUPPORTED_MC;
export const LATEST_ADVENTURE_API_RELEASE = "4.25.0";
export const LATEST_ADVENTURE_API_RELEASE = "4.26.1";
export const LATEST_ADVENTURE_PLATFORM_RELEASE = "4.4.1";
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.7.0";
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.8.0";
export const LATEST_ANSI_RELEASE = "1.1.1";