mirror of https://github.com/OpenTTD/OpenTTD
(svn r26794) [1.4] -Update documentation
parent
45bb3caba2
commit
6043b839af
|
@ -1,3 +1,16 @@
|
|||
1.4.3-RC1 (2014-09-07)
|
||||
------------------------------------------------------------------------
|
||||
- Fix: TC_NO_SHADE did not work for 32bpp text rendering (r26792)
|
||||
- Fix: Loading a game with order backups leaked Orders and left unreachable items in the pool (r26787)
|
||||
- Fix: Buffer overrun in SQCompiler::Error (r26764)
|
||||
- Fix: Desync due to not always properly restoring game state from the savegame (r26753)
|
||||
- Fix: [Script] Crashes and infinite loops when using lists in item-descending order [FS#6085] (r26744)
|
||||
- Fix: Incorrect CFLAGS when enabling gprof profiling (r26737, r26735)
|
||||
- Fix: Do not reset the last selected airport or layout, unless it is really necessary [FS#6083] (r26732)
|
||||
- Fix: Use the normal search path to look for xdg-open at Unix [FS#6077] (r26724)
|
||||
- Fix: Properly check for cargo acceptance of houses [FS#5997] (r26723)
|
||||
|
||||
|
||||
1.4.2 (2014-08-16)
|
||||
------------------------------------------------------------------------
|
||||
(None)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
OpenTTD's known bugs
|
||||
Last updated: 2014-08-16
|
||||
Release version: 1.4.2
|
||||
Last updated: 2014-09-07
|
||||
Release version: 1.4.3-RC1
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
openttd (1.4.3~RC1-0) unstable; urgency=low
|
||||
|
||||
* New upstream release 1.4.3-RC1
|
||||
|
||||
-- OpenTTD <info@openttd.org> Sun, 07 Sep 2014 19:00:00 +0200
|
||||
|
||||
openttd (1.4.2-0) unstable; urgency=low
|
||||
|
||||
* New upstream release 1.4.2
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# Version numbers to update
|
||||
!define APPV_MAJOR 1
|
||||
!define APPV_MINOR 4
|
||||
!define APPV_MAINT 2
|
||||
!define APPV_BUILD 2
|
||||
!define APPV_EXTRA ""
|
||||
!define APPV_MAINT 3
|
||||
!define APPV_BUILD 0
|
||||
!define APPV_EXTRA "-RC1"
|
||||
|
||||
!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-08-16
|
||||
Release version: 1.4.2
|
||||
Last updated: 2014-09-07
|
||||
Release version: 1.4.3-RC1
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
|
|
@ -15,6 +15,10 @@
|
|||
* functions may still be available if you return an older API version
|
||||
* in GetAPIVersion() in info.nut.
|
||||
*
|
||||
* \b 1.4.3
|
||||
*
|
||||
* No changes
|
||||
*
|
||||
* \b 1.4.2
|
||||
*
|
||||
* No changes
|
||||
|
|
|
@ -15,6 +15,10 @@
|
|||
* functions may still be available if you return an older API version
|
||||
* in GetAPIVersion() in info.nut.
|
||||
*
|
||||
* \b 1.4.3
|
||||
*
|
||||
* No changes
|
||||
*
|
||||
* \b 1.4.2
|
||||
*
|
||||
* Other changes:
|
||||
|
|
Loading…
Reference in New Issue