123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- x64:
- firstOrDefaultFilePatterns:
- - '!**/node_modules'
- - '!build{,/**/*}'
- - '!build{,/**/*}'
- - dist/electron/**/*
- - package.json
- - '!**/*.{iml,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,suo,xproj,cc,d.ts,mk,a,o,forge-meta,pdb}'
- - '!**/._*'
- - '!**/electron-builder.{yaml,yml,json,json5,toml,ts}'
- - '!**/{.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,.DS_Store,thumbs.db,.gitignore,.gitkeep,.gitattributes,.npmignore,.idea,.vs,.flowconfig,.jshintrc,.eslintrc,.circleci,.yarn-integrity,.yarn-metadata.json,yarn-error.log,yarn.lock,package-lock.json,npm-debug.log,appveyor.yml,.travis.yml,circle.yml,.nyc_output,.husky,.github,electron-builder.env}'
- - '!.yarn{,/**/*}'
- - '!.editorconfig'
- - '!.yarnrc.yml'
- nodeModuleFilePatterns:
- - '**/*'
- - dist/electron/**/*
- nsis:
- script: |-
- !include "C:\Code\fuint\fuint-cashier\node_modules\app-builder-lib\templates\nsis\include\StdUtils.nsh"
- !addincludedir "C:\Code\fuint\fuint-cashier\node_modules\app-builder-lib\templates\nsis\include"
- !macro _isUpdated _a _b _t _f
- ${StdUtils.TestParameter} $R9 "updated"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isUpdated `"" isUpdated ""`
- !macro _isForceRun _a _b _t _f
- ${StdUtils.TestParameter} $R9 "force-run"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isForceRun `"" isForceRun ""`
- !macro _isKeepShortcuts _a _b _t _f
- ${StdUtils.TestParameter} $R9 "keep-shortcuts"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isKeepShortcuts `"" isKeepShortcuts ""`
- !macro _isNoDesktopShortcut _a _b _t _f
- ${StdUtils.TestParameter} $R9 "no-desktop-shortcut"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isNoDesktopShortcut `"" isNoDesktopShortcut ""`
- !macro _isDeleteAppData _a _b _t _f
- ${StdUtils.TestParameter} $R9 "delete-app-data"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isDeleteAppData `"" isDeleteAppData ""`
- !macro _isForAllUsers _a _b _t _f
- ${StdUtils.TestParameter} $R9 "allusers"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isForAllUsers `"" isForAllUsers ""`
- !macro _isForCurrentUser _a _b _t _f
- ${StdUtils.TestParameter} $R9 "currentuser"
- StrCmp "$R9" "true" `${_t}` `${_f}`
- !macroend
- !define isForCurrentUser `"" isForCurrentUser ""`
- !macro addLangs
- !insertmacro MUI_LANGUAGE "English"
- !insertmacro MUI_LANGUAGE "German"
- !insertmacro MUI_LANGUAGE "French"
- !insertmacro MUI_LANGUAGE "SpanishInternational"
- !insertmacro MUI_LANGUAGE "SimpChinese"
- !insertmacro MUI_LANGUAGE "TradChinese"
- !insertmacro MUI_LANGUAGE "Japanese"
- !insertmacro MUI_LANGUAGE "Korean"
- !insertmacro MUI_LANGUAGE "Italian"
- !insertmacro MUI_LANGUAGE "Dutch"
- !insertmacro MUI_LANGUAGE "Danish"
- !insertmacro MUI_LANGUAGE "Swedish"
- !insertmacro MUI_LANGUAGE "Norwegian"
- !insertmacro MUI_LANGUAGE "Finnish"
- !insertmacro MUI_LANGUAGE "Russian"
- !insertmacro MUI_LANGUAGE "Portuguese"
- !insertmacro MUI_LANGUAGE "PortugueseBR"
- !insertmacro MUI_LANGUAGE "Polish"
- !insertmacro MUI_LANGUAGE "Ukrainian"
- !insertmacro MUI_LANGUAGE "Czech"
- !insertmacro MUI_LANGUAGE "Slovak"
- !insertmacro MUI_LANGUAGE "Hungarian"
- !insertmacro MUI_LANGUAGE "Arabic"
- !insertmacro MUI_LANGUAGE "Turkish"
- !insertmacro MUI_LANGUAGE "Thai"
- !insertmacro MUI_LANGUAGE "Vietnamese"
- !macroend
- !addplugindir /x86-unicode "C:\Users\zach\AppData\Local\electron-builder\Cache\nsis\nsis-resources-3.4.1\plugins\x86-unicode"
- !include "C:\Users\zach\AppData\Local\Temp\t-idwXjr\0-messages.nsh"
- Var newStartMenuLink
- Var oldStartMenuLink
- Var newDesktopLink
- Var oldDesktopLink
- Var oldShortcutName
- Var oldMenuDirectory
- !include "common.nsh"
- !include "MUI2.nsh"
- !include "multiUser.nsh"
- !include "allowOnlyOneInstallerInstance.nsh"
- !ifdef INSTALL_MODE_PER_ALL_USERS
- !ifdef BUILD_UNINSTALLER
- RequestExecutionLevel user
- !else
- RequestExecutionLevel admin
- !endif
- !else
- RequestExecutionLevel user
- !endif
- !ifdef BUILD_UNINSTALLER
- SilentInstall silent
- !else
- Var appExe
- Var launchLink
- !endif
- !ifdef ONE_CLICK
- !include "oneClick.nsh"
- !else
- !include "assistedInstaller.nsh"
- !endif
- !insertmacro addLangs
- !ifmacrodef customHeader
- !insertmacro customHeader
- !endif
- Function .onInit
- Call setInstallSectionSpaceRequired
- SetOutPath $INSTDIR
- ${LogSet} on
- !ifmacrodef preInit
- !insertmacro preInit
- !endif
- !ifdef DISPLAY_LANG_SELECTOR
- !insertmacro MUI_LANGDLL_DISPLAY
- !endif
- !ifdef BUILD_UNINSTALLER
- WriteUninstaller "${UNINSTALLER_OUT_FILE}"
- !insertmacro quitSuccess
- !else
- !insertmacro check64BitAndSetRegView
- !ifdef ONE_CLICK
- !insertmacro ALLOW_ONLY_ONE_INSTALLER_INSTANCE
- !else
- ${IfNot} ${UAC_IsInnerInstance}
- !insertmacro ALLOW_ONLY_ONE_INSTALLER_INSTANCE
- ${EndIf}
- !endif
- !insertmacro initMultiUser
- !ifmacrodef customInit
- !insertmacro customInit
- !endif
- !ifmacrodef addLicenseFiles
- InitPluginsDir
- !insertmacro addLicenseFiles
- !endif
- !endif
- FunctionEnd
- !ifndef BUILD_UNINSTALLER
- !include "installUtil.nsh"
- !endif
- Section "install" INSTALL_SECTION_ID
- !ifndef BUILD_UNINSTALLER
- # If we're running a silent upgrade of a per-machine installation, elevate so extracting the new app will succeed.
- # For a non-silent install, the elevation will be triggered when the install mode is selected in the UI,
- # but that won't be executed when silent.
- !ifndef INSTALL_MODE_PER_ALL_USERS
- !ifndef ONE_CLICK
- ${if} $hasPerMachineInstallation == "1" # set in onInit by initMultiUser
- ${andIf} ${Silent}
- ${ifNot} ${UAC_IsAdmin}
- ShowWindow $HWNDPARENT ${SW_HIDE}
- !insertmacro UAC_RunElevated
- ${Switch} $0
- ${Case} 0
- ${Break}
- ${Case} 1223 ;user aborted
- ${Break}
- ${Default}
- MessageBox mb_IconStop|mb_TopMost|mb_SetForeground "Unable to elevate, error $0"
- ${Break}
- ${EndSwitch}
- Quit
- ${else}
- !insertmacro setInstallModePerAllUsers
- ${endIf}
- ${endIf}
- !endif
- !endif
- !include "installSection.nsh"
- !endif
- SectionEnd
- Function setInstallSectionSpaceRequired
- !insertmacro setSpaceRequired ${INSTALL_SECTION_ID}
- FunctionEnd
- !ifdef BUILD_UNINSTALLER
- !include "uninstaller.nsh"
- !endif
|