From 33781a5e9be51f218faa6b9c0591f2a378ba8fd7 Mon Sep 17 00:00:00 2001 From: wisdomwei201804 Date: Mon, 23 Apr 2018 16:26:56 +0800 Subject: [PATCH] =?UTF-8?q?v3.8.3.0=20=201=E3=80=81=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8D=87=E7=BA=A7=E6=A3=80=E6=B5=8B=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E3=80=822=E3=80=81=E8=B0=83=E8=AF=95=E4=B8=AD...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../net.nutcore.aliddns/Form_About.cs | 12 ++++++++++++ net.nutcore.aliddns/net.nutcore.aliddns/main.cs | 13 ++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs index 86654e0..0448556 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_About.cs @@ -3,6 +3,7 @@ using System.Text; using System.IO; using System.Windows.Forms; using System.Xml; +using System.Net; namespace net.nutcore.aliddns { @@ -14,8 +15,19 @@ namespace net.nutcore.aliddns InitializeComponent(); this.MinimizeBox = false; //取消窗口最小化按钮 this.MaximizeBox = false; //取消窗口最大化按钮 + label_currentVer.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); //获取当前版本 if (mainForm.checkUpdate == true) + { checkBox_autoCheckUpdate.Checked = true; + //获取远程版本信息 + /* + string strUrl = "https://api.github.com/respo/wisdomwei201804/AliDDNS/releases/latest"; //从控件获取WAN口IP查询网址,默认值为:"http://whatismyip.akamai.com/"; + Uri uri = new Uri(strUrl); + WebRequest webreq = WebRequest.Create(uri); + Stream s = webreq.GetResponse().GetResponseStream(); + StreamReader sr = new StreamReader(s, Encoding.Default); + string all = sr.ReadToEnd();*/ + } else checkBox_autoCheckUpdate.Checked = false; textBox_updateInfo.ReadOnly = true; string filePath = System.AppDomain.CurrentDomain.BaseDirectory; diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/main.cs b/net.nutcore.aliddns/net.nutcore.aliddns/main.cs index 6c6c0b9..bba48bd 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/main.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/main.cs @@ -96,13 +96,13 @@ namespace net.nutcore.aliddns string update = ExePath + "update.exe"; if(checkUpdate == true) { - if (!File.Exists(update)) + if (File.Exists(update)) { - textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "版本检测程序update.exe未找到,跳过版本检测! " + "\r\n"); + //执行update.exe } else { - //执行update.exe + textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "版本检测程序update.exe未找到,跳过版本检测! " + "\r\n"); } } @@ -288,6 +288,13 @@ namespace net.nutcore.aliddns textWriter.WriteString(textBox_TTL.Text); textWriter.WriteEndElement(); + textWriter.WriteStartElement("autoCheckUpdate", ""); + if (checkUpdate == false) + textWriter.WriteString("Off"); + else + textWriter.WriteString("On"); + textWriter.WriteEndElement(); + textWriter.WriteEndElement(); //设置项目结束 textWriter.WriteEndDocument();//文档结束 textWriter.Close(); //文档保存关闭