1.11.5
This commit is contained in:
parent
31977833f2
commit
278be4e396
|
@ -7,6 +7,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [1.11.5 / 5.66.5] - 2023-10-
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fixed issue with auto updater not offering version updates
|
||||||
|
|
||||||
|
|
||||||
## [1.11.4 / 5.66.4] - 2023-10-06
|
## [1.11.4 / 5.66.4] - 2023-10-06
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -289,7 +289,7 @@ void COnlineUpdater::LoadState()
|
||||||
|
|
||||||
QString COnlineUpdater::GetOnNewUpdateOption() const
|
QString COnlineUpdater::GetOnNewUpdateOption() const
|
||||||
{
|
{
|
||||||
if (!g_CertInfo.active || g_CertInfo.expired);
|
if (!g_CertInfo.active || g_CertInfo.expired)
|
||||||
return "ignore"; // this service requries a valid vcertificate
|
return "ignore"; // this service requries a valid vcertificate
|
||||||
return theConf->GetString("Options/OnNewUpdate", "ignore");
|
return theConf->GetString("Options/OnNewUpdate", "ignore");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue