mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-29 01:19:11 +00:00
Compare commits
1 Commits
release/1.
...
1.4.4-RC1
Author | SHA1 | Date | |
---|---|---|---|
|
46ba435529 |
@@ -1,8 +1,3 @@
|
|||||||
1.4.4 (2014-10-21)
|
|
||||||
------------------------------------------------------------------------
|
|
||||||
(None)
|
|
||||||
|
|
||||||
|
|
||||||
1.4.4-RC1 (2014-10-08)
|
1.4.4-RC1 (2014-10-08)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
- Fix: Image widgets stored 32bit SpriteID in uint16 (r26971)
|
- Fix: Image widgets stored 32bit SpriteID in uint16 (r26971)
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
OpenTTD's known bugs
|
OpenTTD's known bugs
|
||||||
Last updated: 2014-10-21
|
Last updated: 2014-10-08
|
||||||
Release version: 1.4.4
|
Release version: 1.4.4-RC1
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,9 +1,3 @@
|
|||||||
openttd (1.4.4-0) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release 1.4.4
|
|
||||||
|
|
||||||
-- OpenTTD <info@openttd.org> Tue, 21 Oct 2014 21:00:00 +0200
|
|
||||||
|
|
||||||
openttd (1.4.4~RC1-0) unstable; urgency=low
|
openttd (1.4.4~RC1-0) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream release 1.4.4-RC1
|
* New upstream release 1.4.4-RC1
|
||||||
|
@@ -2,8 +2,8 @@
|
|||||||
!define APPV_MAJOR 1
|
!define APPV_MAJOR 1
|
||||||
!define APPV_MINOR 4
|
!define APPV_MINOR 4
|
||||||
!define APPV_MAINT 4
|
!define APPV_MAINT 4
|
||||||
!define APPV_BUILD 1
|
!define APPV_BUILD 0
|
||||||
!define APPV_EXTRA ""
|
!define APPV_EXTRA "-RC1"
|
||||||
|
|
||||||
!define APPNAME "OpenTTD" ; Define application name
|
!define APPNAME "OpenTTD" ; Define application name
|
||||||
!define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version
|
!define APPVERSION "${APPV_MAJOR}.${APPV_MINOR}.${APPV_MAINT}${APPV_EXTRA}" ; Define application version
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
Last updated: 2014-10-21
|
Last updated: 2014-10-08
|
||||||
Release version: 1.4.4
|
Release version: 1.4.4-RC1
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
@@ -79,8 +79,8 @@ END
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,4,0,!!REVISION!!
|
FILEVERSION 1,4,4,!!REVISION!!
|
||||||
PRODUCTVERSION 1,4,0,!!REVISION!!
|
PRODUCTVERSION 1,4,4,!!REVISION!!
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@@ -70,7 +70,7 @@ const byte _openttd_revision_modified = !!MODIFIED!!;
|
|||||||
* final release will always have a lower version number than the released
|
* final release will always have a lower version number than the released
|
||||||
* version, thus making comparisons on specific revisions easy.
|
* version, thus making comparisons on specific revisions easy.
|
||||||
*/
|
*/
|
||||||
const uint32 _openttd_newgrf_version = 1 << 28 | 4 << 24 | 0 << 20 | 0 << 19 | (!!REVISION!! & ((1 << 19) - 1));
|
const uint32 _openttd_newgrf_version = 1 << 28 | 4 << 24 | 4 << 20 | 0 << 19 | (!!REVISION!! & ((1 << 19) - 1));
|
||||||
|
|
||||||
#ifdef __MORPHOS__
|
#ifdef __MORPHOS__
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user