diff --git a/changelog.txt b/changelog.txt index 8bbe2d652c..e050d3b91a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +1.0.4 (2010-09-14) +------------------------------------------------------------------------ +- Change: Move removal of bin/data/opentt[dw].grf from distclean to maintainer-clean (r20752) +- Fix: Recent NFORenum does not know '-?' (r20715) + + 1.0.4-RC1 (2010-08-30) ------------------------------------------------------------------------ - Change: Merge the extra GRF's sources and make it possible to rebuild them easily (r20490) diff --git a/known-bugs.txt b/known-bugs.txt index 946d6fc61d..3c1de2cdc5 100644 --- a/known-bugs.txt +++ b/known-bugs.txt @@ -1,6 +1,6 @@ OpenTTD's known bugs -Last updated: 2010-08-30 -Release version: 1.0.4-RC1 +Last updated: 2010-09-14 +Release version: 1.0.4 ------------------------------------------------------------------------ @@ -34,6 +34,14 @@ 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. + +- 4003 [OSX] Running OpenTTD Parallels causes privileged instructions +- 4001 [OSX] SETX[Y] not ignored in SetFallbackFont +- 3952 Console command rescan_ai does not remove AIs - 3935 Under some circumstances two road vehicles can leave road stop simultaniously - 3816 Console text does not always fit at 640x480 - 3746 Console output with right-to-left texts in left-to-right texts is not correct @@ -236,3 +244,20 @@ Crashes when playing music [FS#3941] music driver) crash on some songs from OpenMSX. OpenTTD cannot do anything about this. Please report these crashes to the authors of OpenMSX so the crash causing songs can be removed or fixed. + +OpenTTD hangs when started on 32 bits Windows [FS#4083] + Under some circumstances OpenTTD might hang for hours on the + initialisation of the music driver. The exact circumstances are + unknown except that it is the "dmusic" music driver that has the + problem and that the "win32" music driver does not. + As a result using the "win32" music driver will work around this + issue. + + As the exact circumstances are unknown, and the obvious + configuration settings related to the music driver are at their + default we are not able to detect this failure, except when Windows' + music initialisation function returns after several hours and then + there is no point in switching the music driver anymore. + The reason we do not use the "win32" music driver as default are + described in the "Long delay between switching music/song" section + of this document. diff --git a/os/debian/changelog b/os/debian/changelog index 46d097214b..bfb053f7e9 100644 --- a/os/debian/changelog +++ b/os/debian/changelog @@ -1,3 +1,9 @@ +openttd (1.0.4-0) unstable; urgency=low + + * New upstream release 1.0.4 + + -- Matthijs Kooijman Tue, 14 Sepg 2010 20:00:00 +0000 + openttd (1.0.4~rc1-0) unstable; urgency=low * New upstream release 1.0.4-RC1 diff --git a/os/os2/installer/make_installer.cmd b/os/os2/installer/make_installer.cmd index 04e1e058ad..4a140355b2 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.0.3 +set OPENTTD_VERSION=1.0.4 set OPENSFX_VERSION=0.8.0 set NOSOUND_VERSION=0.8.0 set OPENGFX_VERSION=0.7.0 diff --git a/os/windows/installer/install.nsi b/os/windows/installer/install.nsi index c13d9d8d73..a5d250ef68 100644 --- a/os/windows/installer/install.nsi +++ b/os/windows/installer/install.nsi @@ -2,7 +2,7 @@ !define APPV_MAJOR 1 !define APPV_MINOR 0 !define APPV_MAINT 4 -!define APPV_BUILD 0 +!define APPV_BUILD 1 !define APPV_EXTRA "" !define APPNAME "OpenTTD" ; Define application name diff --git a/readme.txt b/readme.txt index c340001722..5f33280c20 100644 --- a/readme.txt +++ b/readme.txt @@ -1,6 +1,6 @@ OpenTTD README -Last updated: 2010-08-30 -Release version: 1.0.4-RC1 +Last updated: 2010-09-14 +Release version: 1.0.4 ------------------------------------------------------------------------ @@ -437,7 +437,7 @@ Tycoon Deluxe graphics you need GRFCodec and NFORenum as well. These can be found at respectively: http://dev.openttdcoop.org/projects/grfcodec and http://dev.openttdcoop.org/projects/nforenum The compilation of these extra does generally not happen, unless you remove -the graphics file using "make distclean" or "make mrproper". +the graphics file using "make maintainer-clean". 7.2) Supported compilers: ---- -------------------