mirror of https://github.com/OpenTTD/OpenTTD
(svn r26599) [1.4] -Update documentation
parent
2759e32451
commit
491b3e3efc
|
@ -1,3 +1,13 @@
|
|||
1.4.1-RC2 (2014-05-18)
|
||||
------------------------------------------------------------------------
|
||||
- Fix: Save/load issues on big endian machines (r26593, r26590, r26589)
|
||||
- Fix: Consider multiheaded trains in station refits [FS#5995] (r26586)
|
||||
- Fix: Game script could be changed in game by double clicking [FS#5974] (r26583)
|
||||
- Fix: Transfer stations also should have a cargo rating [FS#5989] (r26581, r26580)
|
||||
- Fix: [Network] AIs would not reset certain network state information upon creation of their company [FS#6003] (r26578, r26576)
|
||||
- Fix: [Network] Client of non-dedicated server was not correctly put into the first company for all state variables [FS#6001] (r26577)
|
||||
|
||||
|
||||
1.4.1-RC1 (2014-05-04)
|
||||
------------------------------------------------------------------------
|
||||
- Change: Remove demand calculation based on tiles (r26484)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
OpenTTD's known bugs
|
||||
Last updated: 2014-05-04
|
||||
Release version: 1.4.1-RC1
|
||||
Last updated: 2014-05-18
|
||||
Release version: 1.4.1-RC2
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
openttd (1.4.1~RC2-0) unstable; urgency=low
|
||||
|
||||
* New upstream release 1.4.1-RC2
|
||||
|
||||
-- OpenTTD <info@openttd.org> Sun, 18 May 2014 21:00:00 +0200
|
||||
|
||||
openttd (1.4.1~RC1-0) unstable; urgency=low
|
||||
|
||||
* New upstream release 1.4.1-RC1
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
!define APPV_MAJOR 1
|
||||
!define APPV_MINOR 4
|
||||
!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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Last updated: 2014-05-04
|
||||
Release version: 1.4.1-RC1
|
||||
Last updated: 2014-05-18
|
||||
Release version: 1.4.1-RC2
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
|
|
@ -15,6 +15,10 @@
|
|||
* functions may still be available if you return an older API version
|
||||
* in GetAPIVersion() in info.nut.
|
||||
*
|
||||
* \b 1.4.1
|
||||
*
|
||||
* No changes
|
||||
*
|
||||
* \b 1.4.0
|
||||
*
|
||||
* API additions:
|
||||
|
|
|
@ -15,6 +15,10 @@
|
|||
* functions may still be available if you return an older API version
|
||||
* in GetAPIVersion() in info.nut.
|
||||
*
|
||||
* \b 1.4.1
|
||||
*
|
||||
* No changes
|
||||
*
|
||||
* \b 1.4.0
|
||||
*
|
||||
* API additions:
|
||||
|
|
Loading…
Reference in New Issue