Skip to content

Commit e08a568

Browse files
committed
associate .asc files with HashCheck
1 parent fb67c7f commit e08a568

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

HashCheck.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ static const LPCTSTR ASSOCIATIONS[] =
3131
TEXT(".md4"),
3232
TEXT(".md5"),
3333
TEXT(".sha1"),
34-
TEXT(".sha256")
34+
TEXT(".sha256"),
35+
TEXT(".asc")
3536
};
3637

3738
// Prototypes for the self-registration/install/uninstall helper functions
@@ -181,7 +182,7 @@ STDAPI DllRegisterServerEx( LPCTSTR lpszModuleName )
181182
RegCloseKey(hKey);
182183
} else return(SELFREG_E_CLASS);
183184

184-
// The actual association of .sfv/.md4/.md5/.sha1/.sha256 files with our program ID
185+
// The actual association of .sfv/.md4/.md5/.sha1/.sha256/.asc files with our program ID
185186
// will be handled by DllInstall, not DllRegisterServer.
186187

187188
// Register approval

version.h

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

1313
// Full version: MUST be in the form of major,minor,revision,build
14-
#define HASHCHECK_VERSION_FULL 2,2,2,5
14+
#define HASHCHECK_VERSION_FULL 2,2,3,6
1515

1616
// String version: May be any suitable string
17-
#define HASHCHECK_VERSION_STR "2.2.2.5"
17+
#define HASHCHECK_VERSION_STR "2.2.3.6"
1818

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

0 commit comments

Comments
 (0)