ViaVersion fork with the 26.2 -> 26.3-pre-2 protocol (ekaii), branch ekaii-26.3-pre2
Find a file
ekaii 3bab72d59e 26.3-pre-2: light bit sets as byte arrays, chat filter mask, mapped chunk palette width, pot_decorations templates
- level_chunk_with_light / light_update: the four light masks are byte arrays since 26.3 (BitSet.toByteArray), converted from/to the long array form
- player_chat partially filtered mask likewise
- BlockRewriter gets a mapped chunk type supplier so the global palette is 15/16 bit on the right side
- pot_decorations is four optional item stack templates in 26.3 (PotDecorations26_3, versioned key), converted from/to the item id list
2026-09-06 22:40:09 +02:00
.claude [ci skip] Add agents.md file 2026-04-26 15:17:03 +02:00
.github [ci skip] Build script updates 2026-08-23 15:10:06 +02:00
.idea Update API license headers and scope 2024-01-12 10:21:45 +01:00
api 26.3-pre-2: light bit sets as byte arrays, chat filter mask, mapped chunk palette width, pot_decorations templates 2026-09-06 22:40:09 +02:00
build-logic Update deps 2026-08-12 21:50:16 +02:00
bukkit Move a bunch of protocol storables to direct array lookups 2026-08-05 16:57:54 +02:00
bukkit-legacy Make tests fail if error occurs during platform 2026-03-30 20:40:26 +02:00
common 26.3-pre-2: light bit sets as byte arrays, chat filter mask, mapped chunk palette width, pot_decorations templates 2026-09-06 22:40:09 +02:00
gradle [ci skip] Build script updates 2026-08-23 15:10:06 +02:00
licenses [ci skip] Update missing year references (#4786) 2026-04-02 11:56:51 +02:00
universal Build script cleanup 2026-07-15 13:12:58 +02:00
velocity Update supported Velocity versions 2026-01-31 12:02:24 +01:00
.editorconfig Use enhanced switches in more places (#4043) 2024-07-24 14:32:36 +02:00
.gitignore Handle nested identifiers in item hover events 2026-07-23 15:23:33 +02:00
AGENTS.md [ci skip] Add agents.md file 2026-04-26 15:17:03 +02:00
build.gradle.kts Build script cleanup 2026-07-15 13:12:58 +02:00
gradle.properties 26.3-pre-2: protocol boilerplate for 26.2->26.3-pre-2 (snapshot 1073742158) 2026-09-06 21:37:27 +02:00
gradlew [ci skip] Update deps 2026-07-09 18:14:18 +02:00
gradlew.bat [ci skip] Update deps 2026-07-09 18:14:18 +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 [ci skip] Update README (#4856) 2026-03-21 19:07:32 +01:00
SECURITY.md [ci skip] Add SECURITY.md (#4520) 2025-06-29 15:36:49 +02:00
settings.gradle.kts Build script cleanup 2026-07-15 13:12:58 +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.

Note that ViaVersion will be able to run best on either Paper servers or through ViaFabricPlus due to having direct access to client/server state and more extensive API.

Supported Versions:

Table (https://ci.viaversion.com/userContent/images/T.png)

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

Snapshot support

ViaVersion will only be released a few days after a Minecraft update unless the protocol changes of the update were trivial. If you want early-access, usually days or even weeks before the final release, you can subscribe to either:

  • GitHub Sponsors ( preferred option. Use the /verify command on this Discord after), or alternatively
  • Patreon (see the highest tier and make sure to link Patreon to your Discord account under Settings->Connections) This also includes access to a private repository with the code, which will be pushed to the public repository after the given delay on a Minecraft update.

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.

Note: If you want to make your own platform implementation of ViaVersion (and additional addons), take a look at the documentation.

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. The generated mapping output is stored here.

Resources

License

The entirety of the 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.