forked from geany/geany
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geany_private.rc
38 lines (33 loc) · 1011 Bytes
/
geany_private.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <windows.h> // include for version info constants
#define VER_FILEVERSION 2,1,0,0
#define VER_FILEVERSION_STR "2.1"
#define APP_MANIFEST 1
A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "icons/geany.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_FILEVERSION
FILETYPE VFT_APP
{
BLOCK "StringFileInfo"
{
// U.S. English, Multilingual
// (see https://msdn.microsoft.com/en-us/library/aa381049%28VS.85%29.aspx)
BLOCK "040904E4"
{
VALUE "CompanyName", ""
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "FileDescription", "Geany"
VALUE "InternalName", "Geany"
VALUE "LegalCopyright", "Copyright 2005 The Geany contributors"
VALUE "LegalTrademarks", ""
VALUE "OriginalFilename", "Geany.exe"
VALUE "ProductName", "Geany"
VALUE "ProductVersion", VER_FILEVERSION_STR
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x409, 0x04E4
}
}
APP_MANIFEST RT_MANIFEST "geany.exe.manifest"