(svn r13710) [0.6] -Prepare: for 0.6.2-RC1. 0.6 0.6.2-RC1
authorrubidium
Wed, 16 Jul 2008 16:05:52 +0000
branch0.6
changeset 11152 b56fd5acecaf
parent 11151 c49a103d57ab
(svn r13710) [0.6] -Prepare: for 0.6.2-RC1.
changelog.txt
known-bugs.txt
os/debian/changelog
os/win32/installer/install.nsi
readme.txt
src/tunnelbridge_cmd.cpp
--- 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)
--- 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
--- 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 <m.kooijman@student.utwente.nl>  Wed, 16 Jul 2008 19:45:00 +0200
+
 openttd (0.6.1-1) unstable; urgency=low
 
   * New upstream release.
--- 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}"
--- 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
 ------------------------------------------------------------------------
 
 
--- 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;