# HG changeset patch # User rubidium # Date 1216224352 0 # Node ID b56fd5acecaf8094ee120d52b20e755c1f7c25f0 # Parent c49a103d57ab6ccd70f844c33f39b0fd5907d203 (svn r13710) [0.6] -Prepare: for 0.6.2-RC1. diff -r c49a103d57ab -r b56fd5acecaf changelog.txt --- a/changelog.txt Wed Jul 16 10:35:01 2008 +0000 +++ b/changelog.txt Wed Jul 16 16:05:52 2008 +0000 @@ -1,4 +1,4 @@ -0.6.2-RC1 (2008-??-??) +0.6.2-RC1 (2008-07-16) ------------------------------------------------------------------------ - Fix: Possible buffer overflow in string truncation code (r13700) - Fix: Handle SETX(Y) properly when truncating a string instead of ignoring it and returning a too long string (r13699) @@ -14,7 +14,6 @@ - Fix: Server crashing when banning the rconning client (r13661) - Fix: Signals were not updated correctly when a player removed a non-existing track piece (r13626) - Fix: Crash when one tries to raise the nothern corner of MP_VOID tiles (i.e. the southern corner of the tiles on the southern map edge) in the scenario editor [FS#2106] (r13624) -X 13623 make things look nicer - Fix: Only the front of a RV would be considered when determining to what cargos a vehicle can be refitted instead of all cargos [FS#2109] (r13622) - Fix: If the first bridge can not be build for a given length, then none of the other bridges can. Effectively meaning that if someone replaces the first bridge with a bridge that can be only 3 tiles longs then only other bridges that can be 3 tiles long will be buildable, but only if they are 3 tiles long [FS#2100] (r13611) - Fix: Signal states could be propagated through waypoints built in orthogonal axis (r13589) diff -r c49a103d57ab -r b56fd5acecaf known-bugs.txt --- a/known-bugs.txt Wed Jul 16 10:35:01 2008 +0000 +++ b/known-bugs.txt Wed Jul 16 16:05:52 2008 +0000 @@ -15,6 +15,7 @@ ------------------------------------------------------------------------ URL: http://bugs.openttd.org +- 2129 Strings from message boxes could sometimes change (e.g. the screenshot filename) - 2085 Vehicle list of shared vehicles without orders not possible - 1944 Road vehicles not picking empty drivethrough platform - 1923 Unique names not always enforced diff -r c49a103d57ab -r b56fd5acecaf os/debian/changelog --- a/os/debian/changelog Wed Jul 16 10:35:01 2008 +0000 +++ b/os/debian/changelog Wed Jul 16 16:05:52 2008 +0000 @@ -1,3 +1,9 @@ +openttd (0.6.2~RC1-1) unstable; urgency=low + + * New upstream release. + + -- Matthijs Kooijman Wed, 16 Jul 2008 19:45:00 +0200 + openttd (0.6.1-1) unstable; urgency=low * New upstream release. diff -r c49a103d57ab -r b56fd5acecaf os/win32/installer/install.nsi --- a/os/win32/installer/install.nsi Wed Jul 16 10:35:01 2008 +0000 +++ b/os/win32/installer/install.nsi Wed Jul 16 16:05:52 2008 +0000 @@ -1,6 +1,6 @@ !define APPNAME "OpenTTD" ; Define application name -!define APPVERSION "0.6.1" ; Define application version -!define INSTALLERVERSION 48 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!! +!define APPVERSION "0.6.2" ; Define application version +!define INSTALLERVERSION 49 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!! !define APPURLLINK "http://www.openttd.org" !define APPNAMEANDVERSION "${APPNAME} ${APPVERSION}" diff -r c49a103d57ab -r b56fd5acecaf readme.txt --- a/readme.txt Wed Jul 16 10:35:01 2008 +0000 +++ b/readme.txt Wed Jul 16 16:05:52 2008 +0000 @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2008-06-01 -Release version: 0.6.1 +Last updated: 2008-07-16 +Release version: 0.6.2-RC1 ------------------------------------------------------------------------ diff -r c49a103d57ab -r b56fd5acecaf src/tunnelbridge_cmd.cpp --- a/src/tunnelbridge_cmd.cpp Wed Jul 16 10:35:01 2008 +0000 +++ b/src/tunnelbridge_cmd.cpp Wed Jul 16 16:05:52 2008 +0000 @@ -155,7 +155,7 @@ bool CheckBridge_Stuff(BridgeType bridge_type, uint bridge_len, uint32 flags) { if (flags & DC_QUERY_COST) { - return bridge_len <= (_patches.longbridges ? 100 : 16); + return bridge_len <= (_patches.longbridges ? 100U : 16U); } if (bridge_type >= MAX_BRIDGES) return false;