Skip to content

Commit

Permalink
1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vytskalt committed Dec 8, 2024
1 parent 30641a8 commit 774ab67
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Join the [Discord](https://discord.gg/v7nmTDTW8W) or create an issue for support

## Available Packet Adapters

- **modern.** Supports 1.17-1.21.3. Can take advantage of [Paper](https://papermc.io)'s native adventure support to be more efficient.
- **modern.** Supports 1.17-1.21.4. Can take advantage of [Paper](https://papermc.io)'s native adventure support to be more efficient.
- **legacy.** Supports 1.7.10-1.12.2.
- **PacketEvents.** Supports 1.8+. Requires [PacketEvents 2.0](https://github.com/retrooper/packetevents/tree/2.0) to be shaded or installed as a plugin.

Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
adventure = "4.17.0"
junitJupiter = "5.11.3"
devBundle = "1.21.3-R0.1-20241101.150401-13" # find latest here: https://repo.papermc.io/repository/maven-snapshots/io/papermc/paper/dev-bundle/1.21.3-R0.1-SNAPSHOT/maven-metadata.xml
devBundle = "1.21.4-R0.1-20241208.061653-9" # find latest here: https://repo.papermc.io/repository/maven-snapshots/io/papermc/paper/dev-bundle/1.21.4-R0.1-SNAPSHOT/maven-metadata.xml

[libraries]
spigotApi = "org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT" # do not update
packetEvents = "com.github.retrooper:packetevents-spigot:2.5.0"
packetEvents = "com.github.retrooper:packetevents-spigot:2.6.0"
buildIndra = { module = "net.kyori:indra-common", version = "3.1.3" }
buildNmcp = "com.gradleup.nmcp:com.gradleup.nmcp.gradle.plugin:0.0.9"

Expand All @@ -17,8 +17,8 @@ junitJupiterApi = { module = "org.junit.jupiter:junit-jupiter-api", version.ref
junitJupiterEngine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junitJupiter" }

[plugins]
kotlin = "org.jetbrains.kotlin.jvm:2.0.21"
paperweight = "io.papermc.paperweight.userdev:1.7.4"
kotlin = "org.jetbrains.kotlin.jvm:2.1.0"
paperweight = "io.papermc.paperweight.userdev:1.7.7"

[bundles]
adventure = [ "adventureApi", "adventureTextSerializerGson", "adventureTextSerializerLegacy" ]
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ private PacketAdapterLoader() {
case "1.21.1":
case "1.21.2":
case "1.21.3":
case "1.21.4":
return tryLoadImplementationClass(MODERN);
default:
// Hide from relocation checkers
Expand Down

0 comments on commit 774ab67

Please sign in to comment.