Added 24w03b client and server support

This commit is contained in:
RaphiMC 2024-01-18 19:30:18 +01:00
parent ea09c668e3
commit 5d3adc8a28
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94
3 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ Using it is very simple, just run the jar file, and it will start a user interfa
For a full user guide go to the [Usage for Players](#usage-for-players-gui) section or the [Usage for Server Owners](#usage-for-server-owners-cli) section.
## Supported Server versions
- Release (1.0.0 - 1.20.4)
- Release (1.0.0 - 1.20.5)
- 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))
@ -15,7 +15,7 @@ For a full user guide go to the [Usage for Players](#usage-for-players-gui) sect
- Bedrock Edition 1.20.50 (In development)
## Supported Client versions
- Release (1.7.2 - 1.20.4)
- Release (1.7.2 - 1.20.5)
- Bedrock Edition (Needs the [Geyser plugin](https://github.com/RaphiMC/ViaProxyGeyserPlugin))
- Classic, Alpha, Beta, Release 1.0 - 1.6.4 (Only passthrough)

View File

@ -54,9 +54,9 @@ repositories {
}
dependencies {
include "com.viaversion:viaversion-common:4.10.0-23w51b-SNAPSHOT"
include "com.viaversion:viabackwards-common:4.10.0-23w51b-SNAPSHOT"
include "com.viaversion:viarewind-common:3.0.6-20240113.054016-14"
include "com.viaversion:viaversion-common:4.10.0-24w03b-SNAPSHOT"
include "com.viaversion:viabackwards-common:4.10.0-24w03a-SNAPSHOT"
include "com.viaversion:viarewind-common:3.0.6-20240114.162712-15"
include "net.raphimc:ViaLegacy:2.2.22-SNAPSHOT"
include "net.raphimc:ViaAprilFools:2.0.11-SNAPSHOT"
include("net.raphimc:ViaBedrock:0.0.4-SNAPSHOT") {

View File

@ -52,7 +52,7 @@ public abstract class MixinProtocolVersion {
remaps.put("1.19.1/2", new Pair<>("1.19.1-1.19.2", null));
remaps.put("1.20/1.20.1", new Pair<>("1.20-1.20.1", null));
remaps.put("1.20.3/1.20.4", new Pair<>("1.20.3-1.20.4", null));
remaps.put("1.20.5", new Pair<>("23w51b", null));
remaps.put("1.20.5", new Pair<>("24w03b", null));
}
@Redirect(method = "<clinit>", at = @At(value = "INVOKE", target = "Lcom/viaversion/viaversion/api/protocol/version/ProtocolVersion;register(ILjava/lang/String;)Lcom/viaversion/viaversion/api/protocol/version/ProtocolVersion;"))