Merge branch 'installer' into develop

This commit is contained in:
misyaguziya
2024-12-30 15:19:05 +09:00
2 changed files with 22 additions and 1 deletions

View File

@@ -858,6 +858,27 @@ Section Uninstall
Delete "$INSTDIR\\{{this}}"
{{/each}}
; Dlete config.json
Delete "$INSTDIR\config.json"
; Delete process.log
Delete "$INSTDIR\process.log"
; Delete errror.log
Delete "$INSTDIR\error.log"
; Delete update.exe
Delete "$INSTDIR\update.exe"
; Delete _internal folder
RmDir /r "$INSTDIR\_internal"
; Delete log folder
RmDir /r "$INSTDIR\logs"
; Delete weights folder
RmDir /r "$INSTDIR\weights"
; Delete uninstaller
Delete "$INSTDIR\uninstall.exe"

View File

@@ -75,7 +75,7 @@
"nsis": {
"template": "nsis/template.nsi",
"license": "../LICENSE",
"installMode": "both",
"installMode": "currentUser",
"displayLanguageSelector": true
}
}