v3.8.3.0 1、增加自动升级检测功能。2、调试中...

This commit is contained in:
wisdomwei201804 2018-04-23 16:26:56 +08:00
parent ac8dda46dd
commit 33781a5e9b
2 changed files with 22 additions and 3 deletions

View File

@ -3,6 +3,7 @@ using System.Text;
using System.IO; using System.IO;
using System.Windows.Forms; using System.Windows.Forms;
using System.Xml; using System.Xml;
using System.Net;
namespace net.nutcore.aliddns namespace net.nutcore.aliddns
{ {
@ -14,8 +15,19 @@ namespace net.nutcore.aliddns
InitializeComponent(); InitializeComponent();
this.MinimizeBox = false; //取消窗口最小化按钮 this.MinimizeBox = false; //取消窗口最小化按钮
this.MaximizeBox = false; //取消窗口最大化按钮 this.MaximizeBox = false; //取消窗口最大化按钮
label_currentVer.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); //获取当前版本
if (mainForm.checkUpdate == true) if (mainForm.checkUpdate == true)
{
checkBox_autoCheckUpdate.Checked = 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; else checkBox_autoCheckUpdate.Checked = false;
textBox_updateInfo.ReadOnly = true; textBox_updateInfo.ReadOnly = true;
string filePath = System.AppDomain.CurrentDomain.BaseDirectory; string filePath = System.AppDomain.CurrentDomain.BaseDirectory;

View File

@ -96,13 +96,13 @@ namespace net.nutcore.aliddns
string update = ExePath + "update.exe"; string update = ExePath + "update.exe";
if(checkUpdate == true) 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 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.WriteString(textBox_TTL.Text);
textWriter.WriteEndElement(); textWriter.WriteEndElement();
textWriter.WriteStartElement("autoCheckUpdate", "");
if (checkUpdate == false)
textWriter.WriteString("Off");
else
textWriter.WriteString("On");
textWriter.WriteEndElement();
textWriter.WriteEndElement(); //设置项目结束 textWriter.WriteEndElement(); //设置项目结束
textWriter.WriteEndDocument();//文档结束 textWriter.WriteEndDocument();//文档结束
textWriter.Close(); //文档保存关闭 textWriter.Close(); //文档保存关闭