2 * Standard Windows version information.
3 * (For inclusion in other .rc files with appropriate macro definitions.)
4 * FIXME: This file is called '.rc2' rather than '.rc' to avoid MSVC trying
5 * to compile it on its own when using the project files. Nicer solutions
10 * Binary versions in Windows are major.minor.build.revision. Each
11 * component is 16-bit.
14 * PuTTY version number (e.g. 0.58). (We've made a policy decision
15 * that these will be numeric from now on.)
16 * Present in releases and snapshots (for the sake of monotonicity
17 * in version numbers).
19 * In releases, always 0.
20 * In snapshots, nearest Subversion revision. (It shouldn't be
21 * assumed that only one binary will have a given build number, of
26 * Examples of these version numbers:
27 * Release: 0.58.0.0 (but 0.58 didn't have a VERSIONINFO resource)
28 * Snapshot: 0.58.6356.0 (between 0.58 and the next release)
33 * Mechanics of version naming/numbering.
34 * (This is a ripoff of ../version.c.)
38 #define STR(x) STR1(x)
40 /* We keep this around even for snapshots, for monotonicity of version
41 * numbering. It needs to be kept up to date. NB _comma_-separated. */
42 #define BASE_VERSION 0,60
46 /* Make SVN_REV mandatory for snapshots, to avoid issuing binary
47 * version numbers that look like full releases. */
49 #error SVN_REV not defined/nonzero for snapshot build
52 #define VERSION_TEXT "Development snapshot " STR(SNAPSHOT) ":r" STR(SVN_REV)
54 #define BINARY_VERSION 0,0,0,0
56 #define BINARY_VERSION BASE_VERSION,SVN_REV,0
61 #define VERSION_TEXT "Release " STR(RELEASE)
62 #define BINARY_VERSION BASE_VERSION,0,0
66 #define VERSION_TEXT "Custom build r" STR(SVN_REV)
68 #define BINARY_VERSION 0,0,0,0
70 #define BINARY_VERSION BASE_VERSION,SVN_REV,0
75 /* We can't reliably get the same date and time as version.c, so
76 * we won't bother trying. */
77 #define VERSION_TEXT "Unidentified build"
78 #define BINARY_VERSION 0,0,0,0
83 * The actual VERSIONINFO resource.
85 VS_VERSION_INFO VERSIONINFO
86 /* (None of this "fixed" info appears to be trivially user-visible on
87 * Win98SE. The binary version does show up on Win2K.) */
88 FILEVERSION BINARY_VERSION
89 PRODUCTVERSION BINARY_VERSION /* version of whole suite */
90 FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PRIVATEBUILD
97 #elif !defined RELEASE
100 FILEOS VOS__WINDOWS32
102 FILESUBTYPE 0x0L /* n/a for VFT_APP */
104 /* (On Win98SE and Win2K, we can see most of this on the Version tab
105 * in the file properties in Explorer.) */
106 BLOCK "StringFileInfo"
108 /* "lang-charset" LLLLCCCC = (UK English, Unicode) */
111 VALUE "CompanyName", "Simon Tatham" /* required :/ */
112 VALUE "ProductName", "PuTTY suite"
113 VALUE "FileDescription", APPDESC
114 VALUE "InternalName", APPNAME
115 VALUE "OriginalFilename", APPNAME
116 VALUE "FileVersion", VERSION_TEXT
117 VALUE "ProductVersion", VERSION_TEXT
118 VALUE "LegalCopyright", "Copyright \251 1997-2007 Simon Tatham."
119 #if (!defined SNAPSHOT) && (!defined RELEASE)
120 /* Only if VS_FF_PRIVATEBUILD. */
121 VALUE "PrivateBuild", VERSION_TEXT /* NBI */
127 /* Once again -- same meanings -- apparently necessary */
128 VALUE "Translation", 0x809, 1200
134 #undef BINARY_VERSION