This commit is contained in:
2022-10-26 01:39:48 +00:00
parent 6a7bfa4530
commit 2f26d8c8c1
2 changed files with 9 additions and 3 deletions

View File

@@ -10,8 +10,12 @@ The most recent changes are written in the AyaNova manual [hosted on our website
#### Fixed
- Server: expiration date of license and maintenance incorrectly stated "(utc)" time in log but is actually server local time
- Server: expiration date of license and maintenance incorrectly stated "(utc)" time in log but is actually server local time
- UI: Evaluation license request page now properly shows that the company name and other details are _required_ and disables request button until filled in
#### Changed
- UI: Administration -> License page now has time in addition to date for license and maintenance expiration values
### AyaNova 8.0.17 (2022-10-12)

View File

@@ -243,7 +243,8 @@ namespace AyaNova.Core
{
get
{
return LicenseExpiration < DateTime.Now;
//Note: key is already UTC and should parse into datetime kind UTC but this is insurance in case rockfish changes as has no effect on a UTC kind of datetime
return LicenseExpiration.ToUniversalTime() < DateTime.UtcNow;
}
}
@@ -251,7 +252,8 @@ namespace AyaNova.Core
{
get
{
return MaintenanceExpiration < DateTime.Now;
//Note: key is already UTC and should parse into datetime kind UTC but this is insurance in case rockfish changes as has no effect on a UTC kind of datetime
return MaintenanceExpiration.ToUniversalTime() < DateTime.UtcNow;
}
}