2024-04-19 15:37:15 +08:00
|
|
|
; Silent switch /S
|
2024-07-03 22:00:35 +08:00
|
|
|
; to check silent mode `start /wait EverythingPT-0.81.0-x64.exe /S`
|
2024-05-06 23:47:15 +08:00
|
|
|
; and `echo %ERRORLEVEL%` to check if 0 or 2
|
2024-07-03 22:00:35 +08:00
|
|
|
; Pass in /Dver=0.00.0 /Ddirect=$(TargetDir) before calling the script to set the version
|
2024-05-06 23:47:15 +08:00
|
|
|
; ie: makensis /Dver=0.77.0 /Ddirect=bin\x64\Release\Everything\ .\exeCreator.nsi
|
2024-01-24 18:06:06 +08:00
|
|
|
; Doc: https://nsis.sourceforge.io/Docs/Chapter4.html
|
2024-01-21 02:44:00 +08:00
|
|
|
!define EPT "EverythingPT"
|
|
|
|
|
|
|
|
LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
|
|
|
|
;--------------------------------
|
|
|
|
;Version Information
|
|
|
|
VIProductVersion "${ver}.0"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "${EPT} Setup"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "lin-ycv"
|
2024-01-31 21:25:35 +08:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "lin-ycv"
|
2024-01-21 02:44:00 +08:00
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Everything search plugin for PowerToys Run"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "${ver}"
|
|
|
|
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "${ver}"
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
BrandingText "${EPT} v${ver}"
|
|
|
|
CRCCheck force
|
2024-05-26 06:35:59 +05:30
|
|
|
FileErrorText "Can't write: $\r$\n$\r$\n$0$\r$\n$\r$\nPowerToys is probably still running, please close it and retry."
|
2024-01-21 02:44:00 +08:00
|
|
|
Icon Everything.ico
|
|
|
|
InstallDir "$LOCALAPPDATA\Microsoft\PowerToys\PowerToys Run\Plugins\Everything"
|
|
|
|
Name "${EPT}"
|
2024-07-03 22:00:35 +08:00
|
|
|
OutFile ".\..\bin\${EPT}-${ver}-${platform}.exe"
|
2024-01-21 02:44:00 +08:00
|
|
|
RequestExecutionLevel user
|
2025-01-25 00:53:35 +08:00
|
|
|
;SetCompressor /SOLID /FINAL lzma ; this increases chances of AV FP?
|
2024-07-20 19:27:04 +08:00
|
|
|
LicenseData "..\LICENSE"
|
2024-01-21 02:44:00 +08:00
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
2024-05-06 23:47:15 +08:00
|
|
|
Page license
|
2024-01-21 02:44:00 +08:00
|
|
|
Page instfiles
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
Section ""
|
|
|
|
|
2024-04-19 15:37:15 +08:00
|
|
|
ClearErrors
|
2024-01-21 02:44:00 +08:00
|
|
|
SetOutPath $INSTDIR
|
|
|
|
GetFullPathName $0 "$EXEDIR\"
|
|
|
|
GetFullPathName $0 $0
|
2024-04-18 17:04:25 +08:00
|
|
|
File /r "${direct}\*"
|
2024-01-21 02:44:00 +08:00
|
|
|
|
2024-04-19 15:37:15 +08:00
|
|
|
IfErrors 0 +5
|
2024-07-20 19:27:04 +08:00
|
|
|
SetErrorlevel 1
|
2024-04-19 15:37:15 +08:00
|
|
|
IfSilent +2
|
2025-01-25 00:53:35 +08:00
|
|
|
MessageBox MB_ICONEXCLAMATION "Unable to (un)install, PowerToys is probably still running, please close it manually before (un)install."
|
2024-04-19 15:37:15 +08:00
|
|
|
Abort
|
2024-01-21 02:44:00 +08:00
|
|
|
|
2024-04-19 15:37:15 +08:00
|
|
|
SectionEnd
|