Update Updater.exe

This commit is contained in:
Kamil Trzciński 2022-12-16 22:32:59 +01:00
parent b0277d3c0b
commit 72c15b8e74
10 changed files with 117 additions and 34 deletions

View file

@ -250,6 +250,12 @@ Section "Run on Startup" StartAllComponents
Exec '"$INSTDIR\SteamController.exe" -run-on-startup'
SectionEnd
Section /o "Disable Check for Updates" DisableCheckForUpdates
SetShellVarContext All
FileOpen $0 "$INSTDIR\DisableCheckForUpdates.txt" w
FileClose $0
SectionEnd
;--------------------------------
;Installer Functions
@ -275,6 +281,7 @@ FunctionEnd
!insertmacro MUI_DESCRIPTION_TEXT ${DesktopShortcut} "Create a shortcut on your desktop."
!insertmacro MUI_DESCRIPTION_TEXT ${ProgramsShortcut} "Create a shortcut in your start menu folder."
!insertmacro MUI_DESCRIPTION_TEXT ${StartAllComponents} "Start all components on system boot."
!insertmacro MUI_DESCRIPTION_TEXT ${DisableCheckForUpdates} "This application might connect remote server to check for updates or track errors. This helps this project development."
!insertmacro MUI_FUNCTION_DESCRIPTION_END
;--------------------------------