Changed version string

This commit is contained in:
Nan1t 2020-11-28 18:56:09 +02:00
parent cc251c17e2
commit b4b40d36e0
2 changed files with 14 additions and 3 deletions

View File

@ -40,6 +40,17 @@ The installation process is simple.
I recommend you to set parameter `debugLevel` to `0` when you finish testing server and run it into production. I recommend you to set parameter `debugLevel` to `0` when you finish testing server and run it into production.
This will disable some useless for production information in the console. This will disable some useless for production information in the console.
### About player info forwarding
The server supports player info forwarding from the proxy. There are two type of info forwarding:
* LEGACY - The BungeeCord IP forwarding
* MODERN - Velocity native info forwarding type
If you use **BungeeCord**, or Velocity with LEGACY forwarding, just set this type in the config.
If you use **Velocity** with modern info forwarding, set this type and paste secret key from Velocity
config into `secret` field.
### Contributing ### Contributing
You can create pull request, if you found some bug, optimization ability, or you wanna add some functional, You can create pull request, if you found some bug, optimization ability, or you wanna add some functional,

View File

@ -4,7 +4,7 @@ plugins {
} }
group 'ru.nanit' group 'ru.nanit'
version '1.1' version '1.2'
repositories { repositories {
mavenCentral() mavenCentral()
@ -12,9 +12,9 @@ repositories {
dependencies { dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.yaml', name: 'snakeyaml', version: '1.27'
compile files('libs/napi-configurate-yaml-1.0.jar') compile files('libs/napi-configurate-yaml-1.0.jar')
compile "io.netty:netty-handler:4.1.54.Final" compile group: 'org.yaml', name: 'snakeyaml', version: '1.27'
compile group: 'io.netty', name: 'netty-handler', version: '4.1.54.Final'
compile group: 'net.kyori', name: 'adventure-nbt', version: '4.1.1' compile group: 'net.kyori', name: 'adventure-nbt', version: '4.1.1'
} }