-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add resource info for windows build
- Loading branch information
Showing
3 changed files
with
102 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#include "winver.h" | ||
#ifdef MSVC | ||
#pragma code_page (65001) | ||
#endif | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION @RIME_VERSION_COMMA_SEPARATED@,0 | ||
PRODUCTVERSION @RIME_VERSION_COMMA_SEPARATED@,0 | ||
FILEFLAGSMASK 0x17L | ||
#ifdef _DEBUG | ||
FILEFLAGS 0x1L | ||
#else | ||
FILEFLAGS 0x0L | ||
#endif | ||
FILEOS 0x40004L | ||
FILETYPE 0x1L | ||
FILESUBTYPE 0x0L | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "080404b0" | ||
BEGIN | ||
VALUE "Comments", "Powered by RIME | 中州韵输入法引擎" | ||
VALUE "CompanyName", "式恕堂" | ||
VALUE "FileDescription", "中州韵输入法引擎" | ||
VALUE "InternalName", "librime" | ||
VALUE "LegalCopyright", "式恕堂 版权所无" | ||
VALUE "OriginalFilename", "rime.dll" | ||
VALUE "ProductName", "中州韵输入法引擎" | ||
VALUE "ProductVersion", "@rime_version@@tag_subfix@" | ||
END | ||
BLOCK "040904b0" | ||
BEGIN | ||
VALUE "Comments", "Powered by RIME | 中州韻輸入法引擎" | ||
VALUE "CompanyName", "式恕堂" | ||
VALUE "FileDescription", "中州韻輸入法引擎" | ||
VALUE "InternalName", "librime" | ||
VALUE "LegalCopyright", "式恕堂 版權所無" | ||
VALUE "OriginalFilename", "rime.dll" | ||
VALUE "ProductName", "中州韻輸入法引擎" | ||
VALUE "ProductVersion", "@rime_version@@tag_subfix@" | ||
END | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "Comments", "Powered by RIME | Rime Input Method Engine" | ||
VALUE "CompanyName", "rime.io" | ||
VALUE "FileDescription", "Rime Input Method Engine" | ||
VALUE "InternalName", "librime" | ||
VALUE "LegalCopyright", "All Left reserved ©rime.io " | ||
VALUE "OriginalFilename", "rime.dll" | ||
VALUE "ProductName", "Rime Input Method Engine" | ||
VALUE "ProductVersion", "@rime_version@@tag_subfix@" | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x804, 1200 | ||
VALUE "Translation", 0x409, 1200 | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |