mirror of https://github.com/OpenTTD/OpenTTD
(svn r4117) - Prepare 0.4 branch for release. Update readme's, bugs, installers and makefile, changelog, etc. to 0.4.7
parent
a0bf18c3c9
commit
8a74170da0
2
Makefile
2
Makefile
|
@ -268,7 +268,7 @@ ENDIAN_CHECK=endian_check$(EXE)
|
||||||
STRGEN=strgen/strgen$(EXE)
|
STRGEN=strgen/strgen$(EXE)
|
||||||
OSXAPP="OpenTTD.app"
|
OSXAPP="OpenTTD.app"
|
||||||
|
|
||||||
REV := 0.4.6-$(shell if test -d .svn; then svnversion . | awk '{ print "r"$$0 }'; fi)
|
REV := 0.4.7-$(shell if test -d .svn; then svnversion . | awk '{ print "r"$$0 }'; fi)
|
||||||
|
|
||||||
# MorphOS needs builddate
|
# MorphOS needs builddate
|
||||||
BUILDDATE=`date +%d.%m.%y`
|
BUILDDATE=`date +%d.%m.%y`
|
||||||
|
|
|
@ -1,4 +1,12 @@
|
||||||
t 0.4.6 (2006-03-22)
|
0.4.7 (2006-03-26)
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
- Feature: [OSX] Add support for triple-binaries (PPC, PPC970, i386) (r4102)
|
||||||
|
- Fix: [OSX] crash when going to fullscreen (r4100)
|
||||||
|
- Fix: Allow unused wagons to have their first cache set. Fixes faulty cache-warning message and noticably speeds up depot operations (r4094)
|
||||||
|
- Fix: [NPF] Trains & busses were unable to find a route when leaving a depot or bus stop. (r4072)
|
||||||
|
|
||||||
|
0.4.6 (2006-03-22)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
- Codechange: [win32] Show the revision in crash.txt and enable the button to show the crash text in the crash-window (r3965)
|
- Codechange: [win32] Show the revision in crash.txt and enable the button to show the crash text in the crash-window (r3965)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.\" Hey, EMACS: -*- nroff -*-
|
.\" Hey, EMACS: -*- nroff -*-
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.Dd March 22, 2006
|
.Dd March 26, 2006
|
||||||
.Dt OPENTTD 6
|
.Dt OPENTTD 6
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
.Nm openttd
|
.Nm openttd
|
||||||
|
|
|
@ -15,7 +15,7 @@ or http://bugs.openttd.org.
|
||||||
If the bug report is closed, it has been fixed, which then can be verified
|
If the bug report is closed, it has been fixed, which then can be verified
|
||||||
in the latest SVN version.
|
in the latest SVN version.
|
||||||
|
|
||||||
Bugs for 0.4.6
|
Bugs for 0.4.7
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
URL: http://bugs.openttd.org
|
URL: http://bugs.openttd.org
|
||||||
|
|
||||||
|
@ -42,10 +42,10 @@ URL: http://bugs.openttd.org
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
URL: http://sourceforge.net/tracker/?atid=636365&group_id=103924&func=browse
|
URL: http://sourceforge.net/tracker/?atid=636365&group_id=103924&func=browse
|
||||||
|
|
||||||
|
-1458368 Ships cannot be sent to depot when loading with NPF on, transfer not working
|
||||||
-1454591 Street junctions not able to converted
|
-1454591 Street junctions not able to converted
|
||||||
-1453676 crash in windowed mode when moving mouse back to openttd
|
-1453676 crash in windowed mode when moving mouse back to openttd
|
||||||
-1436419 Vehicles profits gone negitive.......bug
|
-1436419 Vehicles profits gone negitive.......bug
|
||||||
-1438411 Game crash with NPF (r3663)
|
|
||||||
-1434000 Error in Transfer-Function
|
-1434000 Error in Transfer-Function
|
||||||
-1433315 non-existant crash reporting
|
-1433315 non-existant crash reporting
|
||||||
-1432871 Wrong signalstate when track over track
|
-1432871 Wrong signalstate when track over track
|
||||||
|
@ -77,7 +77,7 @@ URL: http://sourceforge.net/tracker/?atid=636365&group_id=103924&func=browse
|
||||||
-1106356 re-offered prototypes
|
-1106356 re-offered prototypes
|
||||||
-1085486 Subsidies: Only count when station is in right suburb
|
-1085486 Subsidies: Only count when station is in right suburb
|
||||||
|
|
||||||
Minor Bugs for 0.4.5.1
|
Minor Bugs for 0.4.7
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
URL: http://sourceforge.net/tracker/?atid=669662&group_id=103924&func=browse
|
URL: http://sourceforge.net/tracker/?atid=669662&group_id=103924&func=browse
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#ifndef NETWORK_H
|
#ifndef NETWORK_H
|
||||||
#define NETWORK_H
|
#define NETWORK_H
|
||||||
|
|
||||||
#define NOREV_STRING "0.4.6-norev000"
|
#define NOREV_STRING "0.4.7-norev000"
|
||||||
|
|
||||||
#ifdef ENABLE_NETWORK
|
#ifdef ENABLE_NETWORK
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
openttd (0.4.6-1) unstable; urgency=low
|
openttd (0.4.7-1) unstable; urgency=low
|
||||||
|
|
||||||
* Remove old terminal messages and make sure that debconf is always called.
|
* Remove old terminal messages and make sure that debconf is always called.
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
%define name openttd
|
%define name openttd
|
||||||
%define version 0.4.6
|
%define version 0.4.7
|
||||||
%define release 1mdk
|
%define release 1mdk
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
; Define your application name
|
; Define your application name
|
||||||
!define APPNAME "OpenTTD"
|
!define APPNAME "OpenTTD"
|
||||||
!define APPNAMEANDVERSION "OpenTTD 0.4.6.0"
|
!define APPNAMEANDVERSION "OpenTTD 0.4.7.0"
|
||||||
!define APPVERSION "0.4.6.0"
|
!define APPVERSION "0.4.7.0"
|
||||||
!define INSTALLERVERSION 18 ;NEED TO UPDATE THIS FOR EVERY RELEASE!!!
|
!define INSTALLERVERSION 19 ;NEED TO UPDATE THIS FOR EVERY RELEASE!!!
|
||||||
!define MUI_ICON "..\..\..\openttd.ico"
|
!define MUI_ICON "..\..\..\openttd.ico"
|
||||||
!define MUI_UNICON "..\..\..\openttd.ico"
|
!define MUI_UNICON "..\..\..\openttd.ico"
|
||||||
!define MUI_WELCOMEFINISHPAGE_BITMAP "welcome.bmp"
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "welcome.bmp"
|
||||||
|
|
|
@ -61,8 +61,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 0,4,6,0
|
FILEVERSION 0,4,7,0
|
||||||
PRODUCTVERSION 0,4,6,0
|
PRODUCTVERSION 0,4,7,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -80,7 +80,7 @@ BEGIN
|
||||||
VALUE "Comments", "This program is licensed under the GNU General Public License.\0"
|
VALUE "Comments", "This program is licensed under the GNU General Public License.\0"
|
||||||
VALUE "CompanyName", "OpenTTD Development Team\0"
|
VALUE "CompanyName", "OpenTTD Development Team\0"
|
||||||
VALUE "FileDescription", "OpenTTD\0"
|
VALUE "FileDescription", "OpenTTD\0"
|
||||||
VALUE "FileVersion", "0.4.6.0\0"
|
VALUE "FileVersion", "0.4.7.0\0"
|
||||||
VALUE "InternalName", "openttd\0"
|
VALUE "InternalName", "openttd\0"
|
||||||
VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2006. All Rights Reserved.\0"
|
VALUE "LegalCopyright", "Copyright © OpenTTD Developers 2002-2006. All Rights Reserved.\0"
|
||||||
VALUE "LegalTrademarks", "\0"
|
VALUE "LegalTrademarks", "\0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
OpenTTD README
|
OpenTTD README
|
||||||
Last updated: 2006-03-22
|
Last updated: 2006-03-26
|
||||||
Release version: 0.4.6
|
Release version: 0.4.7
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue