mirror of https://github.com/OpenTTD/OpenTTD
parent
8808c6d033
commit
f6643952ce
|
@ -1,3 +1,11 @@
|
||||||
|
1.9.3 (2019-09-16)
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
- Change: Use natural sort when sorting the file list (#7727)
|
||||||
|
- Fix #7479: Don't close construction windows when changing client name (#7728)
|
||||||
|
- Fix #7731: Files sorting by modification time on Windows XP (#7731)
|
||||||
|
- Fix #7644: [OSX] Better solution for colourspace/performance issues (#7741)
|
||||||
|
|
||||||
|
|
||||||
1.9.3-RC1 (2019-09-07)
|
1.9.3-RC1 (2019-09-07)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
- Add: Can now click industries to make orders to their neutral station (e.g. oil rig) (#7709)
|
- Add: Can now click industries to make orders to their neutral station (e.g. oil rig) (#7709)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
OpenTTD's known bugs
|
OpenTTD's known bugs
|
||||||
Last updated: 2019-09-07
|
Last updated: 2019-09-16
|
||||||
Release version: 1.9.3-RC1
|
Release version: 1.9.3
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
openttd (1.9.3-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release 1.9.3
|
||||||
|
|
||||||
|
-- OpenTTD <info@openttd.org> Mon, 16 Sep 2019 21:00:00 +0200
|
||||||
|
|
||||||
openttd (1.9.3~RC1-0) unstable; urgency=low
|
openttd (1.9.3~RC1-0) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release 1.9.3-RC1
|
* New upstream release 1.9.3-RC1
|
||||||
|
|
|
@ -17,9 +17,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
Name: openttd
|
Name: openttd
|
||||||
Version: 1.9.3-RC1
|
Version: 1.9.3
|
||||||
Release: 0
|
Release: 0
|
||||||
%define srcver 1.9.3-RC1
|
%define srcver 1.9.3
|
||||||
Summary: An open source reimplementation of Chris Sawyer's Transport Tycoon Deluxe
|
Summary: An open source reimplementation of Chris Sawyer's Transport Tycoon Deluxe
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: Amusements/Games/Strategy/Other
|
Group: Amusements/Games/Strategy/Other
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
!define APPV_MINOR 9
|
!define APPV_MINOR 9
|
||||||
!define APPV_MAINT 3
|
!define APPV_MAINT 3
|
||||||
!define APPV_BUILD 0
|
!define APPV_BUILD 0
|
||||||
!define APPV_EXTRA "-RC1"
|
!define APPV_EXTRA ""
|
||||||
|
|
||||||
!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
|
||||||
|
|
Loading…
Reference in New Issue