Skip to content
Open
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
10 changes: 6 additions & 4 deletions src/content/docs/adventure/platform/modded.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ As with the rest of the Adventure projects, releases are distributed on Maven Ce
```kotlin title="build.gradle.kts" replace
repositories {
// for development builds
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") {
name = "sonatype-oss-snapshots1"
maven(url = "https://central.sonatype.com/repository/maven-snapshots/") {
name = "central-snapshots"
mavenContent { snapshotsOnly() }
}
// for releases
Expand All @@ -52,8 +52,8 @@ As with the rest of the Adventure projects, releases are distributed on Maven Ce
repositories {
// for development builds
maven {
name = 'sonatype-oss-snapshots1'
url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
name = 'central-snapshots'
url = 'https://central.sonatype.com/repository/maven-snapshots/'
mavenContent { snapshotsOnly() }
}
// for releases
Expand Down Expand Up @@ -81,6 +81,8 @@ Each major Minecraft release will require different platform versions. For older

| Minecraft Version | Adventure version | `adventure-platform-(mod-shared/fabric/neoforge)` version |
|-------------------|-------------------|-----------------------------------------------------------|
| 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 |
| 1.21-1.21.1 | 4.17.0 | 6.0.0 |

Expand Down
2 changes: 1 addition & 1 deletion src/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ export const LATEST_ADVENTURE_SUPPORTED_MC = "1.21.9";
export const LATEST_ADVENTURE_SUPPORTED_MC_RANGE = LATEST_ADVENTURE_SUPPORTED_MC;
export const LATEST_ADVENTURE_API_RELEASE = "4.25.0";
export const LATEST_ADVENTURE_PLATFORM_RELEASE = "4.4.1";
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.5.1";
export const LATEST_ADVENTURE_PLATFORM_MOD_RELEASE = "6.7.0";
export const LATEST_ANSI_RELEASE = "1.1.1";