summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_helper_version.rc
blob: 9e3552434b602e025a95d5b327395eec24010262 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
#include "version.h"

#ifdef APSTUDIO_INVOKED
# error Don't open this in the GUI, it'll be massacred on save.
#endif // APSTUDIO_INVOKED

/////////////////////////////////////////////////////////////////////////////
//
// Version
//

1 VERSIONINFO
 FILEVERSION CHROME_VERSION
 PRODUCTVERSION CHROME_VERSION
 FILEFLAGSMASK 0x17L
#ifdef _DEBUG
 FILEFLAGS 0x1L
#else
 FILEFLAGS 0x0L
#endif
 FILEOS 0x4L
 FILETYPE 0x2L
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        // Note that Firefox 3.0 requires the charset to be 04e4 (multi-lingual).
        BLOCK "040904e4"
        BEGIN
            VALUE "CompanyName", COMPANY_FULLNAME_STRING
            VALUE "CompanyShortName", COMPANY_SHORTNAME_STRING
            VALUE "ProductName", "Google Chrome Frame"
            VALUE "ProductShortName", "ChromeFrame"
            VALUE "ProductVersion", CHROME_VERSION_STRING
            VALUE "FileDescription", "Chrome Frame renders the Web of the future in the browsers of the past. It's like strapping a rocket engine to a minivan."
            VALUE "FileVersion", CHROME_VERSION_STRING
            VALUE "InternalName", "Google Chrome Frame"
            VALUE "LegalCopyright", COPYRIGHT_STRING
            VALUE "FileExtents", "chromeframe"
            VALUE "FileOpenName", "chromeframe"
            VALUE "LastChange", LASTCHANGE_STRING
            VALUE "Official Build", OFFICIAL_BUILD_STRING
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        // Note that Firefox 3.0 requires the charset to be 1252 (multi-lingual).
        VALUE "Translation", 0x409, 1252
    END
END