This commit is contained in:
@@ -10,8 +10,12 @@ The most recent changes are written in the AyaNova manual [hosted on our website
|
|||||||
|
|
||||||
#### Fixed
|
#### 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)
|
### AyaNova 8.0.17 (2022-10-12)
|
||||||
|
|
||||||
|
|||||||
@@ -243,7 +243,8 @@ namespace AyaNova.Core
|
|||||||
{
|
{
|
||||||
get
|
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
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user