forked from olcxjas-softworks/LarpixClient
update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
37
electron/node_modules/app-builder-lib/templates/nsis/common.nsh
generated
vendored
37
electron/node_modules/app-builder-lib/templates/nsis/common.nsh
generated
vendored
|
|
@ -3,16 +3,47 @@
|
|||
|
||||
BrandingText "${PRODUCT_NAME} ${VERSION}"
|
||||
ShowInstDetails nevershow
|
||||
SpaceTexts none
|
||||
!ifdef BUILD_UNINSTALLER
|
||||
ShowUninstDetails nevershow
|
||||
!endif
|
||||
FileBufSize 64
|
||||
Name "${PRODUCT_NAME}"
|
||||
|
||||
# Allows for a product name to display properly if it has an ampersand
|
||||
# Doesn't affect anything if there is no double ampersand
|
||||
!searchreplace DoubleAmpersand "${PRODUCT_NAME}" "&" "&&"
|
||||
Name "${PRODUCT_NAME}" "${DoubleAmpersand}"
|
||||
|
||||
!define APP_EXECUTABLE_FILENAME "${PRODUCT_FILENAME}.exe"
|
||||
!define UNINSTALL_FILENAME "Uninstall ${PRODUCT_FILENAME}.exe"
|
||||
|
||||
!macro setSpaceRequired SECTION_ID
|
||||
!ifdef APP_64_UNPACKED_SIZE
|
||||
!ifdef APP_32_UNPACKED_SIZE
|
||||
!ifdef APP_ARM64_UNPACKED_SIZE
|
||||
${if} ${IsNativeARM64}
|
||||
SectionSetSize ${SECTION_ID} ${APP_ARM64_UNPACKED_SIZE}
|
||||
${elseif} ${IsNativeAMD64}
|
||||
SectionSetSize ${SECTION_ID} ${APP_64_UNPACKED_SIZE}
|
||||
${else}
|
||||
SectionSetSize ${SECTION_ID} ${APP_32_UNPACKED_SIZE}
|
||||
${endif}
|
||||
!else
|
||||
${if} ${RunningX64}
|
||||
SectionSetSize ${SECTION_ID} ${APP_64_UNPACKED_SIZE}
|
||||
${else}
|
||||
SectionSetSize ${SECTION_ID} ${APP_32_UNPACKED_SIZE}
|
||||
${endif}
|
||||
!endif
|
||||
!else
|
||||
SectionSetSize ${SECTION_ID} ${APP_64_UNPACKED_SIZE}
|
||||
!endif
|
||||
!else
|
||||
!ifdef APP_32_UNPACKED_SIZE
|
||||
SectionSetSize ${SECTION_ID} ${APP_32_UNPACKED_SIZE}
|
||||
!endif
|
||||
!endif
|
||||
!macroend
|
||||
|
||||
!macro check64BitAndSetRegView
|
||||
# https://github.com/electron-userland/electron-builder/issues/2420
|
||||
${If} ${IsWin2000}
|
||||
|
|
@ -107,7 +138,7 @@ Name "${PRODUCT_NAME}"
|
|||
LogSet ${SETTING}
|
||||
!endif
|
||||
!macroend
|
||||
|
||||
|
||||
!define LogText "!insertmacro LogTextMacroEB"
|
||||
!macro LogTextMacroEB INPUT_TEXT
|
||||
!ifdef ENABLE_LOGGING_ELECTRON_BUILDER
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue