Skip to content

Commit

Permalink
Release 3.5.3
Browse files Browse the repository at this point in the history
Added support for joining 1.21.4 servers
  • Loading branch information
FlorianMichael committed Dec 6, 2024
1 parent 1cf4373 commit 0012083
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ legacy combat mechanics, movement, and rendering changes to make the gameplay fe
If you need ViaFabricPlus for older versions of the game, you can use [ViaFabric](https://viaversion.com/fabric)

## Supported Server versions
- Release (1.0.0 - 1.21.3)
- Release (1.0.0 - 1.21.4)
- Beta (b1.0 - b1.8.1)
- Alpha (a1.0.15 - a1.2.6)
- Classic (c0.0.15 - c0.30 including [CPE](https://wiki.vg/Classic_Protocol_Extension))
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ dependencies {

modCompileOnly "com.terraformersmc:modmenu:12.0.0"

jij "com.viaversion:viaversion-common:5.1.2-SNAPSHOT"
jij "com.viaversion:viabackwards-common:5.1.2-SNAPSHOT"
jij "net.raphimc:viaaprilfools-common:3.0.5-SNAPSHOT"
jij "net.raphimc:ViaLegacy:3.0.6-SNAPSHOT"
jij ("net.raphimc:ViaBedrock:0.0.13-SNAPSHOT") {
jij "com.viaversion:viaversion-common:5.2.0"
jij "com.viaversion:viabackwards-common:5.2.0"
jij "net.raphimc:viaaprilfools-common:3.0.4"
jij "net.raphimc:ViaLegacy:3.0.6"
jij ("net.raphimc:ViaBedrock:0.0.14-20241206.155528-1") {
exclude group: "io.jsonwebtoken"
exclude group: "com.mojang", module: "brigadier"
}
jij ("net.raphimc:ViaLoader:3.0.5-SNAPSHOT") {
jij ("net.raphimc:ViaLoader:3.0.4") {
exclude group: "com.google.guava", module: "guava"
exclude group: "org.slf4j", module: "slf4j-api"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.parallel=true
# Project Details
maven_group=de.florianmichael
maven_name=ViaFabricPlus
maven_version=3.5.3-SNAPSHOT
maven_version=3.5.3
maven_description=Fabric mod to connect to EVERY Minecraft server version (Release, Beta, Alpha, Classic, Snapshots, Bedrock) with QoL fixes to the gameplay

# Minecraft/Fabric
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class ResourcePackHeaderDiff {
private final static Map<ProtocolVersion, GameVersion> GAME_VERSION_DIFF = new HashMap<>();

static {
registerVersion(ProtocolVersion.v1_21_4, 46, "1.21.4");
registerVersion(ProtocolVersion.v1_21_2, 42, "1.21.3");
registerVersion(ProtocolVersion.v1_21, 34, "1.21.1");
registerVersion(ProtocolVersion.v1_20_5, 32, "1.20.6");
Expand Down

0 comments on commit 0012083

Please sign in to comment.