diff options
author | sr55 <[email protected]> | 2018-05-06 20:30:52 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-05-06 20:30:52 +0100 |
commit | 0f568c165c61d7366f88d150a9fbc94900b56295 (patch) | |
tree | 996c5d4b7a82db52016926188f29a6d4a44e5e93 /win/CS/HandBrakeWPF/Installer | |
parent | 457bb751d054aab63a70f63a02b94c340186cedc (diff) |
WinGui: Update Version Numbers around the application / Installer. Update the Installer to download .NET 4.7.1 if missing.
Diffstat (limited to 'win/CS/HandBrakeWPF/Installer')
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/Installer64.nsi | 8 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/Installer/Installer64.nsi b/win/CS/HandBrakeWPF/Installer/Installer64.nsi index 6f824704c..9cd407fcd 100644 --- a/win/CS/HandBrakeWPF/Installer/Installer64.nsi +++ b/win/CS/HandBrakeWPF/Installer/Installer64.nsi @@ -8,15 +8,15 @@ ; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "HandBrake"
-!define PRODUCT_VERSION "1.1.0"
-!define PRODUCT_VERSION_NUMBER "1.1.0"
+!define PRODUCT_VERSION "1.2.0"
+!define PRODUCT_VERSION_NUMBER "1.2.0"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_NAME}"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
;Required .NET framework
!define MIN_FRA_MAJOR "4"
-!define MIN_FRA_MINOR "6"
+!define MIN_FRA_MINOR "7"
!define MIN_FRA_BUILD "*"
SetCompressor lzma
@@ -126,7 +126,7 @@ Section "HandBrake" SEC01 ; Get .NET if required
${If} $InstallDotNET == "Yes"
SetDetailsView hide
- inetc::get /caption "Downloading Microsoft .NET Framework 4.6.2" /canceltext "Cancel" "https://www.microsoft.com/en-us/download/confirmation.aspx?id=53344" "$INSTDIR\dotnetfx.exe" /end
+ inetc::get /caption "Downloading Microsoft .NET Framework 4.6.2" /canceltext "Cancel" "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56116" "$INSTDIR\dotnetfx.exe" /end
Pop $1
${If} $1 != "OK"
diff --git a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi index 71ba7f8ab..30123ead3 100644 --- a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi +++ b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi @@ -16,7 +16,7 @@ ;Required .NET framework
!define MIN_FRA_MAJOR "4"
-!define MIN_FRA_MINOR "6"
+!define MIN_FRA_MINOR "7"
!define MIN_FRA_BUILD "*"
SetCompressor lzma
@@ -125,7 +125,7 @@ Section "HandBrake" SEC01 ; Get .NET if required
${If} $InstallDotNET == "Yes"
SetDetailsView hide
- inetc::get /caption "Downloading Microsoft .NET Framework 4.6.2" /canceltext "Cancel" "https://www.microsoft.com/en-us/download/confirmation.aspx?id=53344" "$INSTDIR\dotnetfx.exe" /end
+ inetc::get /caption "Downloading Microsoft .NET Framework 4.6.2" /canceltext "Cancel" "https://www.microsoft.com/en-us/download/confirmation.aspx?id=56116" "$INSTDIR\dotnetfx.exe" /end
Pop $1
${If} $1 != "OK"
|