diff --git a/EveLib.Core/Config.cs b/EveLib.Core/Config.cs index 4c06760..df9e96f 100644 --- a/EveLib.Core/Config.cs +++ b/EveLib.Core/Config.cs @@ -43,7 +43,6 @@ public static class Config { } } - /// /// Gets or sets the image path. /// diff --git a/EveLib.EveCrest/EveCrest.cs b/EveLib.EveCrest/EveCrest.cs index 0b8cc28..d93d317 100644 --- a/EveLib.EveCrest/EveCrest.cs +++ b/EveLib.EveCrest/EveCrest.cs @@ -54,12 +54,7 @@ public class EveCrest { /// /// The default URI used to access the public CREST API. This can be overridded by setting the Host. /// - public const string DefaultPublicHost = "https://public-crest.eveonline.com/"; - - /// - /// The default URI used to access the authenticated CREST API. This can be overridded by setting the Host. - /// - public const string DefaultAuthHost = "https://crest-tq.eveonline.com/"; + public const string DefaultHost = "https://crest-tq.eveonline.com/"; /// /// The obsolete message @@ -89,7 +84,7 @@ public class EveCrest { RequestHandler = new CachedCrestRequestHandler(new JsonSerializer("yyyy.MM.dd HH:mm:ss")); ImageRequestHandler = new ImageRequestHandler(); ApiPath = "/"; - Host = DefaultPublicHost; + Host = DefaultHost; Mode = CrestMode.Public; EnableRootCache = true; EnableAutomaticPaging = true; @@ -102,7 +97,7 @@ public class EveCrest { public EveCrest(string accessToken) : this() { AccessToken = accessToken; - Host = DefaultAuthHost; + Host = DefaultHost; Mode = CrestMode.Authenticated; EveAuth = new EveAuth(); EnableAutomaticTokenRefresh = false; @@ -118,7 +113,7 @@ public EveCrest(string refreshToken, string encodedKey) RefreshToken = refreshToken; AccessToken = ""; EncodedKey = encodedKey; - Host = DefaultAuthHost; + Host = DefaultHost; Mode = CrestMode.Authenticated; EveAuth = new EveAuth(); EnableAutomaticTokenRefresh = true; diff --git a/EveLib.EveCrest/EveLib.EveCrest.nuspec b/EveLib.EveCrest/EveLib.EveCrest.nuspec index 2fcbac3..98eba32 100644 --- a/EveLib.EveCrest/EveLib.EveCrest.nuspec +++ b/EveLib.EveCrest/EveLib.EveCrest.nuspec @@ -12,7 +12,7 @@ false $description$ - https://github.com/ezet/evelib/releases/tag/EveCrest_v3.4.1 + https://github.com/ezet/evelib/releases/tag/EveCrest_v3.4.2 EveLib EveCrest API EveOnline Eve Online Crest diff --git a/EveLib.EveCrest/Properties/AssemblyInfo.cs b/EveLib.EveCrest/Properties/AssemblyInfo.cs index d73765f..a46d52b 100644 --- a/EveLib.EveCrest/Properties/AssemblyInfo.cs +++ b/EveLib.EveCrest/Properties/AssemblyInfo.cs @@ -36,6 +36,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.4.1.0")] -[assembly: AssemblyFileVersion("3.4.1.0")] +[assembly: AssemblyVersion("3.4.2.0")] +[assembly: AssemblyFileVersion("3.4.2.0")] [assembly: NeutralResourcesLanguage("en")] \ No newline at end of file diff --git a/EveLib.Tests/EveCrest_Authed_Tests.cs b/EveLib.Tests/EveCrest_Authed_Tests.cs index 82cd9b2..42af732 100644 --- a/EveLib.Tests/EveCrest_Authed_Tests.cs +++ b/EveLib.Tests/EveCrest_Authed_Tests.cs @@ -42,7 +42,7 @@ public class EveCrest_Authed_Tests { [TestMethod] public async Task GetRoot() { var root = await crest.GetRootAsync(); - Assert.AreEqual(EveCrest.DefaultAuthHost, root.CrestEndpoint.Uri); + Assert.AreEqual(EveCrest.DefaultHost, root.CrestEndpoint.Uri); } [TestMethod]