1
0
Fork 0

(svn r24045) [1.2] -Update: some documentation

release/1.2
rubidium 2012-03-18 17:08:27 +00:00
parent 50fa7f679f
commit c70e680e5e
6 changed files with 23 additions and 7 deletions

View File

@ -1,3 +1,13 @@
1.2.0-RC3 (2012-03-18)
------------------------------------------------------------------------
- Feature: Allow display of baseset textfiles (r24037)
- Feature: Increase the station class limit from 32 to 256 (r24031)
- Fix: After opening a text window with the monospaced font, all other text started glitching (r24038)
- Fix: [NoAI] Reset 'is random' status of temporary variable during saveload as it is not always written to when loading an AI which means it wouldd be taking the 'is random' setting of another AI (r24033)
- Fix: [NoAI] Make AIEngine::IsArticulated return true if the articulated callback flag is set, do not try to run the callback (r24029)
- Fix: Pass cases down into the list of cargos [FS#5090] (r24024, r24023, r24022)
1.2.0-RC2 (2012-03-04) 1.2.0-RC2 (2012-03-04)
------------------------------------------------------------------------ ------------------------------------------------------------------------
- Fix: [Script] AI used in names in API for GSOrder [FS#5088] (r24006) - Fix: [Script] AI used in names in API for GSOrder [FS#5088] (r24006)

View File

@ -1,6 +1,6 @@
OpenTTD's known bugs OpenTTD's known bugs
Last updated: 2012-03-04 Last updated: 2012-03-18
Release version: 1.2.0-RC2 Release version: 1.2.0-RC3
------------------------------------------------------------------------ ------------------------------------------------------------------------

View File

@ -1,3 +1,9 @@
openttd (1.2.0~RC3) unstable; urgency=low
* New upstream release 1.2.0-RC3
-- Matthijs Kooijman <matthijs@stdin.nl> Sun, 18 Mar 2012 18:00:00 +0100
openttd (1.2.0~RC2) unstable; urgency=low openttd (1.2.0~RC2) unstable; urgency=low
* New upstream release 1.2.0-RC2 * New upstream release 1.2.0-RC2

View File

@ -1,6 +1,6 @@
@echo off @echo off
set OPENTTD_VERSION=1.2.0-RC2 set OPENTTD_VERSION=1.2.0-RC3
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=1.2.0 set OPENGFX_VERSION=1.2.0

View File

@ -2,8 +2,8 @@
!define APPV_MAJOR 1 !define APPV_MAJOR 1
!define APPV_MINOR 2 !define APPV_MINOR 2
!define APPV_MAINT 0 !define APPV_MAINT 0
!define APPV_BUILD 5 !define APPV_BUILD 6
!define APPV_EXTRA "-RC2" !define APPV_EXTRA "-RC3"
!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: 2012-03-04 Last updated: 2012-03-18
Release version: 1.2.0-RC2 Release version: 1.2.0-RC3
------------------------------------------------------------------------ ------------------------------------------------------------------------