diff --git a/changelog.txt b/changelog.txt index 48332016e9..f60b2be41a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,25 @@ +1.10.0 (2020-04-01) +------------------------------------------------------------------------ +Change: Open company window when clicking on a company goal (#8033) +Change: [SDL2] Support pasting from clipboard on Linux (#8004) +Fix: [Script] Random deviation upper bound range should be inclusive (#8052) +Fix #8043: Incorrect handling of global road/tram hotkeys caused a crash (#8044) +Fix #8039: [Script] SetOrderFlags and GetOrderDestination didn't work for oil rigs (#8040) +Fix: [Script] CanBuildConnectedRoadPartsHere neighbours tiles were incorrect if you started a new game with a different world size (#8036) +Fix: Ignore clicks on non-applicable global goals (#8035) +Fix #7613: Limit News Window to 1024 messages to keep it usable and avoid overflowing scrollbars (#8026) +Fix #7644: [OSX] Hopefully improve performance by manually set colorspace to sRGB (#8023) +Fix #8020: Add missing docking tiles around industry neutral stations (#8021) +Fix: GUI tramway icon only contained a single set of tram tracks (#8015) +Fix: Station with multiple docks had the wrong tile area (#8014) +Fix #8011: Crash when loading TTD scenario containing a dock (#8012) +Fix #7998: Crash when scripts tried to access companies with invalid IDs (#8010) +Fix: Crash when attempting to draw a string containing nonprintable characters (#8005) +Fix #6399: Directory ~/.local/share not created if it didn't already exist (#8003) +Fix #7958: Custom catenary missing on road bridges (#7991) +Fix #7944: Demolishing locks built on rivers didn't always restore the river (#7946) + + 1.10.0-RC1 (2020-02-09) ------------------------------------------------------------------------ Feature: Allow server to supply a reason to kicked/banned clients (#7859) diff --git a/known-bugs.txt b/known-bugs.txt index 0d3f6ef64c..bdf0cd093a 100644 --- a/known-bugs.txt +++ b/known-bugs.txt @@ -1,6 +1,6 @@ OpenTTD's known bugs -Last updated: 2020-02-09 -Release version: 1.10.0-RC1 +Last updated: 2020-04-01 +Release version: 1.10.0 ------------------------------------------------------------------------ diff --git a/os/debian/changelog b/os/debian/changelog index dd2ce4bd75..d0ceffa102 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,3 +1,9 @@ +openttd (1.10.0-0) unstable; urgency=low + + * New upstream release 1.10.0 + + -- OpenTTD Wed, 01 Apr 2020 12:00:00 +0000 + openttd (1.10.0~RC1-0) unstable; urgency=low * New upstream release 1.10.0-RC1 diff --git a/os/rpm/openttd.spec b/os/rpm/openttd.spec index e847cba99c..5a1a489c36 100644 --- a/os/rpm/openttd.spec +++ b/os/rpm/openttd.spec @@ -17,9 +17,9 @@ # Name: openttd -Version: 1.10.RC1 +Version: 1.10.0 Release: 0 -%define srcver 1.10.0-RC1 +%define srcver 1.10.0 Summary: An open source reimplementation of Chris Sawyer's Transport Tycoon Deluxe License: GPL-2.0 Group: Amusements/Games/Strategy/Other diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi index e60cb48ca1..37c30a0b68 100644 --- a/os/windows/installer/install.nsi +++ b/os/windows/installer/install.nsi @@ -2,8 +2,8 @@ !define APPV_MAJOR 1 !define APPV_MINOR 10 !define APPV_MAINT 0 -!define APPV_BUILD 2 -!define APPV_EXTRA "-RC1" +!define APPV_BUILD 3 +!define APPV_EXTRA "" !define APPNAME "OpenTTD" ; Define application name !define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version diff --git a/src/script/api/ai_changelog.hpp b/src/script/api/ai_changelog.hpp index 9eea9ab152..dc10e5b2a4 100644 --- a/src/script/api/ai_changelog.hpp +++ b/src/script/api/ai_changelog.hpp @@ -15,8 +15,6 @@ * * \b 1.10.0 * - * This version is not yet released. The following changes are not set in stone yet. - * * API additions: * \li AIGroup::SetPrimaryColour * \li AIGroup::SetSecondaryColour diff --git a/src/script/api/game_changelog.hpp b/src/script/api/game_changelog.hpp index 235dcee986..88fcda8c55 100644 --- a/src/script/api/game_changelog.hpp +++ b/src/script/api/game_changelog.hpp @@ -15,8 +15,6 @@ * * \b 1.10.0 * - * This version is not yet released. The following changes are not set in stone yet. - * * API additions: * \li GSVehicle::BuildVehicleWithRefit * \li GSVehicle::GetBuildWithRefitCapacity