Compare commits

...

2 Commits
1.7.5 ... 1.7.6

Author SHA1 Message Date
ChsBuffer
6de9d73699 bump version to 1.7.6 2021-02-20 21:04:12 +08:00
ChsBuffer
a2d1d85e69 fix typo 2021-02-20 20:53:48 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ namespace Netch.Controllers
aiodns_dial((int) NameList.TYPE_ODNS, Encoding.UTF8.GetBytes($"{Global.Settings.AioDNS.OtherDNS}:53"));
aiodns_dial((int) NameList.TYPE_METH, Encoding.UTF8.GetBytes(Global.Settings.AioDNS.Protocol));
if (aiodns_init())
if (!aiodns_init())
throw new Exception("AioDNS start failed");
}

View File

@@ -19,7 +19,7 @@ namespace Netch.Controllers
public const string Name = @"Netch";
public const string Copyright = @"Copyright © 2019 - 2021";
public const string AssemblyVersion = @"1.7.5";
public const string AssemblyVersion = @"1.7.6";
private const string Suffix = @"";
public static readonly string Version = $"{AssemblyVersion}{(string.IsNullOrEmpty(Suffix) ? "" : $"-{Suffix}")}";