Skip to content

Commit b390db8

Browse files
committed
update version to 2.4.0.55 for release
1 parent b9fcdf0 commit b390db8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

HashCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ HRESULT Install( BOOL bRegisterUninstaller, BOOL bCopyFile )
354354
RegSetSZ(hKey, TEXT("DisplayIcon"), lpszTargetPath);
355355
RegSetSZ(hKey, TEXT("DisplayName"), TEXT(HASHCHECK_NAME_STR));
356356
RegSetSZ(hKey, TEXT("DisplayVersion"), TEXT(HASHCHECK_VERSION_STR));
357-
RegSetDW(hKey, TEXT("EstimatedSize"), 896);
357+
RegSetDW(hKey, TEXT("EstimatedSize"), 1073);
358358
RegSetSZ(hKey, TEXT("HelpLink"), szURLFull);
359359
RegSetDW(hKey, TEXT("NoModify"), 1);
360360
RegSetDW(hKey, TEXT("NoRepair"), 1);

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.4.0.52-beta
1+
version: 2.4.0.55
22

33
image: Visual Studio 2015
44

installer/HashCheck.nsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Unicode true
77

88
Name "HashCheck"
9-
OutFile "HashCheckSetup-v2.4.0.52-beta.exe"
9+
OutFile "HashCheckSetup-v2.4.0.exe"
1010

1111
RequestExecutionLevel admin
1212
ManifestSupportedOS all
@@ -53,13 +53,13 @@ FunctionEnd
5353
!insertmacro MUI_LANGUAGE "Ukrainian"
5454
!insertmacro MUI_LANGUAGE "Catalan"
5555

56-
VIProductVersion "2.4.0.52-beta"
56+
VIProductVersion "2.4.0.55"
5757
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "HashCheck Shell Extension"
58-
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "2.4.0.52-beta"
58+
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "2.4.0.55"
5959
VIAddVersionKey /LANG=${LANG_ENGLISH} "Comments" "Installer distributed from https://github.com/gurnec/HashCheck/releases"
6060
VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "Copyright © 2008-2016 Kai Liu, Christopher Gurnee, Tim Schlueter, et al. All rights reserved."
6161
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "Installer (x86/x64) from https://github.com/gurnec/HashCheck/releases"
62-
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "2.4.0.52-beta"
62+
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "2.4.0.55"
6363

6464
; With solid compression, files that are required before the
6565
; actual installation should be stored first in the data block,

version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
#define HASHCHECK_NAME_STR "HashCheck Shell Extension"
1313

1414
// Full version: MUST be in the form of major,minor,revision,build
15-
#define HASHCHECK_VERSION_FULL 2,4,0,52
15+
#define HASHCHECK_VERSION_FULL 2,4,0,55
1616

1717
// String version: May be any suitable string
18-
#define HASHCHECK_VERSION_STR "2.4.0.52-beta"
18+
#define HASHCHECK_VERSION_STR "2.4.0.55"
1919

2020
#ifdef _USRDLL
2121
// PE version: MUST be in the form of major.minor

0 commit comments

Comments
 (0)