diff --git a/changelog.txt b/changelog.txt index d78b73ae35..76c62dccd6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,13 +1,27 @@ -0.5.3-RC3 (2007-30-07) +0.5.3 (2007-09-15) ------------------------------------------------------------------------ -- Fix: spectators are not allowed to issue commands (r11006) +- Fix: Possible NULL pointer dereference that could be triggered remotely (r11074) +- Fix: Removing CMD_AUTO from some commands could remotely trigger an assertion [FS#1179] (r11040) +- Fix: Underflow that caused overflows in the performance rating [FS#1179] (r11039) +- Fix: [Windows] MIDI does not stop when closing openttd [FS#1164] (r11029) +- Fix: Do not unconditionally assume that a tile has a depot (r11027) +- Fix: Give a more correct error when building some things on tile 0 [FS#1173] (r11024) +- Fix: Do not display income/expenses when they do not belong to a "valid" tile, like the money cheat and giving money [FS#1175] (r11021) +- Fix: One could not give money when (s)he had too much money [FS#1174] (r11020) +- Fix: Disallow buying/selling shares in your own company or a bankrupt company [FS#1169] (r11018) +- Fix: Crash when quiting the game in one of the end score windows [FS#1218] (r11071) + + +0.5.3-RC3 (2007-08-30) +------------------------------------------------------------------------ +- Fix: Spectators are not allowed to issue commands (r11006) - Fix: Make the AI not crash when it has ships as the AI does not support them [FS#1133] (r10942) - Fix: Trains would not get flooded when they are at the lower part of a tile that would become a coast tile after flooding [FS#1127] (r10892) - Fix: Removing road with the road removal tool would also work with a negative bank account, making the bank account even more negative than it was [FS#1125] (r10890) -- Fix: Some isocodes were wrong (r10877) +- Fix: Some isocodes were wrong, resulting in some NewGRF not working properly for the affected languages (r10877) - Fix: [Windows] Do not try to minimise or restore the window when closing OpenTTD [FS#998] (r10835) -- Fix: trains going over bridges would get the "going down hill" accelerate bonus, which causes trains to go faster on bridges than they would be going on level land. [FS#1096] (r10739) -- Fix: trains being split into two pieces when loading an old savegame. [FS#1062] (r10735) +- Fix: Trains going over bridges would get the "going down hill" accelerate bonus, which causes trains to go faster on bridges than they would be going on level land [FS#1096] (r10739) +- Fix: Trains being split into two pieces when loading an old savegame [FS#1062] (r10735) - Fix: [OS/2] Fix chdir problem with open/save dialog (r10650) - Fix: One could not remove locks that were build in a (very) old version of OpenTTD [FS#1038] (r10593) - Fix: One cannot navigate using arrow keys in the game name text box [FS#1038] (r10500) diff --git a/docs/openttd.6 b/docs/openttd.6 index eb24ed3452..02e2d66438 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 Aug 30, 2007 +.Dd Sep 15, 2007 .Dt OPENTTD 6 .Sh NAME .Nm openttd diff --git a/os/debian/changelog b/os/debian/changelog index 184c494929..ad09729ba5 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,8 +1,14 @@ +openttd (0.5.3-1) unstable; urgency=low + + * New upstream release. + + -- Matthijs Kooijman Sat, 15 Sep 2007 13:30:00 +0100 + openttd (0.5.3~rc3-1) unstable; urgency=low * New upstream release. - -- Matthijs Kooijman Thu, 30 Aug 2007 23:30:00 +0100 + -- Matthijs Kooijman Thu, 30 Aug 2007 23:30:00 +0100 openttd (0.5.3~rc2-1) unstable; urgency=low diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi index 6b1d0b88b5..5a49aca12e 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.3" ; Define application version -!define INSTALLERVERSION 37 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!! +!define INSTALLERVERSION 38 ; 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 1ab7bf3871..92a66ae7d3 100644 --- a/ottdres.rc +++ b/ottdres.rc @@ -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", "0.5.2\0" + VALUE "FileVersion", "0.5.3\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.5.2.0\0" + VALUE "ProductVersion", "0.5.3.0\0" VALUE "SpecialBuild", "-\0" END END diff --git a/readme.txt b/readme.txt index 93262a581f..69ea86b544 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2007-30-08 -Release version: 0.5.3-RC3 +Last updated: 2007-09-15 +Release version: 0.5.3 ------------------------------------------------------------------------