1
0
Fork 0

(svn r15661) -Release: 0.7.0-beta2

0.7.0-beta2
rubidium 2009-03-09 23:31:28 +00:00
parent 62e2de5822
commit 57cbb89fa9
4 changed files with 9 additions and 9 deletions

View File

@ -5,7 +5,7 @@ log() {
}
set_default() {
released_version=""
released_version="0.7.0-beta2"
ignore_extra_parameters="0"
# We set all kinds of defaults for params. Later on the user can override

View File

@ -278,7 +278,7 @@ Function CheckFile(filename)
End Function
Dim version
version = DetermineSVNVersion
version = "0.7.0-beta2"
If Not (IsCachedVersion(version) And CheckFile("../src/rev.cpp") And CheckFile("../src/ottdres.rc")) Then
UpdateFiles version
End If

View File

@ -64,8 +64,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,0,@@REVISION@@
PRODUCTVERSION 0,7,0,@@REVISION@@
FILEVERSION 0,7,0,15661
PRODUCTVERSION 0,7,0,15661
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -83,14 +83,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.7.0-beta2\0"
VALUE "InternalName", "openttd\0"
VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2009. 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.7.0-beta2\0"
VALUE "SpecialBuild", "-\0"
END
END

View File

@ -20,7 +20,7 @@
* norev000 is for non-releases that are made on systems without
* subversion or sources that are not a checkout of subversion.
*/
const char _openttd_revision[] = "@@VERSION@@";
const char _openttd_revision[] = "0.7.0-beta2";
/**
* Let us know if current build was modified. This detection
@ -45,11 +45,11 @@ const byte _openttd_revision_modified = @@MODIFIED@@;
* final release will always have a lower version number than the released
* version, thus making comparisions on specific revisions easy.
*/
const uint32 _openttd_newgrf_version = 0 << 28 | 7 << 24 | 0 << 20 | 0 << 19 | (@@REVISION@@ & ((1 << 19) - 1));
const uint32 _openttd_newgrf_version = 0 << 28 | 7 << 24 | 0 << 20 | 0 << 19 | (15661 & ((1 << 19) - 1));
#ifdef __MORPHOS__
/**
* Variable used by MorphOS to show the version.
*/
extern const char morphos_versions_tag[] = "$VER: OpenTTD @@VERSION@@ (@@DATE@@) OpenTTD Team [MorphOS, PowerPC]";
extern const char morphos_versions_tag[] = "$VER: OpenTTD 0.7.0-beta2 (@@DATE@@) OpenTTD Team [MorphOS, PowerPC]";
#endif