mirror of https://github.com/OpenTTD/OpenTTD
parent
2bf936bbbc
commit
7f77b8c1e2
|
@ -1,3 +1,12 @@
|
||||||
|
1.10.1 (2020-04-13)
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
Fix #8081: Crash when placing a ship depot next to a dock (#8082)
|
||||||
|
Fix: [GS] A Goal's QuestionID was getting truncated (#8072)
|
||||||
|
Fix #8064: Refit capacity could be displayed incorrectly in extreme edgecases (#8065)
|
||||||
|
Fix #8060: Restore admin network API compatibility (#8061)
|
||||||
|
Fix #8055: Crash when roadtype availability changes with the road construction toolbar open (#8058)
|
||||||
|
|
||||||
|
|
||||||
1.10.0 (2020-04-01)
|
1.10.0 (2020-04-01)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
Change: Open company window when clicking on a company goal (#8033)
|
Change: Open company window when clicking on a company goal (#8033)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
OpenTTD's known bugs
|
OpenTTD's known bugs
|
||||||
Last updated: 2020-04-01
|
Last updated: 2020-04-13
|
||||||
Release version: 1.10.0
|
Release version: 1.10.1
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
openttd (1.10.1-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release 1.10.1
|
||||||
|
|
||||||
|
-- OpenTTD <info@openttd.org> Mon, 13 Apr 2020 21:00:00 +0100
|
||||||
|
|
||||||
openttd (1.10.0-0) unstable; urgency=low
|
openttd (1.10.0-0) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release 1.10.0
|
* New upstream release 1.10.0
|
||||||
|
|
|
@ -17,9 +17,9 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
Name: openttd
|
Name: openttd
|
||||||
Version: 1.10.0
|
Version: 1.10.1
|
||||||
Release: 0
|
Release: 0
|
||||||
%define srcver 1.10.0
|
%define srcver 1.10.1
|
||||||
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
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Version numbers to update
|
# Version numbers to update
|
||||||
!define APPV_MAJOR 1
|
!define APPV_MAJOR 1
|
||||||
!define APPV_MINOR 10
|
!define APPV_MINOR 10
|
||||||
!define APPV_MAINT 0
|
!define APPV_MAINT 1
|
||||||
!define APPV_BUILD 3
|
!define APPV_BUILD 4
|
||||||
!define APPV_EXTRA ""
|
!define APPV_EXTRA ""
|
||||||
|
|
||||||
!define APPNAME "OpenTTD" ; Define application name
|
!define APPNAME "OpenTTD" ; Define application name
|
||||||
|
|
Loading…
Reference in New Issue