summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Installer
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-07-22 18:13:52 +0000
committersr55 <[email protected]>2015-07-22 18:13:52 +0000
commit06d3f871ff06643a673c0a6a2872bfa242623613 (patch)
tree78e106c27799e75083fba547b6161a32658e2982 /win/CS/HandBrakeWPF/Installer
parent144d696814bbfc133e05293ce53da520267ae6e0 (diff)
WinGui: Updating the Nightly 64bit installer to check for .NET 4.5.2 as a test before updating the app.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7366 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Installer')
-rw-r--r--win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi.tmpl b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi.tmpl
index 5f3b160d5..7dc5f536b 100644
--- a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi.tmpl
+++ b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi.tmpl
@@ -16,8 +16,8 @@
;Required .NET framework
!define MIN_FRA_MAJOR "4"
-!define MIN_FRA_MINOR "0"
-!define MIN_FRA_BUILD "*"
+!define MIN_FRA_MINOR "5"
+!define MIN_FRA_BUILD "2"
SetCompressor lzma
@@ -110,18 +110,18 @@ Section "HandBrake" SEC01
Call CheckFramework
StrCmp $0 "1" +3
StrCpy $InstallDotNET "Yes"
- MessageBox MB_OK|MB_ICONINFORMATION "${PRODUCT_NAME} requires that the .NET Framework 4.0 Client Profile is installed. The latest .NET Framework will be downloaded and installed automatically during installation of ${PRODUCT_NAME}." /SD IDOK
+ MessageBox MB_OK|MB_ICONINFORMATION "${PRODUCT_NAME} requires that the Microsoft .NET Framework 4.5.2 is installed. The latest .NET Framework will be downloaded and installed automatically during installation of ${PRODUCT_NAME}." /SD IDOK
Pop $0
; Get .NET if required
${If} $InstallDotNET == "Yes"
SetDetailsView hide
- inetc::get /caption "Downloading .NET Framework 4.0" /canceltext "Cancel" "http://www.microsoft.com/downloads/info.aspx?na=41&srcfamilyid=e5ad0459-cbcc-4b4f-97b6-fb17111cf544&srcdisplaylang=en&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f5%2f6%2f2%2f562A10F9-C9F4-4313-A044-9C94E0A8FAC8%2fdotNetFx40_Client_x86_x64.exe" "$INSTDIR\dotnetfx.exe" /end
+ inetc::get /caption "Downloading Microsoft .NET Framework 4.5.2" /canceltext "Cancel" "http://go.microsoft.com/fwlink/?LinkId=397707" "$INSTDIR\dotnetfx.exe" /end
Pop $1
${If} $1 != "OK"
Delete "$INSTDIR\dotnetfx.exe"
- Abort "Installation cancelled, ${PRODUCT_NAME} requires the .NET 4.0 Framework"
+ Abort "Installation cancelled, ${PRODUCT_NAME} requires the Microsoft.NET 4.5.2 Framework"
${EndIf}
ExecWait "$INSTDIR\dotnetfx.exe"