Belatedly update the copyright year to 2013.
[sgt/putty] / windows / version.rc2
index 5bac1ca..026ebac 100644 (file)
 
 /* We keep this around even for snapshots, for monotonicity of version
  * numbering. It needs to be kept up to date. NB _comma_-separated. */
-#define BASE_VERSION 0,59
+#define BASE_VERSION 0,62
 
 #if defined SNAPSHOT
 
 /* Make SVN_REV mandatory for snapshots, to avoid issuing binary
  * version numbers that look like full releases. */
-#if (!defined SVN_REV) || (SVN_REV == 0)
+#ifndef SVN_REV
 #error SVN_REV not defined/nonzero for snapshot build
 #endif
 
 #define VERSION_TEXT "Development snapshot " STR(SNAPSHOT) ":r" STR(SVN_REV)
+#ifdef MODIFIED
+#define BINARY_VERSION 0,0,0,0
+#else
 #define BINARY_VERSION BASE_VERSION,SVN_REV,0
+#endif
 
 #elif defined RELEASE
 
 #define VERSION_TEXT "Release " STR(RELEASE)
 #define BINARY_VERSION BASE_VERSION,0,0
 
+#elif defined PRERELEASE
+
+#define VERSION_TEXT "Pre-release " STR(PRERELEASE) ":r" STR(SVN_REV);
+#define BINARY_VERSION BASE_VERSION,SVN_REV,0
+
 #elif defined SVN_REV
 
 #define VERSION_TEXT "Custom build r" STR(SVN_REV)
+#ifdef MODIFIED
+#define BINARY_VERSION 0,0,0,0
+#else
 #define BINARY_VERSION BASE_VERSION,SVN_REV,0
+#endif
 
 #else
 
@@ -107,7 +120,7 @@ BEGIN
            VALUE "OriginalFilename",   APPNAME
            VALUE "FileVersion",        VERSION_TEXT
            VALUE "ProductVersion",     VERSION_TEXT
-           VALUE "LegalCopyright",     "Copyright \251 1997-2007 Simon Tatham."
+           VALUE "LegalCopyright",     "Copyright \251 1997-2013 Simon Tatham."
 #if (!defined SNAPSHOT) && (!defined RELEASE)
            /* Only if VS_FF_PRIVATEBUILD. */
            VALUE "PrivateBuild",       VERSION_TEXT /* NBI */