v3.7.1.6 1、调整系统托盘图标刷新监测逻辑,减少监测次数,减少刷新频率。
This commit is contained in:
parent
ac581fe995
commit
3fba79f604
@ -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")]
|
||||
|
@ -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,35 +498,25 @@ 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();
|
||||
|
||||
if (seconds == 0)
|
||||
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 (checkBox_logAutoSave.Checked == true)
|
||||
{
|
||||
if ( textBox_log.GetLineFromCharIndex(textBox_log.Text.Length) >10000 )
|
||||
|
||||
if (checkBox_logAutoSave.Checked == true && textBox_log.GetLineFromCharIndex(textBox_log.Text.Length) > 10000)
|
||||
{
|
||||
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "---运行日志超过10000行,开始日志转储---" + "\r\n");
|
||||
logToFiles();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception error)
|
||||
{
|
||||
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "运行出错!信息: " + error + "\r\n");
|
||||
}
|
||||
notifyIcon_sysTray_Update(); //监测网络状态、刷新系统托盘图标
|
||||
}
|
||||
|
||||
private void toolStripMenuItem1_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
@ -1,5 +1,8 @@
|
||||
v3.7.1.6
|
||||
1、调整系统托盘图标刷新监测逻辑,减少监测次数,减少刷新频率。
|
||||
|
||||
v3.7.1.5
|
||||
1、调整代码逻辑。
|
||||
1、调整代码逻辑,修复BUG。
|
||||
|
||||
v3.7.1.2
|
||||
1、简化系统托盘图标刷新状态监测代码。
|
||||
|
Loading…
Reference in New Issue
Block a user