diff --git a/docs/8.0/ayanova/docs/changelog.md b/docs/8.0/ayanova/docs/changelog.md index b0d3fb76..34db8d03 100644 --- a/docs/8.0/ayanova/docs/changelog.md +++ b/docs/8.0/ayanova/docs/changelog.md @@ -13,7 +13,8 @@ See the [upgrade instructions](ops-upgrade.md) section of this manual for detail #### Fixed -- UI: DateTime and Date controls not displaying properly localized when edit enabled +- UI: DateTime and Date controls not displaying properly localized when in edit enabled mode +- UI: Unit edit form New work order menu item not translated ## 2022 diff --git a/server/AyaNova/Startup.cs b/server/AyaNova/Startup.cs index 3994392c..7eafa27b 100644 --- a/server/AyaNova/Startup.cs +++ b/server/AyaNova/Startup.cs @@ -247,6 +247,8 @@ namespace AyaNova } ); + //for down the road when add updated swashbuckle libs + // services.AddSwaggerGenNewtonsoftSupport(); #endregion diff --git a/server/AyaNova/util/License.cs b/server/AyaNova/util/License.cs index 9b8d31dc..52d39785 100644 --- a/server/AyaNova/util/License.cs +++ b/server/AyaNova/util/License.cs @@ -51,6 +51,8 @@ namespace AyaNova.Core private const string LICENSE_SERVER_URL_EUROPA = "https://europa.ayanova.com/"; private const string LICENSE_SERVER_URL_CALLISTO = "https://callisto.ayanova.com/"; + private const string LICENSE_SERVER_URL_SOCKEYE = "https://sockeye.ayanova.com/"; + internal const string LICENSE_MISMATCH_TO_BUILD_ERROR = "E1020 - Not licensed for this version of AyaNova. Fix: revert to previous version used or contact technical support for options"; //Warning: magic string, do not change this, triggers special login procedures to fix license issue @@ -619,7 +621,7 @@ namespace AyaNova.Core private static async Task DoFetchAsync(string LicenseUrlParameters, StringContent content, HttpClient client) { var LicenseServer = string.Empty; - for (int x = 0; x < 4; x++) + for (int x = 0; x < 5; x++) { try { @@ -637,6 +639,9 @@ namespace AyaNova.Core case 3: LicenseServer = LICENSE_SERVER_URL_CALLISTO; break; + case 4: + LicenseServer = LICENSE_SERVER_URL_SOCKEYE; + break; } return await client.PostAsync($"{LicenseServer}{LicenseUrlParameters}", content);