From 77136b8f84daa676eedf78fe1baba982019f1f32 Mon Sep 17 00:00:00 2001 From: Arkadiy Paronyan Date: Sat, 5 Nov 2016 14:38:04 +0100 Subject: [PATCH] Set passive mode for first run only (#3214) --- nsis/installer.nsi | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nsis/installer.nsi b/nsis/installer.nsi index 5e24c342b..b6ecfe27c 100644 --- a/nsis/installer.nsi +++ b/nsis/installer.nsi @@ -11,7 +11,8 @@ !define VERSIONMAJOR 1 !define VERSIONMINOR 5 !define VERSIONBUILD 0 -!define ARGS "--warp --mode=passive" +!define ARGS "--warp" +!define FIRST_START_ARGS "--warp --mode=passive" !addplugindir .\ @@ -133,7 +134,7 @@ section "install" WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${COMPANYNAME} ${APPNAME}" "EstimatedSize" ${INSTALLSIZE} WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Run" ${APPNAME} "$INSTDIR\ptray.exe ${ARGS}" - ExecShell "" "$INSTDIR\ptray.exe" "${ARGS}" + ExecShell "" "$INSTDIR\ptray.exe" "${FIRST_START_ARGS}" sectionEnd # Uninstaller