Update the Installer NSIS script for 4.0.1
This commit is contained in:
parent
8c22d34f90
commit
9b70863dd6
|
@ -1,4 +1,4 @@
|
||||||
!define PRODUCT_VERSION 4.0
|
!define PRODUCT_VERSION 4.0.1
|
||||||
|
|
||||||
!define BASE_DIR "..\Binary\${DOLPHIN_ARCH}"
|
!define BASE_DIR "..\Binary\${DOLPHIN_ARCH}"
|
||||||
|
|
||||||
|
@ -26,8 +26,6 @@ SetCompressor /SOLID lzma
|
||||||
|
|
||||||
; License page
|
; License page
|
||||||
!insertmacro MUI_PAGE_LICENSE "..\License.txt"
|
!insertmacro MUI_PAGE_LICENSE "..\License.txt"
|
||||||
; Components page
|
|
||||||
!insertmacro MUI_PAGE_COMPONENTS
|
|
||||||
; Directory page
|
; Directory page
|
||||||
!insertmacro MUI_PAGE_DIRECTORY
|
!insertmacro MUI_PAGE_DIRECTORY
|
||||||
; Instfiles page
|
; Instfiles page
|
||||||
|
@ -138,6 +136,7 @@ Section "Base" SEC01
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "DirectX Runtime" SEC02
|
Section "DirectX Runtime" SEC02
|
||||||
|
SectionIn RO
|
||||||
DetailPrint "Running DirectX runtime setup..."
|
DetailPrint "Running DirectX runtime setup..."
|
||||||
ExecWait '"$TEMP\dxredist\DXSETUP.exe" /silent'
|
ExecWait '"$TEMP\dxredist\DXSETUP.exe" /silent'
|
||||||
DetailPrint "Finished DirectX runtime setup"
|
DetailPrint "Finished DirectX runtime setup"
|
||||||
|
@ -158,12 +157,6 @@ Section -Post
|
||||||
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
|
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
; Section descriptions
|
|
||||||
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC01} "Installs all files required to run the Dolphin Emulator."
|
|
||||||
!insertmacro MUI_DESCRIPTION_TEXT ${SEC02} "Installs the recommended DirectX runtime libraries that are needed by Dolphin."
|
|
||||||
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|
||||||
|
|
||||||
Section Uninstall
|
Section Uninstall
|
||||||
SetShellVarContext all
|
SetShellVarContext all
|
||||||
; Only uninstall what we put there; all $INSTDIR\User is left as is
|
; Only uninstall what we put there; all $INSTDIR\User is left as is
|
||||||
|
|
Loading…
Reference in New Issue