From 1f9dce469741ee3421ba685047150be2fa2b5e40 Mon Sep 17 00:00:00 2001 From: belugas Date: Wed, 26 Mar 2008 15:24:34 +0000 Subject: [PATCH] (svn r12432) [0.6] -Change: Update documentation for release of RC1 --- changelog.txt | 33 +++++++++++++++++++++++++++++++++ known-bugs.txt | 10 ++++++---- os/debian/changelog | 14 +++++++++++++- os/win32/installer/install.nsi | 4 ++-- readme.txt | 4 ++-- 5 files changed, 56 insertions(+), 9 deletions(-) diff --git a/changelog.txt b/changelog.txt index 1f904bfc15..35236f6ab3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,36 @@ +0.6.0-RC1 (2008-03-26) +------------------------------------------------------------------------ +- Feature: Show whether a town is a "city" in the town description title bar (r12391) +- Feature: Increase house animation frame number from 32 to 128 (r12347) +- Fix: Vehicle lists related to stations not closed when the station is deleted [FS#1872] (r12393) +- Fix: Trams failing to turn on bridge heads/tunnel entrances [FS#1851] (r123890) +- Fix: Train could break apart when reversed while partially in a depot [FS#1841] (r12386, r12384) +- Fix: Non-breaking spaces should not be broken (r12385) +- Fix: Check return of AfterLoadGame for success or failure when loading TTD games [FS#1860] (r12383) +- Fix: Use 'items' unit for batteries, fizzy drinks, toys and bubbles in total cargo tab [FS#1864] (r12382) +- Fix: The number of houses wasn't computed right [FS#1835, FS#1535] (r12381) +- Fix: Update train acceleration and max speed after setting cached value to ensure the correct max speed is used with disabled real acceleration (r12380) +- Fix: Refresh vehicle details window when cached values are updated (r12378) +- Fix: Set cached value for vehicle property 25 before other cached values [FS#1854] (r12377) +- Fix: Don't close a dropmenu when clicking on a dropdown widget (r12374) +- Fix: win32 music driver fails if path is too long or if containing non-latin chars [FS#1849] (r12373, r12372) +- Fix: Do not let window hide behind the main toolbar after resizing the screen [FS#1823] (r12371) +- Fix: Close language drop down when parent window is clicked/closed [FS#1853] (r12370) +- Fix: Reset train speed limits when _patches.realistic_acceleration changes (r12369) +- Fix: Commands were sent to clients waiting for map download causing 'executing command from the past' error [FS#1650] (r12367) +- Fix: Do not allow building 'zero' road bits (r12363) +- Fix: Randomize variable 8F only once per callback 28 (r12362) +- Fix: openttdd.grf was using the wrong colours for glyphs due to a grfcodec bug (fixed in grfcodec 0.9.10 r1837) (r12360) +- Fix: Some callback-results were treated as 8 bit, when they were 15 bit, and vice versa (r12352, r12358) +- Fix: Do not try to flood water tile [FS#1836] (r12350) +- Fix: NTP skipped junction just after bridge end (r12348) +- Fix: Remove duplicated and inconsistent code wrt. autoreplace with rules in both vehicles' group and ALL_GROUP [FS#1748, FS#1825] (r12346) +- Fix: Don't try to restore backupped timetable when timetabling is disabled [FS#1828] (r12345) +- Fix: Slow helicopters never got the 'chance' to finish the landing routine (r12343) +- Fix: GRM buffer for cargos was incorrect size [FS#1827] (r12341) +- Fix: Recalculate cached train data after clearing reversing flag when entering depot (r12339) + + 0.6.0-beta5 (2008-03-04) ------------------------------------------------------------------------ - Feature: Vehicle variable FE bit 5, 6 and 8 [FS#1812] (r12331, r12330) diff --git a/known-bugs.txt b/known-bugs.txt index 28bdd0e88b..f8a371def8 100644 --- a/known-bugs.txt +++ b/known-bugs.txt @@ -11,15 +11,17 @@ by the number below on http://bugs.openttd.org. If the bug report is closed, it has been fixed, which then can be verified in the latest SVN version of /trunk. -Bugs for 0.6.0-beta5 +Bugs for 0.6.0-RC1 ------------------------------------------------------------------------ URL: http://bugs.openttd.org +- 1858 Industry legend in small map overwrites buttons +- 1852 Minor tram reversing glitches +- 1802 Path with space in configure fails +- 1793 Inconsistent travel time for fast trains - 1762 Strange Autoreplace behaviour -- 1711 Gravel and Clay have no worth +- 1752 User input is not checked - 1693 Removing road does not reset owner -- 1495 Long vehicles block multistop station -- 1487 Ending_year is never written to - 1473 Train not going to available platform - 1404 Spinner widget interprets one click as many - 1264 Autoreplace for multiple NewGRF DMU sets fails diff --git a/os/debian/changelog b/os/debian/changelog index 9f5a90d3cf..0c1b927fc5 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,4 +1,16 @@ -openttd (0.6.0~beta5) unstable; urgency=low +openttd (0.7~svn) unstable; urgency=low + + * Unreleased SVN version. Versioned to allow normal upgrades to released versions. + + -- Matthijs Kooijman Sat, 22 Mar 2007 21:07:05 +0100 + +openttd (0.6.0~RC1) unstable; urgency=low + + * New upstream release. + + -- Matthijs Kooijman Wed, 26 Mar 2008 15:51:40 +0100 + +openttd (0.6.0~beta5-1) unstable; urgency=low * New upstream release. diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi index 747695e081..14f77e20ca 100644 --- a/os/win32/installer/install.nsi +++ b/os/win32/installer/install.nsi @@ -1,9 +1,9 @@ !define APPNAME "OpenTTD" ; Define application name !define APPVERSION "0.6.0" ; Define application version -!define INSTALLERVERSION 43 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!! +!define INSTALLERVERSION 44 ; NEED TO UPDATE THIS FOR EVERY RELEASE!!! !define APPURLLINK "http://www.openttd.org" -!define APPNAMEANDVERSION "${APPNAME} ${APPVERSION}-beta5" +!define APPNAMEANDVERSION "${APPNAME} ${APPVERSION}-RC1" !define APPVERSIONINTERNAL "${APPVERSION}.0" ; Needs to be of the format X.X.X.X !define MUI_ICON "..\..\..\media\openttd.ico" diff --git a/readme.txt b/readme.txt index daa2b0d691..0abe131e36 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2008-03-04 -Release version: 0.6.0-beta5 +Last updated: 2008-03-26 +Release version: 0.6.0-RC1 ------------------------------------------------------------------------