mirror of https://github.com/OpenTTD/OpenTTD
(svn r13710) [0.6] -Prepare: for 0.6.2-RC1.
parent
5c97e3307c
commit
bafea078f2
|
@ -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: 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)
|
- 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: 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: 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)
|
- 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: 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: 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)
|
- Fix: Signal states could be propagated through waypoints built in orthogonal axis (r13589)
|
||||||
|
|
|
@ -15,6 +15,7 @@ Bugs for 0.6.1
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
URL: http://bugs.openttd.org
|
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
|
- 2085 Vehicle list of shared vehicles without orders not possible
|
||||||
- 1944 Road vehicles not picking empty drivethrough platform
|
- 1944 Road vehicles not picking empty drivethrough platform
|
||||||
- 1923 Unique names not always enforced
|
- 1923 Unique names not always enforced
|
||||||
|
|
|
@ -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
|
openttd (0.6.1-1) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release.
|
* New upstream release.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
!define APPNAME "OpenTTD" ; Define application name
|
!define APPNAME "OpenTTD" ; Define application name
|
||||||
!define APPVERSION "0.6.1" ; Define application version
|
!define APPVERSION "0.6.2" ; Define application version
|
||||||
!define INSTALLERVERSION 48 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!!
|
!define INSTALLERVERSION 49 ; 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}"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
OpenTTD README
|
OpenTTD README
|
||||||
Last updated: 2008-06-01
|
Last updated: 2008-07-16
|
||||||
Release version: 0.6.1
|
Release version: 0.6.2-RC1
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -155,7 +155,7 @@ static CommandCost CheckBridgeSlopeSouth(Axis axis, Slope *tileh, uint *z)
|
||||||
bool CheckBridge_Stuff(BridgeType bridge_type, uint bridge_len, uint32 flags)
|
bool CheckBridge_Stuff(BridgeType bridge_type, uint bridge_len, uint32 flags)
|
||||||
{
|
{
|
||||||
if (flags & DC_QUERY_COST) {
|
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;
|
if (bridge_type >= MAX_BRIDGES) return false;
|
||||||
|
|
Loading…
Reference in New Issue