From b390db89737b4bdd1d412f1ec1c3adc6b3323c8c Mon Sep 17 00:00:00 2001 From: Christopher Gurnee Date: Wed, 7 Sep 2016 16:25:44 -0400 Subject: [PATCH] update version to 2.4.0.55 for release --- HashCheck.cpp | 2 +- appveyor.yml | 2 +- installer/HashCheck.nsi | 8 ++++---- version.h | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/HashCheck.cpp b/HashCheck.cpp index 833a80e..9570946 100644 --- a/HashCheck.cpp +++ b/HashCheck.cpp @@ -354,7 +354,7 @@ HRESULT Install( BOOL bRegisterUninstaller, BOOL bCopyFile ) RegSetSZ(hKey, TEXT("DisplayIcon"), lpszTargetPath); RegSetSZ(hKey, TEXT("DisplayName"), TEXT(HASHCHECK_NAME_STR)); RegSetSZ(hKey, TEXT("DisplayVersion"), TEXT(HASHCHECK_VERSION_STR)); - RegSetDW(hKey, TEXT("EstimatedSize"), 896); + RegSetDW(hKey, TEXT("EstimatedSize"), 1073); RegSetSZ(hKey, TEXT("HelpLink"), szURLFull); RegSetDW(hKey, TEXT("NoModify"), 1); RegSetDW(hKey, TEXT("NoRepair"), 1); diff --git a/appveyor.yml b/appveyor.yml index a1cb44c..957f13d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 2.4.0.52-beta +version: 2.4.0.55 image: Visual Studio 2015 diff --git a/installer/HashCheck.nsi b/installer/HashCheck.nsi index 23a84b0..a79c3fe 100644 --- a/installer/HashCheck.nsi +++ b/installer/HashCheck.nsi @@ -6,7 +6,7 @@ Unicode true Name "HashCheck" -OutFile "HashCheckSetup-v2.4.0.52-beta.exe" +OutFile "HashCheckSetup-v2.4.0.exe" RequestExecutionLevel admin ManifestSupportedOS all @@ -53,13 +53,13 @@ FunctionEnd !insertmacro MUI_LANGUAGE "Ukrainian" !insertmacro MUI_LANGUAGE "Catalan" -VIProductVersion "2.4.0.52-beta" +VIProductVersion "2.4.0.55" VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "HashCheck Shell Extension" -VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "2.4.0.52-beta" +VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "2.4.0.55" VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "Installer distributed from https://github.com/gurnec/HashCheck/releases" VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright © 2008-2016 Kai Liu, Christopher Gurnee, Tim Schlueter, et al. All rights reserved." VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Installer (x86/x64) from https://github.com/gurnec/HashCheck/releases" -VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "2.4.0.52-beta" +VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "2.4.0.55" ; With solid compression, files that are required before the ; actual installation should be stored first in the data block, diff --git a/version.h b/version.h index d782409..1e447e1 100644 --- a/version.h +++ b/version.h @@ -12,10 +12,10 @@ #define HASHCHECK_NAME_STR "HashCheck Shell Extension" // Full version: MUST be in the form of major,minor,revision,build -#define HASHCHECK_VERSION_FULL 2,4,0,52 +#define HASHCHECK_VERSION_FULL 2,4,0,55 // String version: May be any suitable string -#define HASHCHECK_VERSION_STR "2.4.0.52-beta" +#define HASHCHECK_VERSION_STR "2.4.0.55" #ifdef _USRDLL // PE version: MUST be in the form of major.minor