1
0
Fork 0

(svn r22703) [1.1] -Prepare for 1.1.2-RC2

release/1.1
rubidium 2011-07-30 17:53:09 +00:00
parent be65972895
commit 310d9e4ee3
6 changed files with 23 additions and 8 deletions

View File

@ -1,3 +1,13 @@
1.1.2-RC2 (2011-07-30)
------------------------------------------------------------------------
- Fix: Cost of adding an extra road type to a bridge or tunnel was undercalculated [FS#4680, FS#4681] (r22700, r22699)
- Fix: Only insert cleared object tiles into _cleared_object_areas if clearing actually succeeds, else subsequential tests of the same tile will be skipped and considered successful [FS#4694] (r22698)
- Fix: When building a house it could be built at the wrong place if multitile houses failed some tests (r22697)
- Fix: [Network] Failed network address resolving could trigger temporary freezes [FS#4697] (r22696, r22695)
- Fix: [NewGRF] The override managers were not reset in some cases like creating a new scenario [FS#4691] (r22693)
- Fix: [NewGRF] Aircrafts defined with IDs above the default aircrafts always defaulted to passenger cargo (r22690)
1.1.2-RC1 (2011-07-24) 1.1.2-RC1 (2011-07-24)
------------------------------------------------------------------------ ------------------------------------------------------------------------
- Change: [NewGRF] Only allow access (via hotkey and menu) to the bounding box visualisation when NewGRF developer tools are enabled (r22675) - Change: [NewGRF] Only allow access (via hotkey and menu) to the bounding box visualisation when NewGRF developer tools are enabled (r22675)

View File

@ -1,6 +1,6 @@
OpenTTD's known bugs OpenTTD's known bugs
Last updated: 2011-07-24 Last updated: 2011-07-30
Release version: 1.1.2-RC1 Release version: 1.1.2-RC2
------------------------------------------------------------------------ ------------------------------------------------------------------------
@ -40,7 +40,6 @@ we only apply bug fixes provided by the community but we are unable to fix
these bugs ourselves. these bugs ourselves.
- 4695 [OSX] Crash when switching to full screen with OS X Lion - 4695 [OSX] Crash when switching to full screen with OS X Lion
- 4694 HQ (partly) destroyed when funding town
- 4689 [OSX] Crash when hiding window after coming from full screen - 4689 [OSX] Crash when hiding window after coming from full screen
- 4594 [Windows] Minimizing the windows when a modal error message is - 4594 [Windows] Minimizing the windows when a modal error message is
shown makes it difficult to exit the game shown makes it difficult to exit the game

View File

@ -1,3 +1,9 @@
openttd (1.1.2~RC2) unstable; urgency=low
* New upstream release 1.1.2-RC2
-- Matthijs Kooijman <matthijs@stdin.nl> Sat, 30 Jul 2011 21:00:00 +0200
openttd (1.1.2~RC1) unstable; urgency=low openttd (1.1.2~RC1) unstable; urgency=low
* New upstream release 1.1.2-RC1 * New upstream release 1.1.2-RC1

View File

@ -1,6 +1,6 @@
@echo off @echo off
set OPENTTD_VERSION=1.1.2-RC1 set OPENTTD_VERSION=1.1.2-RC2
set OPENSFX_VERSION=0.8.0 set OPENSFX_VERSION=0.8.0
set NOSOUND_VERSION=0.8.0 set NOSOUND_VERSION=0.8.0
set OPENGFX_VERSION=0.7.0 set OPENGFX_VERSION=0.7.0

View File

@ -2,8 +2,8 @@
!define APPV_MAJOR 1 !define APPV_MAJOR 1
!define APPV_MINOR 1 !define APPV_MINOR 1
!define APPV_MAINT 2 !define APPV_MAINT 2
!define APPV_BUILD 0 !define APPV_BUILD 1
!define APPV_EXTRA "-RC1" !define APPV_EXTRA "-RC2"
!define APPNAME "OpenTTD" ; Define application name !define APPNAME "OpenTTD" ; Define application name
!define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version !define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version

View File

@ -1,6 +1,6 @@
OpenTTD readme OpenTTD readme
Last updated: 2011-07-24 Last updated: 2011-07-30
Release version: 1.1.2-RC1 Release version: 1.1.2-RC2
------------------------------------------------------------------------ ------------------------------------------------------------------------