1.0.22
This commit is contained in:
parent
9fec52d738
commit
829e6f305d
|
@ -2477,7 +2477,7 @@ void CSandMan::OnUpdateCheck()
|
|||
// 'sha256'
|
||||
// 'signature'
|
||||
|
||||
if (!DownloadUrl.isEmpty() && theConf->GetInt("Options/DownloadUpdates", 1) == 1)
|
||||
if (!DownloadUrl.isEmpty() && theConf->GetInt("Options/DownloadUpdates", 0) == 1)
|
||||
DownloadUpdates(DownloadUrl, bManual);
|
||||
else
|
||||
{
|
||||
|
|
|
@ -338,7 +338,7 @@ void CSettingsWindow::LoadSettings()
|
|||
UpdateCert();
|
||||
|
||||
ui.chkAutoUpdate->setCheckState(CSettingsWindow__Int2Chk(theConf->GetInt("Options/CheckForUpdates", 2)));
|
||||
ui.chkAutoDownload->setCheckState(CSettingsWindow__Int2Chk(theConf->GetInt("Options/DownloadUpdates", 1)));
|
||||
ui.chkAutoDownload->setCheckState(CSettingsWindow__Int2Chk(theConf->GetInt("Options/DownloadUpdates", 0)));
|
||||
//ui.chkAutoInstall->setCheckState(CSettingsWindow__Int2Chk(theConf->GetInt("Options/InstallUpdates", 0)));
|
||||
ui.chkAutoInstall->setVisible(false); // todo implement smart auto updater
|
||||
|
||||
|
|
Loading…
Reference in New Issue