From de4f5e32ddb342aff29162a1ac8dff858e4ef914 Mon Sep 17 00:00:00 2001 From: Leymooo Date: Mon, 24 Jun 2019 19:37:17 +0300 Subject: [PATCH 1/4] 1.14.3 --- README.md | 2 +- .../java/com/velocitypowered/api/network/ProtocolVersion.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad509b865..c518f6537 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Velocity is currently in beta. Production networks are successfully running Velocity with many hundreds of concurrent players online, but your mileage may vary. -Velocity supports Minecraft 1.8-1.14.3-pre4. Velocity is best supported with Paper +Velocity supports Minecraft 1.8-1.14.3. Velocity is best supported with Paper and SpongeVanilla. Minecraft Forge is fully supported but mod compatibility may vary. Generally, Velocity will support many mods better than BungeeCord or Waterfall do but compatibility can not always be ensured. diff --git a/api/src/main/java/com/velocitypowered/api/network/ProtocolVersion.java b/api/src/main/java/com/velocitypowered/api/network/ProtocolVersion.java index e51325cc5..7b096f194 100644 --- a/api/src/main/java/com/velocitypowered/api/network/ProtocolVersion.java +++ b/api/src/main/java/com/velocitypowered/api/network/ProtocolVersion.java @@ -30,7 +30,7 @@ public enum ProtocolVersion { MINECRAFT_1_14(477, "1.14"), MINECRAFT_1_14_1(480, "1.14.1"), MINECRAFT_1_14_2(485, "1.14.2"), - MINECRAFT_1_14_3(489, "1.14.3-pre4"); + MINECRAFT_1_14_3(490, "1.14.3"); private final int protocol; private final String name; From 904e39b73a720b3a2d473f236fafeec9f562533f Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Mon, 24 Jun 2019 21:37:45 -0400 Subject: [PATCH 2/4] Velocity 1.0.1 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e6e3ed09a..30c1e5687 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { allprojects { group 'com.velocitypowered' - version '1.0.1-SNAPSHOT' + version '1.0.1' sourceCompatibility = 1.8 targetCompatibility = 1.8 From a8684ddec55e6fd72f2745d884bcff2a5b19aa8d Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Mon, 24 Jun 2019 21:38:06 -0400 Subject: [PATCH 3/4] Bump to 1.0.2-SNAPSHOT for continued development --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 30c1e5687..5b96ec9d3 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { allprojects { group 'com.velocitypowered' - version '1.0.1' + version '1.0.2-SNAPSHOT' sourceCompatibility = 1.8 targetCompatibility = 1.8 From 226074a0df40d8989278cdd4fbff6439b20f6236 Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Sat, 29 Jun 2019 14:35:28 -0400 Subject: [PATCH 4/4] Add suggestion for reconnecting for "not online-mode" message --- .../com/velocitypowered/proxy/util/VelocityMessages.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/util/VelocityMessages.java b/proxy/src/main/java/com/velocitypowered/proxy/util/VelocityMessages.java index f88defb22..1a4d29337 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/util/VelocityMessages.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/util/VelocityMessages.java @@ -7,7 +7,13 @@ import net.kyori.text.format.TextColor; public class VelocityMessages { public static final Component ONLINE_MODE_ONLY = TextComponent - .of("This server only accepts connections from online-mode clients.", TextColor.RED); + .builder("This server only accepts connections from online-mode clients.") + .color(TextColor.RED) + .append( + TextComponent.of("\n\nDid you change your username? Sign out of Minecraft, sign back in, " + + "and try again.", TextColor.GRAY) + ) + .build(); public static final Component NO_PROXY_BEHIND_PROXY = TextComponent .of("Running Velocity behind Velocity isn't supported.", TextColor.RED); public static final Component NO_AVAILABLE_SERVERS = TextComponent