Skip to content

Commit

Permalink
associate .asc files with HashCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
gurnec committed Mar 6, 2015
1 parent fb67c7f commit e08a568
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions HashCheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ static const LPCTSTR ASSOCIATIONS[] =
TEXT(".md4"),
TEXT(".md5"),
TEXT(".sha1"),
TEXT(".sha256")
TEXT(".sha256"),
TEXT(".asc")
};

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

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

// Register approval
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,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,2,2,5
#define HASHCHECK_VERSION_FULL 2,2,3,6

// String version: May be any suitable string
#define HASHCHECK_VERSION_STR "2.2.2.5"
#define HASHCHECK_VERSION_STR "2.2.3.6"

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

0 comments on commit e08a568

Please sign in to comment.