-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
742d3c5
commit ec9d162
Showing
3 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
IDI_ICON1 ICON DISCARDABLE "mugi-grep.ico" | ||
|
||
#include "windows.h" | ||
#include "version.h" | ||
|
||
#define VER_PRODUCTVERSION APP_VERSION_INT | ||
#define VER_FILEVERSION APP_VERSION_INT | ||
#define VER_PRODUCTVERSION_STR APP_VERSION | ||
#define VER_FILEVERSION_STR APP_VERSION | ||
|
||
#ifndef DEBUG | ||
#define VER_DEBUG 0 | ||
#else | ||
#define VER_DEBUG VS_FF_DEBUG | ||
#endif | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VER_FILEVERSION | ||
PRODUCTVERSION VER_PRODUCTVERSION | ||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
FILEFLAGS 0 | ||
FILEOS VOS__WINDOWS32 | ||
FILETYPE VFT_APP | ||
FILESUBTYPE VFT2_UNKNOWN | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "CompanyName", "" | ||
VALUE "FileDescription", "" | ||
VALUE "FileVersion", VER_FILEVERSION_STR | ||
VALUE "InternalName", "" | ||
VALUE "LegalCopyright", "" | ||
VALUE "LegalTrademarks1", "" | ||
VALUE "LegalTrademarks2", "" | ||
VALUE "OriginalFilename", "" | ||
VALUE "ProductName", "" | ||
VALUE "ProductVersion", VER_PRODUCTVERSION_STR | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#define APP_NAME "mugi-grep" | ||
#define APP_VERSION "1.2.0" | ||
#define APP_VERSION_INT 1,2,0,0 | ||
#define APP_VERSION "1.3.0" | ||
#define APP_VERSION_INT 1,3,0,0 |