3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-01 21:18:02 +02:00
Datei suchen
FlorianMichael 6714f8c7d2 Change ComponentUtil#jsonToLegacy validation to match Vanilla
MC 1.14 validates both lore and display name properly when reading it, this doesn't matter for ViaVersion where the server doesn't send a json and we build it (and the client never sends invalid data to us). But it is important for ViaBackwards to handle invalid sent json properly like MC does.
2024-06-02 21:19:39 +02:00
.github Replace other Bungee references 2024-05-30 21:55:10 +02:00
.idea Update API license headers and scope 2024-01-12 10:21:45 +01:00
api Fix trim pattern 2024-05-31 15:17:04 +02:00
build-logic Include website url in plugin.yml (#3897) 2024-05-31 09:40:12 +02:00
bukkit Remove bungee options from config.yml (#3898) 2024-06-01 20:37:38 +02:00
bukkit-legacy Rename Position to BlockPosition 2024-05-21 13:05:15 +02:00
common Change ComponentUtil#jsonToLegacy validation to match Vanilla 2024-06-02 21:19:39 +02:00
compat Move PS compatibility to an addon 2024-05-14 18:54:24 +02:00
fabric Update authors 2024-04-07 20:41:44 +02:00
gradle Update Gradle wrapper 2024-06-01 16:59:26 +02:00
licenses Update license headers 2024-01-01 12:39:45 +01:00
template Apply IJ code reformat, rename rewriter methods, change metadata references to entity data 2024-05-14 20:55:33 +02:00
universal Update publication metadata 2024-05-30 22:37:20 +02:00
velocity Remove bungee options from config.yml (#3898) 2024-06-01 20:37:38 +02:00
.editorconfig Apply IJ code reformat, rename rewriter methods, change metadata references to entity data 2024-05-14 20:55:33 +02:00
.gitignore 4.2.0 Release 2022-02-24 09:22:47 +01:00
build.gradle.kts Move Bungee and Sponge platforms to separate plugins 2024-05-30 21:52:34 +02:00
gradle.properties Update publication metadata 2024-05-30 22:37:20 +02:00
gradlew Update Gradle wrapper 2024-06-01 16:59:26 +02:00
gradlew.bat Update Gradle wrapper 2024-06-01 16:59:26 +02:00
LICENSE Split parts of common into api; We are now GPL, api is MIT 2021-03-24 14:02:37 +01:00
README.md Replace other Bungee references 2024-05-30 21:55:10 +02:00
settings.gradle.kts Move Bungee and Sponge platforms to separate plugins 2024-05-30 21:52:34 +02:00

ViaVersion

Latest Release Build Status Discord

Allows the connection of higher client versions to lower server versions - it works on any platform you can think of.

The base ViaVersion jar runs on Paper and Velocity. We also have projects integrating ViaVersion to run on Fabric, Forge, Bungee, Sponge, or as a standalone proxy to join from basically any client version on any server version from the past decade. See HERE for an overview of the different Via* projects.

Supported Versions:

Table (https://i.imgur.com/sTrVnC2.png)

User Docs: https://docs.viaversion.com/display/VIAVERSION/

Releases/Dev Builds

You can find official releases in the following places:

Dev builds for all of our projects are on our Jenkins server:

ViaVersion as a Dependency

JavaDocs: https://jd.viaversion.com

Maven:

<repository>
    <id>viaversion-repo</id>
    <url>https://repo.viaversion.com</url>
</repository>
<dependency>
    <groupId>com.viaversion</groupId>
    <artifactId>viaversion-api</artifactId>
    <version>[5.0.0,6.0.0)</version>
    <scope>provided</scope>
</dependency>

Gradle:

repositories {
    maven("https://repo.viaversion.com")
}

dependencies {
    compileOnly("com.viaversion:viaversion-api:VERSION") // Replace the version
}

If you need access to the existing protocol or platform implementations, use the parent artifact viaversion. Please note the differences in licensing.

Building

After cloning this repository, build the project with Gradle by running ./gradlew build and take the created jar out of the build/libs directory.

You need JDK 17 or newer to build ViaVersion.

Mapping Files

Mapping files are generated and managed in our Mappings repository.

Resources

License

The entirety of the API directory (including the legacy API directory) is licensed under the MIT License; see licenses/MIT.md for details.

Everything else, unless explicitly stated otherwise, is licensed under the GNU General Public License v3, including the end-product as a whole; see licenses/GPL.md for details.

Special thanks to all our Contributors.