mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2025-02-07 00:01:40 +01:00
Added 1.20.3 client and server support
This commit is contained in:
parent
b9e4b6cb75
commit
a1fa52e2f4
10
README.md
10
README.md
@ -6,16 +6,16 @@ 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
|
||||
- Classic (c0.0.15 - c0.30 including [CPE](https://wiki.vg/Classic_Protocol_Extension))
|
||||
- Alpha (a1.0.15 - a1.2.6)
|
||||
- Release (1.0.0 - 1.20.3)
|
||||
- Beta (b1.0 - b1.8.1)
|
||||
- Release (1.0.0 - 1.20.2)
|
||||
- Alpha (a1.0.15 - a1.2.6)
|
||||
- Classic (c0.0.15 - c0.30 including [CPE](https://wiki.vg/Classic_Protocol_Extension))
|
||||
- April Fools (3D Shareware, 20w14infinite)
|
||||
- Combat Snapshots (Combat Test 8c)
|
||||
- Bedrock Edition 1.20.40 (In development)
|
||||
- Bedrock Edition 1.20.50 (In development)
|
||||
|
||||
## Supported Client versions
|
||||
- Release (1.7.2 - 1.20.2)
|
||||
- Release (1.7.2 - 1.20.3)
|
||||
- Bedrock Edition (Needs the [Geyser plugin](https://github.com/RaphiMC/ViaProxyGeyserPlugin))
|
||||
- Classic, Alpha, Beta, Release 1.0 - 1.6.4 (Only passthrough)
|
||||
|
||||
|
10
build.gradle
10
build.gradle
@ -53,13 +53,13 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
include "com.viaversion:viaversion-common:4.9.0-1.20.3-rc1-SNAPSHOT"
|
||||
include "com.viaversion:viabackwards-common:4.9.0-1.20.3-rc1-SNAPSHOT"
|
||||
include "com.viaversion:viarewind-common:3.0.4-SNAPSHOT"
|
||||
include "com.viaversion:viaversion-common:4.9.1"
|
||||
include "com.viaversion:viabackwards-common:4.9.0"
|
||||
include "com.viaversion:viarewind-common:3.0.5"
|
||||
include("net.raphimc:ViaLegacy:2.2.21-SNAPSHOT") {
|
||||
exclude group: "net.lenni0451.mcstructs", module: "text"
|
||||
}
|
||||
include "net.raphimc:ViaAprilFools:2.0.10-SNAPSHOT"
|
||||
include "net.raphimc:ViaAprilFools:2.0.10"
|
||||
include("net.raphimc:ViaBedrock:0.0.3-SNAPSHOT") {
|
||||
exclude group: "io.netty"
|
||||
exclude group: "io.jsonwebtoken"
|
||||
@ -88,7 +88,7 @@ dependencies {
|
||||
include("net.lenni0451:MCPing:1.3.0") {
|
||||
exclude group: "com.google.code.gson", module: "gson"
|
||||
}
|
||||
include("net.raphimc.netminecraft:all:2.3.7-SNAPSHOT") {
|
||||
include("net.raphimc.netminecraft:all:2.3.7") {
|
||||
exclude group: "com.google.code.gson", module: "gson"
|
||||
}
|
||||
include("net.raphimc:MinecraftAuth:3.0.0") {
|
||||
|
@ -51,7 +51,6 @@ public abstract class MixinProtocolVersion {
|
||||
remaps.put("1.18/1.18.1", new Pair<>("1.18-1.18.1", null));
|
||||
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", new Pair<>("1.20.3-rc1", 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;"))
|
||||
|
Loading…
Reference in New Issue
Block a user