v3.7.1.6 1、调整系统托盘图标刷新监测逻辑,减少监测次数,减少刷新频率。

This commit is contained in:
wisdomwei201804 2018-04-20 18:58:08 +08:00
parent ac581fe995
commit 3fba79f604
3 changed files with 17 additions and 23 deletions

View File

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

View File

@ -450,6 +450,7 @@ namespace net.nutcore.aliddns
{
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "域名绑定IP更新失败" + "\r\n");
}
notifyIcon_sysTray_Update(); //监测网络状态、刷新系统托盘图标
}
//Events in form
@ -497,34 +498,24 @@ namespace net.nutcore.aliddns
private void autoUpdateTimer_Tick(object sender, EventArgs e)
{
try
if (checkBox_autoUpdate.Checked == true)
{
if (checkBox_autoUpdate.Checked == true && label_nextUpdateSeconds.Text != "")
if(Convert.ToInt32(label_nextUpdateSeconds.Text) > 0)
{
int seconds = Convert.ToInt32(label_nextUpdateSeconds.Text);
if (seconds > 0) seconds--;
label_nextUpdateSeconds.Text = seconds.ToString();
label_nextUpdateSeconds.Text = Convert.ToString((Convert.ToInt32(label_nextUpdateSeconds.Text) - 1));
}
else
{
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---计划任务被触发开始WAN口IP和域名IP查询比较---" + "\r\n");
updatePrepare();
}
}
if (seconds == 0)
{
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---计划任务被触发开始WAN口IP和域名IP查询比较---" + "\r\n");
updatePrepare();
}
}
if (checkBox_logAutoSave.Checked == true)
{
if ( textBox_log.GetLineFromCharIndex(textBox_log.Text.Length) >10000 )
{
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---运行日志超过10000行开始日志转储---" + "\r\n");
logToFiles();
}
}
}
catch (Exception error)
if (checkBox_logAutoSave.Checked == true && textBox_log.GetLineFromCharIndex(textBox_log.Text.Length) > 10000)
{
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "运行出错!信息: " + error + "\r\n");
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---运行日志超过10000行开始日志转储---" + "\r\n");
logToFiles();
}
notifyIcon_sysTray_Update(); //监测网络状态、刷新系统托盘图标
}
private void toolStripMenuItem1_Click(object sender, EventArgs e)

View File

@ -1,5 +1,8 @@
v3.7.1.6
1、调整系统托盘图标刷新监测逻辑减少监测次数减少刷新频率。
v3.7.1.5
1、调整代码逻辑。
1、调整代码逻辑修复BUG
v3.7.1.2
1、简化系统托盘图标刷新状态监测代码。