Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mugiseyebrows committed Jul 11, 2019
1 parent 742d3c5 commit ec9d162
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 3 deletions.
48 changes: 48 additions & 0 deletions mugi-grep.rc
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
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

conf = {
'AppName': 'mugi-grep',
'AppVersion': '1.2.0',
'AppVersion': '1.3.0',
'Binaries': [{
'Source': 'D:\\dev\\mugi-grep\\release\\mugi-grep.exe',
'Dest': ''
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
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

0 comments on commit ec9d162

Please sign in to comment.