1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 06:59:10 +00:00

Compare commits

..

1 Commits

Author SHA1 Message Date
frosch
3a01879163 (svn r27434) -Release: 1.5.3-RC1 2015-11-01 12:11:51 +00:00
7 changed files with 8 additions and 19 deletions

View File

@@ -1,8 +1,3 @@
1.5.3 (2015-12-01)
------------------------------------------------------------------------
(None)
1.5.3-RC1 (2015-11-01)
------------------------------------------------------------------------
- Fix: When selecting a refit cargo for orders, do not check whether the vehicle is in a depot or station, and do not ask whether the vehicle currently allows station-refitting. Also hide the refit cost for orders, it is not predictable (r27428)

View File

@@ -1,5 +1,5 @@
OpenTTD's known bugs
Last updated: 2015-12-01
Last updated: 2015-11-01
Release version: 1.5.3
------------------------------------------------------------------------

View File

@@ -1,9 +1,3 @@
openttd (1.5.3-0) unstable; urgency=low
* New upstream release 1.5.3
-- OpenTTD <info@openttd.org> Tue, 01 Dec 2015 21:00:00 +0100
openttd (1.5.3~RC1-0) unstable; urgency=low
* New upstream release 1.5.3-RC1

View File

@@ -2,8 +2,8 @@
!define APPV_MAJOR 1
!define APPV_MINOR 5
!define APPV_MAINT 3
!define APPV_BUILD 1
!define APPV_EXTRA ""
!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

View File

@@ -1,5 +1,5 @@
Last updated: 2015-12-01
Release version: 1.5.3
Last updated: 2015-11-01
Release version: 1.5.3-RC1
------------------------------------------------------------------------

View File

@@ -79,8 +79,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,5,0,!!REVISION!!
PRODUCTVERSION 1,5,0,!!REVISION!!
FILEVERSION 1,5,3,!!REVISION!!
PRODUCTVERSION 1,5,3,!!REVISION!!
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L

View File

@@ -72,7 +72,7 @@ const byte _openttd_revision_modified = !!MODIFIED!!;
* final release will always have a lower version number than the released
* version, thus making comparisons on specific revisions easy.
*/
const uint32 _openttd_newgrf_version = 1 << 28 | 5 << 24 | 0 << 20 | 0 << 19 | (!!REVISION!! & ((1 << 19) - 1));
const uint32 _openttd_newgrf_version = 1 << 28 | 5 << 24 | 3 << 20 | 0 << 19 | (!!REVISION!! & ((1 << 19) - 1));
#ifdef __MORPHOS__
/**