[deskotp/tauri] update tauri, remove the need for nsis template

This commit is contained in:
Vladimir Stoilov
2024-05-31 07:11:42 +03:00
parent ce43e2a81f
commit 31b99e7647
11 changed files with 119 additions and 1670 deletions

View File

@@ -0,0 +1,14 @@
!define NSIS_HOOK_POSTINSTALL "NSIS_HOOK_POSTINSTALL_"
!macro NSIS_HOOK_POSTINSTALL_
ExecWait '"$INSTDIR\portmaster-start.exe" install core-service --data="$INSTDIR\data"'
!macroend
!define NSIS_HOOK_PREUNINSTALL "NSIS_HOOK_PREUNINSTALL_"
!macro NSIS_HOOK_PREUNINSTALL_
ExecWait 'sc.exe stop PortmasterCore'
ExecWait 'sc.exe delete PortmasterCore'
!macroend