v3.8.5.0 1、设置修改实时保存。2、可添加多个公网IP网址,自动运行是逐个查询,当有返回值时停止。3、简化代码。
This commit is contained in:
parent
e49aab84c7
commit
e34817aba6
@ -363,7 +363,7 @@
|
||||
// textBox_TTL
|
||||
//
|
||||
this.textBox_TTL.Location = new System.Drawing.Point(65, 120);
|
||||
this.textBox_TTL.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.textBox_TTL.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.textBox_TTL.Name = "textBox_TTL";
|
||||
this.textBox_TTL.Size = new System.Drawing.Size(37, 21);
|
||||
this.textBox_TTL.TabIndex = 15;
|
||||
@ -620,7 +620,7 @@
|
||||
this.button_addUrl.Name = "button_addUrl";
|
||||
this.button_addUrl.Size = new System.Drawing.Size(90, 23);
|
||||
this.button_addUrl.TabIndex = 21;
|
||||
this.button_addUrl.Text = "添加地址";
|
||||
this.button_addUrl.Text = "添加网址";
|
||||
this.button_addUrl.UseVisualStyleBackColor = true;
|
||||
this.button_addUrl.Click += new System.EventHandler(this.button_addUrl_Click);
|
||||
//
|
||||
|
@ -870,7 +870,7 @@ namespace net.nutcore.aliddns
|
||||
private void comboBox_whatIsUrl_Leave(object sender, EventArgs e)
|
||||
{
|
||||
//cfg.SaveAppSetting("whatIsUrl", this.comboBox_whatIsUrl.Text.ToString());
|
||||
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "公网IP查询网址已经修改,请测试并确定是否添加进配置文件!" + "\r\n");
|
||||
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "网址有变化,请测试并确定是否添加进配置文件!" + "\r\n");
|
||||
}
|
||||
|
||||
private void button_addNewDomain_Click(object sender, EventArgs e)
|
||||
@ -885,7 +885,7 @@ namespace net.nutcore.aliddns
|
||||
{
|
||||
if (newItem == comboBox_whatIsUrl.Items[i].ToString())
|
||||
{
|
||||
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "填写的公网IP查询网址已经存在,无需重复添加!" + "\r\n");
|
||||
textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "该网址已经存在,无需重复添加!" + "\r\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
|
||||
// 方法是按如下所示使用“*”: :
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("3.8.4.8")]
|
||||
[assembly: AssemblyFileVersion("3.8.4.8")]
|
||||
[assembly: AssemblyVersion("3.8.5.0")]
|
||||
[assembly: AssemblyFileVersion("3.8.5.0")]
|
||||
|
@ -1,3 +1,6 @@
|
||||
v3.8.5.0
|
||||
1、设置修改实时保存。2、可添加多个公网IP网址,自动运行是逐个查询,当有返回值时停止。3、简化代码。
|
||||
|
||||
v3.8.4.8
|
||||
1、实现实时更新配置文件。2、调整简化代码实现。3、DEBUG...
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user