(svn r19691) [1.0] -Prepare: 1.0.1-RC2

This commit is contained in:
rubidium 2010-04-21 19:52:20 +00:00
parent 706d321f52
commit b62a1ad1d5
5 changed files with 21 additions and 14 deletions

View File

@ -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)

View File

@ -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.

View File

@ -1,3 +1,9 @@
openttd (1.0.1~rc2-0) unstable; urgency=low
* New upstream release 1.0.1-RC2
-- Matthijs Kooijman <matthijs@stdin.nl> Wed, 21 Apr 2010 21:36:21 +0200
openttd (1.0.1~rc1-0) unstable; urgency=low
* New upstream release 1.0.1-RC1

View File

@ -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

View File

@ -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
------------------------------------------------------------------------