Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/hangar-description.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ the normal plugin setup does not require a backend Geyser installation.
For more routing features and the connector that receives the most frequent
updates, consider the [Gate connector](https://connect.minekube.com/guide/connectors/).

## Requirements

- **Minecraft 1.13+** on Paper/Spigot (and supported proxy versions on Velocity and
BungeeCord) — the declared `api-version` floor and the first version whose servers
ship the Netty 4.1+ the plugin's bundled Netty (4.2.x, unrelocated) requires.
Servers 1.8–1.11 ship Netty 4.0.x, where the packet listener injection fails with
`AbstractMethodError` (missing `newChild` implementation).
- **Java 17+** to run the plugin.

## Quick start

1. Download the jar for your platform and place it in the server or proxy
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ low latency edge proxies network nearest to you.

Please refer to https://connect.minekube.com for more documentation.

## Requirements

- **Minecraft 1.13 or newer** — the declared `api-version` floor in `plugin.yml`, and
the version from which servers ship the Netty 4.1+ the plugin's bundled Netty (4.2.x,
unrelocated) requires. Servers 1.8–1.11 ship Netty 4.0.x, where the packet listener
injection fails with `AbstractMethodError` (missing `newChild` implementation) and the
plugin disables itself.
- **Java 17 or newer** — the plugin is compiled for Java 17; older server JVMs
(Java 8/11, typical for Minecraft ≤1.12 servers) cannot load it.

## Integrating with login / auth plugins

Connect authenticates players at the edge, so login plugins that force online mode on a
Expand Down
Loading