update readme and viaversion to 3.1.0

This commit is contained in:
creeper123123321 2020-08-11 13:57:06 -03:00
parent 94e8eee976
commit 2969605ad7
2 changed files with 17 additions and 17 deletions

View File

@ -18,8 +18,8 @@ Note: ViaVersion is designed for Vanilla Minecraft servers. It probably will not
**1.14+ Dependencies:** **1.14+ Dependencies:**
| Dependency | Download | | Dependency | Download |
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | | ----------------------------------------- | ------------------------------------------------------------------------------------------ |
| (Bundled outdated 3.1.0-1.16.2-pre3 ``-DEV`` CI build) ViaVersion 3.0.2+ | https://ci.viaversion.com/job/ViaVersion/ or https://ci.viaversion.com/job/ViaVersion-DEV/ | | (Bundled 3.1.0 release) ViaVersion 3.0.2+ | https://ci.viaversion.com/job/ViaVersion/ or https://ci.viaversion.com/job/ViaVersion-DEV/ |
| (Bundled) Cotton Client Commands | https://www.curseforge.com/minecraft/mc-mods/cotton-client-commands | | (Bundled) Cotton Client Commands | https://www.curseforge.com/minecraft/mc-mods/cotton-client-commands |
| Fabric Command API v1 | https://www.curseforge.com/minecraft/mc-mods/fabric-api | | Fabric Command API v1 | https://www.curseforge.com/minecraft/mc-mods/fabric-api |
| Fabric Resource Loader v0 | https://www.curseforge.com/minecraft/mc-mods/fabric-api | | Fabric Resource Loader v0 | https://www.curseforge.com/minecraft/mc-mods/fabric-api |
@ -29,8 +29,8 @@ Note: ViaVersion is designed for Vanilla Minecraft servers. It probably will not
**1.8.9 Dependencies:** **1.8.9 Dependencies:**
| Dependency | Download | | Dependency | Download |
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | | ----------------------------------------- | ------------------------------------------------------------------------------------------ |
| (Bundled outdated 3.1.0-1.16.2-pre3 ``-DEV`` CI build) ViaVersion 3.0.2+ | https://ci.viaversion.com/job/ViaVersion/ or https://ci.viaversion.com/job/ViaVersion-DEV/ | | (Bundled 3.1.0 release) ViaVersion 3.0.2+ | https://ci.viaversion.com/job/ViaVersion/ or https://ci.viaversion.com/job/ViaVersion-DEV/ |
| Fabric Commands v0 | https://www.curseforge.com/minecraft/mc-mods/legacy-fabric-api | | Fabric Commands v0 | https://www.curseforge.com/minecraft/mc-mods/legacy-fabric-api |
| Fabric Resource Loader v0 | https://www.curseforge.com/minecraft/mc-mods/legacy-fabric-api | | Fabric Resource Loader v0 | https://www.curseforge.com/minecraft/mc-mods/legacy-fabric-api |
@ -91,10 +91,10 @@ Adding [ViaBackwards](https://viaversion.com/backwards) (and optionally [ViaRewi
**Does it work with multiconnect at same time on client?:** **Does it work with multiconnect at same time on client?:**
- Yes, ViaFabric can be used with multiconnect. ViaFabric will send to their version auto detector their closest supported version. - Yes, ViaFabric can be used with multiconnect. ViaFabric will send to their version auto detector their closest supported version. (multiconnect beta-supported versions (currently 1.10) aren't used)
- Example of setups: - Example of setups:
- (1.8 server) <-> (disabled ViaFabric) <-> (auto detected 1.8 server - multiconnect) = doesn't work because multiconnect doesn't support it - (1.8 server) <-> (disabled ViaFabric) <-> (auto detected 1.8 server - multiconnect) = doesn't work because multiconnect doesn't support it
- (1.8 server) <-> (forced 1.8 - ViaFabric - suggests 1.10) <-> (detected 1.10 server - multiconnect) = works, ViaVersion translating 1.8 -> 1.10 and multiconnect accepting 1.10 - (1.8 server) <-> (forced 1.8 - ViaFabric - suggests 1.11) <-> (detected 1.11 server - multiconnect) = works, ViaVersion translating 1.8 -> 1.11 and multiconnect accepting 1.11
- (1.8 server) <-> (forced 1.8 - ViaFabric - detected 1.12.2 client) <-> (forced 1.12.2 server - multiconnect) = works, ViaVersion translating 1.8 -> 1.12.2 and multiconnect accepting 1.12.2 - (1.8 server) <-> (forced 1.8 - ViaFabric - detected 1.12.2 client) <-> (forced 1.12.2 server - multiconnect) = works, ViaVersion translating 1.8 -> 1.12.2 and multiconnect accepting 1.12.2
## WARNING ## WARNING

View File

@ -58,8 +58,8 @@ tasks.named<ProcessResources>("processResources") {
dependencies { dependencies {
// transitive = false because Guava is conflicting on runClient // transitive = false because Guava is conflicting on runClient
implementation("us.myles:viaversion:3.1.0-1.16.2-pre3") { isTransitive = false } implementation("us.myles:viaversion:3.1.0") { isTransitive = false }
include("us.myles:viaversion:3.1.0-1.16.2-pre3") include("us.myles:viaversion:3.1.0")
include("org.yaml:snakeyaml:1.26") include("org.yaml:snakeyaml:1.26")
// Use 1.16 snapshot, probably intermediary will make it work on further versions // Use 1.16 snapshot, probably intermediary will make it work on further versions