(svn r9977) [0.5] -Prepare 0.5 branch for release of 0.5.2.

This commit is contained in:
rubidium 2007-05-29 18:02:14 +00:00
parent aafb49b3c4
commit 4f757bb914
6 changed files with 22 additions and 8 deletions

View File

@ -1,3 +1,10 @@
0.5.2 (2007-05-29)
------------------------------------------------------------------------
- Feature: Add threading support for MorphOS (r9759)
- Fix: Bridges and tunnels were not always removed on bankruptcy, thus leaving tunnels/bridges with an invalid owner that would crash the game when clicking with the query tool on them (r9966)
- Fix: Null pointer dereference under MorphOS and AmigaOS (r9861)
0.5.2-RC1 (2007-05-16) 0.5.2-RC1 (2007-05-16)
------------------------------------------------------------------------ ------------------------------------------------------------------------
- Feature: Windows 95/98/ME check in Windows 2000/XP/2003/Vista builds (r9834) - Feature: Windows 95/98/ME check in Windows 2000/XP/2003/Vista builds (r9834)
@ -25,6 +32,7 @@
------------------------------------------------------------------------ ------------------------------------------------------------------------
(None) (None)
0.5.1-RC3 (2007-04-17) 0.5.1-RC3 (2007-04-17)
------------------------------------------------------------------------ ------------------------------------------------------------------------
- Feature: Add list_patches to console commands; shows all patches and values (r9565) - Feature: Add list_patches to console commands; shows all patches and values (r9565)

View File

@ -1,6 +1,6 @@
.\" Hey, EMACS: -*- nroff -*- .\" Hey, EMACS: -*- nroff -*-
.\" Please adjust this date whenever revising the manpage. .\" Please adjust this date whenever revising the manpage.
.Dd May 16, 2007 .Dd May 29, 2007
.Dt OPENTTD 6 .Dt OPENTTD 6
.Sh NAME .Sh NAME
.Nm openttd .Nm openttd

View File

@ -1,3 +1,9 @@
openttd (0.5.2-1) unstable; urgency=low
* New upstream release.
-- Matthijs Kooijman <m.kooijman@student.utwente.nl> Tue, 29 May 2007 20:00:00 +0100
openttd (0.5.2~rc1-1) unstable; urgency=low openttd (0.5.2~rc1-1) unstable; urgency=low
* New upstream release. * New upstream release.

View File

@ -1,6 +1,6 @@
!define APPNAME "OpenTTD" ; Define application name !define APPNAME "OpenTTD" ; Define application name
!define APPVERSION "0.5.2" ; Define application version !define APPVERSION "0.5.2" ; Define application version
!define INSTALLERVERSION 33 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!! !define INSTALLERVERSION 34 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!!
!define APPURLLINK "http://www.openttd.org" !define APPURLLINK "http://www.openttd.org"
!define APPNAMEANDVERSION "${APPNAME} ${APPVERSION}" !define APPNAMEANDVERSION "${APPNAME} ${APPVERSION}"

View File

@ -65,8 +65,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,5,0,0 FILEVERSION 0,5,2,0
PRODUCTVERSION 0,5,0,0 PRODUCTVERSION 0,5,2,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -84,14 +84,14 @@ BEGIN
VALUE "Comments", "This program is licensed under the GNU General Public License.\0" VALUE "Comments", "This program is licensed under the GNU General Public License.\0"
VALUE "CompanyName", "OpenTTD Development Team\0" VALUE "CompanyName", "OpenTTD Development Team\0"
VALUE "FileDescription", "OpenTTD\0" VALUE "FileDescription", "OpenTTD\0"
VALUE "FileVersion", "Development Version\0" VALUE "FileVersion", "0.5.2\0"
VALUE "InternalName", "openttd\0" VALUE "InternalName", "openttd\0"
VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2007. All Rights Reserved.\0" VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2007. All Rights Reserved.\0"
VALUE "LegalTrademarks", "\0" VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "openttd.exe\0" VALUE "OriginalFilename", "openttd.exe\0"
VALUE "PrivateBuild", "\0" VALUE "PrivateBuild", "\0"
VALUE "ProductName", "OpenTTD\0" VALUE "ProductName", "OpenTTD\0"
VALUE "ProductVersion", "0.0.0.0\0" VALUE "ProductVersion", "0.5.2.0\0"
VALUE "SpecialBuild", "-\0" VALUE "SpecialBuild", "-\0"
END END
END END

View File

@ -1,6 +1,6 @@
OpenTTD README OpenTTD README
Last updated: 2007-05-16 Last updated: 2007-05-29
Release version: 0.5.2-RC1 Release version: 0.5.2
------------------------------------------------------------------------ ------------------------------------------------------------------------