From 633b054830fd0f7855abad8c650ea09479de83ab Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 25 Jul 2008 20:16:51 +0000 Subject: [PATCH] (svn r13829) -Release 0.6.2-RC2. --- config.lib | 2 +- projects/determineversion.vbs | 2 +- src/ottdres.rc.in | 8 ++++---- src/rev.cpp.in | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config.lib b/config.lib index 1a32297566..589c5a6949 100644 --- a/config.lib +++ b/config.lib @@ -5,7 +5,7 @@ log() { } set_default() { - released_version="" + released_version="0.6.2-RC2" ignore_extra_parameters="0" # We set all kinds of defaults for params. Later on the user can override diff --git a/projects/determineversion.vbs b/projects/determineversion.vbs index 3ac5852f5a..ed04437798 100755 --- a/projects/determineversion.vbs +++ b/projects/determineversion.vbs @@ -239,7 +239,7 @@ Function IsCachedVersion(version) End Function Dim version -version = DetermineSVNVersion +version = "0.6.2-RC2" If Not (IsCachedVersion(version) And FSO.FileExists("../src/rev.cpp") And FSO.FileExists("../src/ottdres.rc")) Then UpdateFiles version End If diff --git a/src/ottdres.rc.in b/src/ottdres.rc.in index 2eebceadd0..3d1eb004f3 100644 --- a/src/ottdres.rc.in +++ b/src/ottdres.rc.in @@ -66,8 +66,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,6,0,@@REVISION@@ - PRODUCTVERSION 0,6,0,@@REVISION@@ + FILEVERSION 0,6,2,13829 + PRODUCTVERSION 0,6,2,13829 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -85,14 +85,14 @@ BEGIN VALUE "Comments", "This program is licensed under the GNU General Public License.\0" VALUE "CompanyName", "OpenTTD Development Team\0" VALUE "FileDescription", "OpenTTD\0" - VALUE "FileVersion", "Development @@VERSION@@\0" + VALUE "FileVersion", "0.6.2-RC2\0" VALUE "InternalName", "openttd\0" VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2008. All Rights Reserved.\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "openttd.exe\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "OpenTTD\0" - VALUE "ProductVersion", "Development @@VERSION@@\0" + VALUE "ProductVersion", "0.6.2-RC2\0" VALUE "SpecialBuild", "-\0" END END diff --git a/src/rev.cpp.in b/src/rev.cpp.in index ec14f751e8..f089f1b726 100644 --- a/src/rev.cpp.in +++ b/src/rev.cpp.in @@ -19,7 +19,7 @@ * norev000 is for non-releases that are made on systems without * subversion or sources that are not a checkout of subversion. */ -extern const char _openttd_revision[] = "@@VERSION@@"; +extern const char _openttd_revision[] = "0.6.2-RC2"; /** * The NewGRF revision of OTTD: @@ -34,11 +34,11 @@ extern const char _openttd_revision[] = "@@VERSION@@"; * final release will always have a lower version number than the released * version, thus making comparisions on specific revisions easy. */ -uint32 _openttd_newgrf_version = 0 << 28 | 6 << 24 | 2 << 20 | 0 << 19 | (@@REVISION@@ & ((1 << 19) - 1)); +uint32 _openttd_newgrf_version = 0 << 28 | 6 << 24 | 2 << 20 | 0 << 19 | (13829 & ((1 << 19) - 1)); #ifdef __MORPHOS__ /** * Variable used by MorphOS to show the version. */ -extern const char morphos_versions_tag[] = "\\0$VER: OpenTTD @@VERSION@@ (@@DATE@@) OpenTTD Team [MorphOS, PowerPC]"; +extern const char morphos_versions_tag[] = "\\0$VER: OpenTTD 0.6.2-RC2 (@@DATE@@) OpenTTD Team [MorphOS, PowerPC]"; #endif