Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xljiulang committed Dec 26, 2015
1 parent ea94198 commit 19944c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Demo/FastClient/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private async void MainForm_Load(object sender, EventArgs e)
var connected = await Client.Instance.Connect(remoteEndPoint);
var version = connected ? await Client.Instance.GetVersion() : null;

this.Text = connected ? ("服务器版本" + version) : "连接服务器失败 ..";
this.Text = connected ? ("通讯库版本" + version) : "连接服务器失败 ..";
this.btn_Login.Enabled = this.btn_Pass.Enabled = connected;
}

Expand Down
4 changes: 2 additions & 2 deletions Net40/NetworkSocket/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]
[assembly: AssemblyVersion("1.6.1.0")]
[assembly: AssemblyFileVersion("1.6.1.0")]

0 comments on commit 19944c8

Please sign in to comment.