diff --git a/changelog.txt b/changelog.txt index c812ca9864..8b9755bbfb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +1.3.0 (2013-04-01) +------------------------------------------------------------------------ +- Fix: Station rebuilding could leave reserved tiles which caused crashes later on [FS#5510, FS#5516] (r25132) +- Fix: When the count for a scrollbar was 0, the inter distance was subtracted too much causing a scrollbar with a negative size (r25123) + + 1.3.0-RC3 (2013-03-18) ------------------------------------------------------------------------ - Fix: Limit aircraft property 0D to 19, since the conversion result to km-ish/h needs to fit into a byte [FS#5492] (r25099) diff --git a/known-bugs.txt b/known-bugs.txt index ea76ecb951..4cecdbcb6e 100644 --- a/known-bugs.txt +++ b/known-bugs.txt @@ -1,14 +1,13 @@ OpenTTD's known bugs -Last updated: 2012-06-01 -Release version: 1.2.1 +Last updated: 2013-04-01 +Release version: 1.3.0 ------------------------------------------------------------------------ Table of contents ----------------- 1.0) About -2.0) Known bugs in this release - * 2.1) Known bugs that will not be solved +2.0) Known bugs 1.0) About @@ -17,36 +16,13 @@ All bugs listed below are marked as known. Please do not submit any bugs that are the same as these. If you do, do not act surprised, because we WILL flame you!! -Of course if you have more knowledge about any of these bugs, have more -specifics, we welcome you to report them. React to the given bug indicated -by the number below on http://bugs.openttd.org. +The current list of known bugs that we intend to fix can be found in our +bug tracking system at: http://bugs.openttd.org +Also check the closed bugs when searching for your bug in this system as +we might have fixed the bug in the mean time. -2.0) Known bugs in this release ----- -------------------------- -The following bugs are known to exist in this release and we intend to -fix them. Some bugs are known but are not fixable or fixing them would -cause further problems. Those bugs can be found in the "Known bugs that -will not be solved" section. - -The bugs in this section all refer to a ticket in our bug tracking system -that you can find at: http://bugs.openttd.org -If the bugs are closed but still listed here it means that the bug is fixed -and that the nightlies and next major release will not have that bug. - -Issues prefixed with [OSX] are required to be fixed before we consider -officially supporting Mac OS X again. For now it remains unsupported and -we only apply bug fixes provided by the community but we are unable to fix -these bugs ourselves. - -- 4857 [OSX] No support for detecting mono space font -- 4847 [OSX] No support for bootstrap downloading of base graphics -- 4744 [OSX] Crash when switching to full screen with OS X Lion -- 4689 [OSX] Crash when hiding window after coming from full screen -- 4420 [OSX] OS' mouse pointer still shows -- 2484 [OSX] Cannot enter CJK characters - -2.1) Known bugs that will not be solved +2.0) Known bugs ---- ---------------------------------- This section lists all known bugs that we do not intend to fix and the reasons why we think that fixing them is infeasible. We might make some diff --git a/os/debian/changelog b/os/debian/changelog index 53e67ef4d3..3f3ae6256f 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,3 +1,9 @@ +openttd (1.3.0-0) unstable; urgency=low + + * New upstream release 1.3.0 + + -- OpenTTD Mon, 01 Apr 2013 00:00:00 +0200 + openttd (1.3.0~RC3) unstable; urgency=low * New upstream release 1.3.0-RC3 diff --git a/os/os2/installer/make_installer.cmd b/os/os2/installer/make_installer.cmd index dfcf4377c7..f21961f7fb 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.3.0-RC3 +set OPENTTD_VERSION=1.3.0 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 99f86533e2..c2045788e2 100644 --- a/os/windows/installer/install.nsi +++ b/os/windows/installer/install.nsi @@ -2,8 +2,8 @@ !define APPV_MAJOR 1 !define APPV_MINOR 3 !define APPV_MAINT 0 -!define APPV_BUILD 4 -!define APPV_EXTRA "-RC3" +!define APPV_BUILD 5 +!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/readme.txt b/readme.txt index 240331fd35..57d1cc9575 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD readme -Last updated: 2013-03-18 -Release version: 1.3.0-RC3 +Last updated: 2013-04-01 +Release version: 1.3.0 ------------------------------------------------------------------------