mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 01:45:32 +00:00
Now builds from a clean repo: developer/src/build.sh configure build test publish * Splits kmbrowserhost into kmdbrowserhost for Developer; this means that Developer Browser Host now inherits the Developer settings rather than the Keyman for Windows settings, and simplifies distribution and management. The only difference between the two is in the startup code so this seems like a good split. * Cleanup of various build scripts and dependencies.
32 lines
919 B
Text
32 lines
919 B
Text
#include "../../../common/windows/cpp/include/keymanversion.h"
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION KV_FILEVERSION
|
|
PRODUCTVERSION KV_PRODUCTVERSION
|
|
FILEFLAGSMASK 0x3fL
|
|
FILEFLAGS 0x0L
|
|
FILEOS 0x4L
|
|
FILETYPE 0x2L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "0C0904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", KV_COMPANY_NAME
|
|
VALUE "FileDescription", "Keyman Developer Browser Host Process\0"
|
|
VALUE "FileVersion", KV_VERSION_STRING
|
|
VALUE "InternalName", "KMDBROWSERHOST\0"
|
|
VALUE "LegalCopyright", KV_LEGAL_COPYRIGHT
|
|
VALUE "LegalTrademarks", KV_LEGAL_TRADEMARKS
|
|
VALUE "OriginalFilename", "KMDBROWSERHOST.EXE\0"
|
|
VALUE "ProductName", "Keyman\0"
|
|
VALUE "ProductVersion", KV_VERSION_STRING
|
|
VALUE "Comments", "\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0xc09, 1252
|
|
END
|
|
END
|