diff --git a/changelog.txt b/changelog.txt index 8314981517..1450618b33 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,35 @@ +1.0.0-RC1 (2010-02-18) +------------------------------------------------------------------------ +- Feature: Allow to select different land colours for the smallmap (r19064) +- Feature: [NewGRF] Action 3/2/1 (i.e. new graphics) support for rail types (r19056) +- Feature: Add zoom-out to smallmap (r19039) +- Add: [NoAI] AIOrder::[G|S]etStopLocation to get/set the stop location of trains in a rail station (r19014) +- Change: Move home directory to a better place in Haiku [FS#3625] (r19151) +- Change: Do not load the 'new game' NewGRFs when you are certain the savegame would not have been saved with them, i.e. do not load the 'new game' NewGRFs for TTO savegames (r19044) +- Fix: Invisible depots draw the track, so also draw the overlays (r19154) +- Fix: [v]seprintf should return the number of added characters excluding '\0' on truncation [FS#3627] (r19149, r19148) +- Fix: [YAPF] Look-ahead for multitile waypoints 'made up' data that should not go into the cache, causing desyncs in MP [FS#3619] (r19141) +- Fix: Report a more useful error when failing to build a bubble generator (r19137) +- Fix: Resize station cargo widget when needed to display all accepted cargo types [FS#3617] (r19123) +- Fix: [NewGRF] Industry property 0x17 was interpreted incorrectly and in some cases circumvented the density difficulty setting (r19120) +- Fix: removing towns (in the scenario editor) that had stations/depots refer to them or vehicles were on the town's road could cause a crash [FS#3616] (r19119) +- Fix: In the order window the Non-stop dropdown was not enabled for depot and waypoint orders and some buttons were raised too soon [FS#3593] (r19118, r19117) +- Fix: Do not crash on broken lng file and prevent it from happening again [FS#3611] (r19113, r19112) +- Fix: Not all news data was properly freed when starting a new game [FS#3614] (r19105) +- Fix: The BeMidi driver was broken [FS#3610] (r19097) +- Fix: Crash when one of the items in the news_display group in the config file has no value (r19096) +- Fix: Crash when a baseset has an empty metadata field (r19095) +- Fix: Possible read/write after free when the client triggered the server to close the connection [FS#3599] (r19072) +- Fix: Remove Bidi control characters from the reordered text so they are not drawn [FS#3604] (r19067) +- Fix: [NewGRF] Settings that are part of the "TTPatch flags" can cause desyncs if they are changed in network games (r19066) +- Fix: When banning yourself via rcon do not send the 'command response' to the client as the connection has already been terminated [FS#3598] (r19054) +- Fix: Mass stopping/starting/autoreplacing gave empty errors when there were no vehicles [FS#3577] (r19024) +- Fix: City airport introduction date had become 5 years later (r19023) +- Fix: Loading old (0.1-ish) savegames failed (r19022) +- Fix: Do not NULL the pointers when saving the savegame on an error during saving; the savegame is still valid, so do not make it invalid [FS#3570] (r19021) +- Fix: When removing roads, the player was also charged for removing the foundations [FS#3591] (r19016) + + 1.0.0-beta4 (2010-02-04) ------------------------------------------------------------------------ - Feature: Content mirroring support (r18994) diff --git a/known-bugs.txt b/known-bugs.txt index 2e40edcc26..9c5700d812 100644 --- a/known-bugs.txt +++ b/known-bugs.txt @@ -1,6 +1,6 @@ OpenTTD's known bugs -Last updated: 2010-02-04 -Release version: 1.0.0-beta4 +Last updated: 2010-02-18 +Release version: 1.0.0-RC1 ------------------------------------------------------------------------ diff --git a/os/debian/changelog b/os/debian/changelog index 1835cbd5b7..0c9827c661 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,9 +1,8 @@ -openttd (1.0~svn-1) UNRELEASED; urgency=low +openttd (1.0.0~RC1) UNRELEASED; urgency=low - * Unreleased SVN version. Versioned to allow normal upgrades to released - versions. + * New upstream release. - -- Matthijs Kooijman Thu, 24 Dec 2009 01:02:03 +0100 + -- Matthijs Kooijman Thu, 18 Feb 2010 00:01:02 +0100 openttd (1.0.0~beta4) unstable; urgency=low diff --git a/os/os2/installer/make_installer.cmd b/os/os2/installer/make_installer.cmd index 82877395d8..3455f586cd 100644 --- a/os/os2/installer/make_installer.cmd +++ b/os/os2/installer/make_installer.cmd @@ -1,6 +1,6 @@ @echo off -set OPENTTD_VERSION=1.0.0-beta4 +set OPENTTD_VERSION=1.0.0-RC1 set OPENSFX_VERSION=0.8.0 set NOSOUND_VERSION=0.8.0 set OPENGFX_VERSION=0.7.0 diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi index 64c2d2c785..417d68680e 100644 --- a/os/windows/installer/install.nsi +++ b/os/windows/installer/install.nsi @@ -2,8 +2,8 @@ !define APPV_MAJOR 1 !define APPV_MINOR 0 !define APPV_MAINT 0 -!define APPV_BUILD 3 -!define APPV_EXTRA "-beta4" +!define APPV_BUILD 4 +!define APPV_EXTRA "-RC1" !define APPNAME "OpenTTD" ; Define application name !define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version diff --git a/readme.txt b/readme.txt index 52e2355656..d463d09ab3 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2010-02-04 -Release version: 1.0.0-beta4 +Last updated: 2010-02-18 +Release version: 1.0.0-RC1 ------------------------------------------------------------------------