From 8be29f2629af37139c8284b480d7a1987b70666a Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 17 Oct 2012 20:25:23 +0000 Subject: [PATCH] (svn r24612) [1.2] -Update: some documentation --- changelog.txt | 34 +++++++++++++++++++++++++++++ os/debian/changelog | 6 +++++ os/os2/installer/make_installer.cmd | 2 +- os/windows/installer/install.nsi | 6 ++--- readme.txt | 4 ++-- src/script/api/ai_changelog.hpp | 4 ++++ src/script/api/game_changelog.hpp | 4 ++++ 7 files changed, 54 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index fe9ca21f63..92fd2ca65b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,37 @@ +1.2.3-RC1 (2012-10-17) +------------------------------------------------------------------------ +- Change: [NewGRF] Set the reference brightness of 32bpp mask recolouring to 128 (r24610) +- Fix: Configure script did not properly handle _BUILD flags during reconfigure (r24601) +- Fix: Configure script failed to detect libfontconfig 2.10 as newer than 2.3 (r24598) +- Fix: When fontconfig is not available, the bootstrap download crashed [FS#5336] (r24597) +- Fix: Crash when a gamescript provided too many parameters to a GSText object [FS#5333] (r24593) +- Fix: [Script] API documentation mistakes/omissions (r24584) +- Fix: Do not add duplicates to the ban list [FS#5308] (r24580) +- Fix: Draw the window resize sprite bottom-aligned [FS#5324] (r24577) +- Fix: Vehicle list at buoys did no longer work [FS#5319] (r24576) +- Fix: [Windows] Do not cast away const in OS specific code (r24572, r24571) +- Fix: Naming of bundles was somewhat broken (r24569) +- Fix: Non-train vehicle lists were not resorted when vehicles were renamed [FS#5261] (r24567) +- Fix: Stop both price and payment inflation if either of them has reached MAX_INFLATION (r24565) +- Fix: Limiting the inflation did not quite work [FS#5312] (r24564) +- Fix: Do not show profit from refits as cost in the refit window [FS#5297] (r24544) +- Fix: Do not limit to reading one UDP packet per game loop (r24532) +- Fix: Max script chance was too big (r24531) +- Fix: [NewGRF] RandomAction 84 should interpret register 100 as signed (r24528) +- Fix: [OSX] Some compile problems in mac-only code [FS#5296] (r24524) +- Fix: The gender of an industry name is defined by the industry-type part of the name, not by the town-name part, even if it comes first (r24523, r24522) +- Fix: GStexts were compiled incompletely when containing certain string codes (r24516, r24515) +- Fix: The mousewheel did not work in the build waypoint window [FS#5285] (r24507) +- Fix: [NewGRF] Airport variables 60 to 65 and 69 used the wrong cargo translation table for translations (r24506) +- Fix: Do not show the global goals as company goals for spectators (r24500) +- Fix: Clarify description of command line option -n (r24485) +- Fix: Do not call RebuildSubsidisedSourceAndDestinationCache() before subsidy savegame conversion is finished [FS#5232] (r24482) +- Fix: Trains were unable to reverse in stations when using NPF (r24479) +- Fix: The --xxx yyy format (instead of --xxx=yyy) for configure did not work (r24471) +- Fix: --prefix was not accepted by configure (r24470) +- Fix: Changing auto-refit for a 'goto station' order was inadvertently modifying the full load state [FS#5264] (r24457) + + 1.2.2 (2012-08-16) ------------------------------------------------------------------------ (None) diff --git a/os/debian/changelog b/os/debian/changelog index 6c2029b9a9..d0f6b1e6de 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,3 +1,9 @@ +openttd (1.2.3~RC1) unstable; urgency=low + + * New upstream release 1.2.3-RC1 + + -- Matthijs Kooijman Wed, 17 Oct 2012 00:00:00 +0200 + openttd (1.2.2) unstable; urgency=low * New upstream release 1.2.2 diff --git a/os/os2/installer/make_installer.cmd b/os/os2/installer/make_installer.cmd index 1fa53ee143..27bb8e5562 100644 --- a/os/os2/installer/make_installer.cmd +++ b/os/os2/installer/make_installer.cmd @@ -1,6 +1,6 @@ @echo off -set OPENTTD_VERSION=1.2.2 +set OPENTTD_VERSION=1.2.3 set OPENSFX_VERSION=0.8.0 set NOSOUND_VERSION=0.8.0 set OPENGFX_VERSION=1.2.0 diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi index 823a76e7e5..e0f256422e 100644 --- a/os/windows/installer/install.nsi +++ b/os/windows/installer/install.nsi @@ -1,9 +1,9 @@ # Version numbers to update !define APPV_MAJOR 1 !define APPV_MINOR 2 -!define APPV_MAINT 2 -!define APPV_BUILD 1 -!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 diff --git a/readme.txt b/readme.txt index cbc247eb46..0dcdc8b11a 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD readme -Last updated: 2012-08-16 -Release version: 1.2.2 +Last updated: 2012-10-17 +Release version: 1.2.3-RC1 ------------------------------------------------------------------------ diff --git a/src/script/api/ai_changelog.hpp b/src/script/api/ai_changelog.hpp index dd7f9bdf1c..fc86b1fe31 100644 --- a/src/script/api/ai_changelog.hpp +++ b/src/script/api/ai_changelog.hpp @@ -15,6 +15,10 @@ * functions may still be available if you return an older API version * in GetAPIVersion() in info.nut. * + * \b 1.2.3 + * + * No changes + * * \b 1.2.2 * * No changes diff --git a/src/script/api/game_changelog.hpp b/src/script/api/game_changelog.hpp index dc7caa7f50..ad15d9905d 100644 --- a/src/script/api/game_changelog.hpp +++ b/src/script/api/game_changelog.hpp @@ -15,6 +15,10 @@ * functions may still be available if you return an older API version * in GetAPIVersion() in info.nut. * + * \b 1.2.3 + * + * No changes + * * \b 1.2.2 * * No changes