diff --git a/changelog.txt b/changelog.txt index f8bfd674cd..c8f8415188 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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) ------------------------------------------------------------------------ - Feature: Windows 95/98/ME check in Windows 2000/XP/2003/Vista builds (r9834) @@ -25,6 +32,7 @@ ------------------------------------------------------------------------ (None) + 0.5.1-RC3 (2007-04-17) ------------------------------------------------------------------------ - Feature: Add list_patches to console commands; shows all patches and values (r9565) diff --git a/docs/openttd.6 b/docs/openttd.6 index 9a1daab7e4..01a7337ad7 100644 --- a/docs/openttd.6 +++ b/docs/openttd.6 @@ -1,6 +1,6 @@ .\" Hey, EMACS: -*- nroff -*- .\" Please adjust this date whenever revising the manpage. -.Dd May 16, 2007 +.Dd May 29, 2007 .Dt OPENTTD 6 .Sh NAME .Nm openttd diff --git a/os/debian/changelog b/os/debian/changelog index d424242e29..71470faa1f 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,3 +1,9 @@ +openttd (0.5.2-1) unstable; urgency=low + + * New upstream release. + + -- Matthijs Kooijman Tue, 29 May 2007 20:00:00 +0100 + openttd (0.5.2~rc1-1) unstable; urgency=low * New upstream release. diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi index d7a2f13d1d..df75eb5ae7 100644 --- a/os/win32/installer/install.nsi +++ b/os/win32/installer/install.nsi @@ -1,6 +1,6 @@ !define APPNAME "OpenTTD" ; Define application name !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 APPNAMEANDVERSION "${APPNAME} ${APPVERSION}" diff --git a/ottdres.rc b/ottdres.rc index e4922a5201..1ab7bf3871 100644 --- a/ottdres.rc +++ b/ottdres.rc @@ -65,8 +65,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,5,0,0 - PRODUCTVERSION 0,5,0,0 + FILEVERSION 0,5,2,0 + PRODUCTVERSION 0,5,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -84,14 +84,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.5.2\0" VALUE "InternalName", "openttd\0" VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2007. All Rights Reserved.\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "openttd.exe\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "OpenTTD\0" - VALUE "ProductVersion", "0.0.0.0\0" + VALUE "ProductVersion", "0.5.2.0\0" VALUE "SpecialBuild", "-\0" END END diff --git a/readme.txt b/readme.txt index f748039632..4952de509e 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2007-05-16 -Release version: 0.5.2-RC1 +Last updated: 2007-05-29 +Release version: 0.5.2 ------------------------------------------------------------------------