mirror of
https://github.com/tnodir/fort
synced 2024-11-15 01:36:22 +00:00
FortFirewall.exe.ini: Warn about env vars for service and client
This commit is contained in:
parent
8b73c25eb0
commit
5062bb0241
@ -4,6 +4,7 @@
|
|||||||
;Fort Firewall global configuration
|
;Fort Firewall global configuration
|
||||||
|
|
||||||
;ATTENTION: Use slashes as path separator (C:/path/to/directory/)!!!
|
;ATTENTION: Use slashes as path separator (C:/path/to/directory/)!!!
|
||||||
|
; Environment variables (e.g. %TEMP%) are different for Service and UI processes!
|
||||||
|
|
||||||
[global]
|
[global]
|
||||||
|
|
||||||
@ -43,7 +44,7 @@
|
|||||||
|
|
||||||
;Directory to store Fort Firewall's update.
|
;Directory to store Fort Firewall's update.
|
||||||
;Default is "<cacheDir>".
|
;Default is "<cacheDir>".
|
||||||
;updateDir=%TEMP%/Fort Firewall
|
;updateDir=%SystemRoot%/Temp/Fort Firewall
|
||||||
|
|
||||||
;Force debug output.
|
;Force debug output.
|
||||||
;forceDebug=true
|
;forceDebug=true
|
||||||
|
@ -150,7 +150,8 @@ void AutoUpdateManager::setupByTaskInfo(TaskInfoUpdateChecker *taskInfo)
|
|||||||
const QFileInfo fi(installerPath());
|
const QFileInfo fi(installerPath());
|
||||||
const bool downloaded = (fi.exists() && fi.size() == m_downloadSize);
|
const bool downloaded = (fi.exists() && fi.size() == m_downloadSize);
|
||||||
|
|
||||||
qCDebug(LC) << "Check:" << taskInfo->version() << "downloaded:" << downloaded;
|
qCDebug(LC) << "Check:" << taskInfo->version() << "downloaded:" << downloaded
|
||||||
|
<< "path:" << fi.filePath();
|
||||||
|
|
||||||
setIsDownloaded(downloaded);
|
setIsDownloaded(downloaded);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user