diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.Designer.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.Designer.cs index f02e0c5..e3b4c6f 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.Designer.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.Designer.cs @@ -250,6 +250,7 @@ // this.textBox_recordId.Location = new System.Drawing.Point(68, 18); this.textBox_recordId.Name = "textBox_recordId"; + this.textBox_recordId.ReadOnly = true; this.textBox_recordId.Size = new System.Drawing.Size(116, 21); this.textBox_recordId.TabIndex = 8; this.textBox_recordId.Text = ""; diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs b/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs index d38f0d0..d0c7ddd 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/NgrokHelper.cs @@ -210,14 +210,20 @@ namespace net.nutcore.aliddns try { - Task task = new Task(() => + new Thread(()=> { - var proc = Process.Start(exec); - proc.WaitForExit(); - proc.Dispose(); - }); - task.Start(); - task.Wait(); //Wait for new Thread Exception throw + try + { + var proc = Process.Start(exec); + proc.WaitForExit(); + proc.Dispose(); + } + catch (Exception ex) + { + MessageBox.Show("Ngrok start running error:" + ex.ToString()); + Console.WriteLine(ex.Message); + } + }).Start(); } catch (AggregateException ex) { @@ -230,19 +236,25 @@ namespace net.nutcore.aliddns { try { - Task task = new Task(() => + new Thread(() => { - Process[] pList = Process.GetProcessesByName("Ngrok"); - foreach (Process p in pList) + try { - Console.WriteLine($"Kill: {p.Id}"); - p.Kill(); - p.WaitForExit(); - p.Dispose(); + Process[] pList = Process.GetProcessesByName("Ngrok"); + foreach (Process p in pList) + { + Console.WriteLine($"Kill: {p.Id}"); + p.Kill(); + p.WaitForExit(); + p.Dispose(); + } } - }); - task.Start(); - task.Wait(); //Wait for new Thread Exception throw + catch (Exception ex) + { + MessageBox.Show("Ngrok start running error:" + ex.ToString()); + Console.WriteLine(ex.Message); + } + }).Start(); } catch (AggregateException ex) { diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt b/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt index b2ee3b6..0df9bfa 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt +++ b/net.nutcore.aliddns/net.nutcore.aliddns/updateinfo.txt @@ -1,3 +1,6 @@ +v3.8.6.1 +1¡¢Ï¸»¯xpÔËÐÐʱ¶àÏ̳߳ö´íÒì³£´¦Àí´úÂ룬±ÜÃâ³ÌÐò±ÀÀ£¡£2¡¢Ëø¶¨recordId¿Ø¼þ£¬±ÜÃâÐÂÊÖËæÒâÐÞ¸ÄÔì³ÉµÄ´íÎó¡£ + v3.8.6.0 1¡¢Ð޸ĴúÂ룬.net¿ò¼Ü°æ±¾ÓÉ4.5½µµÍµ½4.0£¬¿ÉÔÚWinXPϵͳÔËÐУ¬WinXPϵͳ×î¸ßÖ§³Ö.net 4.0¡£