mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
40 lines
1,017 B
Plaintext
40 lines
1,017 B
Plaintext
#include "windows.h"
|
|
|
|
IDI_ICON1 ICON DISCARDABLE "icons/programicon.ico"
|
|
IDI_ICON2 ICON DISCARDABLE "icons/programicon_old.ico"
|
|
#define GOLDENDICT_VER 1,5,0,0
|
|
#define GOLDENDICT_VER_STR "1.5.0"
|
|
|
|
#if !defined( _MSC_VER ) && !defined( GD_NO_MANIFEST ) // Visual Studio embeds the manifest automatically
|
|
1 RT_MANIFEST GoldenDict.exe.manifest
|
|
#endif
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION GOLDENDICT_VER
|
|
PRODUCTVERSION GOLDENDICT_VER
|
|
FILEFLAGS 0x0L
|
|
FILEFLAGSMASK 0x3fL
|
|
FILEOS 0x00040004L
|
|
FILETYPE 0x1L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "000004b0"
|
|
BEGIN
|
|
VALUE "CompanyName", "GoldenDict"
|
|
VALUE "FileDescription", "GoldenDict dictionary lookup program"
|
|
VALUE "FileVersion", GOLDENDICT_VER_STR
|
|
VALUE "LegalCopyright", "www.goldendict.org"
|
|
VALUE "InternalName", "goldendict"
|
|
VALUE "OriginalFilename", "goldendict.exe"
|
|
VALUE "ProductName", "GoldenDict"
|
|
VALUE "ProductVersion", GOLDENDICT_VER_STR
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0, 1200
|
|
END
|
|
END
|