diff --git a/changelog.txt b/changelog.txt index 75a03dfdd9..4eca3e36f9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,12 @@ +1.0.1-RC2 (2010-04-22) +------------------------------------------------------------------------ +- Fix: Desync when joining the game because of using the wrong variable (r19687) +- Fix: Truncated archives were not detected when using zlib 1.2.3. This also fixes zlib 1.2.4 compatibility, zlib 1.2.5 is bugfree (r19686) +- Fix: Towns with 3x3 and 2x2 road layouts could not expand (r19683) +- Fix: When joining a MP game all clients with company ID > 0 would be shown as if they were a spectator [FS#3775] (r19680) +- Fix: Client status was shown incorrect in the console (r19678) + + 1.0.1-RC1 (2010-04-17) ------------------------------------------------------------------------ - Feature: [NewGRF] Support for extended text code 0x9A 11, print qword (r19570) diff --git a/known-bugs.txt b/known-bugs.txt index 0a708adaf1..f4ac389157 100644 --- a/known-bugs.txt +++ b/known-bugs.txt @@ -1,6 +1,6 @@ OpenTTD's known bugs -Last updated: 2010-04-17 -Release version: 1.0.1-RC1 +Last updated: 2010-04-21 +Release version: 1.0.1-RC2 ------------------------------------------------------------------------ @@ -175,11 +175,3 @@ OpenTTD not properly resizing with SDL on X [FS#3305] Window managers that are known to exhibit this behaviour are KDE's and GNOME's. With the XFCE's and LXDE's window managers the resize event is sent when the user releases the mouse. - -Content files not properly extracted with zlib 1.2.3.5-1.2.4 [FS#3753] - With zlib 1.2.3.5 up to and including 1.2.4 the function "gzeof", - which tells when we read the whole file, is broken in such a way - that OpenTTD thinks it has extracted and written the whole file - while the last few hundred/thousand bytes are not extracted yet. - This causes problems for everything that is downloaded from the - online content system when using one of those versions of zlib. diff --git a/os/debian/changelog b/os/debian/changelog index 5d3e9a5c6c..f37f60dd9d 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,3 +1,9 @@ +openttd (1.0.1~rc2-0) unstable; urgency=low + + * New upstream release 1.0.1-RC2 + + -- Matthijs Kooijman Wed, 21 Apr 2010 21:36:21 +0200 + openttd (1.0.1~rc1-0) unstable; urgency=low * New upstream release 1.0.1-RC1 diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi index 9d5d1b5d98..63ff47a71f 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 1 -!define APPV_BUILD 0 -!define APPV_EXTRA "-RC1" +!define APPV_BUILD 1 +!define APPV_EXTRA "-RC2" !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 9d480127f8..bb85138c70 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2010-04-17 -Release version: 1.0.1-RC1 +Last updated: 2010-04-21 +Release version: 1.0.1-RC2 ------------------------------------------------------------------------