From 0c2a295fd261387da89e1ff924fbf682b386fcf9 Mon Sep 17 00:00:00 2001 From: vis2k Date: Fri, 27 Nov 2020 18:25:51 +0800 Subject: [PATCH] V1.4 --- kcp2k/Assets/kcp2k/VERSION | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/kcp2k/Assets/kcp2k/VERSION b/kcp2k/Assets/kcp2k/VERSION index 572f213d..e77514c5 100755 --- a/kcp2k/Assets/kcp2k/VERSION +++ b/kcp2k/Assets/kcp2k/VERSION @@ -1,3 +1,11 @@ +V1.4 [2020-11-27] +- fix: OnCheckEnabled added. KcpConnection message processing while loop can now + be interrupted immediately. fixes Mirror Transport scene changes which need to stop + processing any messages immediately after a scene message) +- perf: Mirror KcpTransport: FastResend enabled by default. turbo mode according to: + https://github.com/skywind3000/kcp/blob/master/README.en.md#protocol-configuration +- perf: Mirror KcpTransport: CongestionControl disabled by default (turbo mode) + V1.3 [2020-11-17] - Log.Info/Warning/Error so logging doesn't depend on UnityEngine anymore - fix: Server.Tick catches SocketException which happens if Android client is killed @@ -15,7 +23,6 @@ V1.2 [2020-11-10] - KcpConnection.MaxMessageSize increased from 1200 bytes to to maximum allowed message size of 145KB for kcp (based on mtu, overhead, wnd_rcv) - V1.1 [2020-10-30] - high level cleanup, fixes, improvements