diff --git a/src/NSmartProxy.ClientRouter/Router.cs b/src/NSmartProxy.ClientRouter/Router.cs index 08338cd..4027a84 100644 --- a/src/NSmartProxy.ClientRouter/Router.cs +++ b/src/NSmartProxy.ClientRouter/Router.cs @@ -123,6 +123,7 @@ public async Task Start(bool AlwaysReconnect = false) arrangedToken = File.ReadAllText(NSMART_CLIENT_CACHE_PATH); //TODO 这个token的合法性无法保证,如果服务端删除了用户,而这里缓存还存在,会导致无法登录 //TODO ***** 这是个trick:防止匿名用户被服务端踢了之后无限申请新账号 + //TODO 待解决 版本号无法显示的问题 CurrentLoginInfo = null; } else diff --git a/src/NSmartProxy.Infrastructure/Shared/Global.cs b/src/NSmartProxy.Infrastructure/Shared/Global.cs index afc0850..5643a93 100644 --- a/src/NSmartProxy.Infrastructure/Shared/Global.cs +++ b/src/NSmartProxy.Infrastructure/Shared/Global.cs @@ -6,8 +6,8 @@ public sealed class Global { public const string NO_TOKEN_STRING = "notoken"; - public const string NSmartProxyClientName = "NSmartProxy Client v0.8"; - public const string NSmartProxyServerName = "NSmartProxy Server v0.8"; + public const string NSmartProxyClientName = "NSmartProxy Client v0.9"; + public const string NSmartProxyServerName = "NSmartProxy Server v0.9"; public const int ClientReconnectInterval = 3000;//客户端断线重连时间间隔(毫秒) diff --git a/src/build.cmd b/src/build.cmd index 3797a4a..fffe581 100644 --- a/src/build.cmd +++ b/src/build.cmd @@ -2,7 +2,7 @@ rem windows only rem NSP v0.8_bugfix @ECHO off -set Ver=v0.8 +set Ver=v0.9 set BuildPath=%~dp0../build set nsp_server_path=%BuildPath%/nspclient_%Ver%