1、当Ngrok选项被选定时,IP地址更新后,Ngrok穿透功能自动重启,避免IP地址更新后Ngrok穿透失效。
This commit is contained in:
wisdomwei201804 2019-03-27 11:48:55 +08:00
parent cebf67d8a5
commit a3162db829
3 changed files with 21 additions and 2 deletions

View File

@ -374,6 +374,22 @@ namespace net.nutcore.aliddns
{
domainIP.Text = localIP.Text; //更新窗体数据
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名绑定IP更新成功" + "\r\n");
if (checkBox_ngrok.Checked == true)
{
//button_ngrok.Enabled = false;
//cfg.SaveAppSetting("ngrokauto", "On");
//检测ngrok.exe是否存在
if (ngrok.IsExists())
{
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "IP地址变化Ngrok功能重启本机浏览器打开http://127.0.0.1:4040 查看运行状态。" + "\r\n");
ngrok.Stop();
ngrok.Start();
}
//else
//{
//textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "Ngrok功能启用但当前目录没有发现ngrok.exe请往官网下载自行编译https://ngrok.com/download" + "\r\n");
//}
}
}
textBox_recordId.Text = response.RecordId;
}

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.8.6.3")]
[assembly: AssemblyFileVersion("3.8.6.3")]
[assembly: AssemblyVersion("3.8.6.4")]
[assembly: AssemblyFileVersion("3.8.6.4")]

View File

@ -1,3 +1,6 @@
v3.8.6.4
1、当Ngrok选项被选定时IP地址更新后Ngrok穿透功能自动重启避免IP地址更新后Ngrok穿透失效。
v3.8.6.3
1、修改测试存储逻辑锁定Recordid编辑框避免添加域名成功后手工修改造成配置文件存储Recordid与服务器不一致时造成的自动更新出错。