Skip to content

Commit

Permalink
Update: Changelog for 1.9.1 and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterN committed Apr 8, 2019
1 parent 120d76c commit b61ef7e
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 10 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
@@ -1,3 +1,13 @@
1.9.1 (2019-04-08)
------------------------------------------------------------------------
- Fix #6564: Enforce types of arguments for station name strings (#7419)
- Fix #7433: Don't use AirportSpec substitute if it's not enabled (#7435)
- Fix #7447, #7466, #7476: Missing NewGRF strings due to Action 4 feature check skipping pseudo-feature 48 (#7449)
- Fix #6222: Advanced sprite layout sometimes showed incorrect railtype ground tile. (#7460)
- Fix #7439: CompanyRemoveReason overwritten by ClientID (#7465)
- Fix: [Windows] Incorrect error handling could lead to cascading error windows (#7482)
- Fix #7478: Don't remove NewGRF objects on company take-over. (#7483)

1.9.0 (2019-04-01)
------------------------------------------------------------------------
- Fix #7411: Use industry production callback (if used) on initial industry cargo generation (#7412)
Expand Down
4 changes: 2 additions & 2 deletions known-bugs.txt
@@ -1,6 +1,6 @@
OpenTTD's known bugs
Last updated: 2019-04-01
Release version: 1.9.0
Last updated: 2019-04-08
Release version: 1.9.1
------------------------------------------------------------------------


Expand Down
6 changes: 6 additions & 0 deletions os/debian/changelog
@@ -1,3 +1,9 @@
openttd (1.9.1-0) unstable; urgency=low

* New upstream release 1.9.1

-- OpenTTD <info@openttd.org> Mon, 08 Apr 2019 20:00:00 +0100

openttd (1.9.0-0) unstable; urgency=low

* New upstream release 1.9.0
Expand Down
2 changes: 1 addition & 1 deletion os/os2/installer/make_installer.cmd
@@ -1,6 +1,6 @@
@echo off

set OPENTTD_VERSION=1.9.0
set OPENTTD_VERSION=1.9.1
set OPENSFX_VERSION=0.8.0
set NOSOUND_VERSION=0.8.0
set OPENGFX_VERSION=1.2.0
Expand Down
4 changes: 2 additions & 2 deletions os/rpm/openttd.spec
Expand Up @@ -17,9 +17,9 @@
#

Name: openttd
Version: 1.9
Version: 1.9.1
Release: 0
%define srcver 1.9.0
%define srcver 1.9.1
Summary: An open source reimplementation of Chris Sawyer's Transport Tycoon Deluxe
License: GPL-2.0
Group: Amusements/Games/Strategy/Other
Expand Down
4 changes: 2 additions & 2 deletions os/windows/installer/install.nsi
@@ -1,8 +1,8 @@
# Version numbers to update
!define APPV_MAJOR 1
!define APPV_MINOR 9
!define APPV_MAINT 0
!define APPV_BUILD 5
!define APPV_MAINT 1
!define APPV_BUILD 0
!define APPV_EXTRA ""

!define APPNAME "OpenTTD" ; Define application name
Expand Down
4 changes: 2 additions & 2 deletions src/os/windows/ottdres.rc.in
Expand Up @@ -79,8 +79,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,9,0,!!ISODATE!!
PRODUCTVERSION 1,9,0,!!ISODATE!!
FILEVERSION 1,9,1,!!ISODATE!!
PRODUCTVERSION 1,9,1,!!ISODATE!!
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand Down
2 changes: 1 addition & 1 deletion src/rev.cpp.in
Expand Up @@ -82,7 +82,7 @@ const byte _openttd_revision_tagged = !!ISTAG!!;
* final release will always have a lower version number than the released
* version, thus making comparisons on specific revisions easy.
*/
const uint32 _openttd_newgrf_version = 1 << 28 | 9 << 24 | 0 << 20 | !!ISSTABLETAG!! << 19 | 28004;
const uint32 _openttd_newgrf_version = 1 << 28 | 9 << 24 | 1 << 20 | !!ISSTABLETAG!! << 19 | 28004;

#ifdef __MORPHOS__
/**
Expand Down

0 comments on commit b61ef7e

Please sign in to comment.