mirror of https://github.com/OpenTTD/OpenTTD
(svn r19150) -Fix (r19143): some more locations could use updating
parent
a6112670d0
commit
9f27959fcd
|
@ -1,4 +1,4 @@
|
||||||
openttd (1.0~svn-1) UNRELEASED; urgency=low
|
openttd (1.1~svn-1) UNRELEASED; urgency=low
|
||||||
|
|
||||||
* Unreleased SVN version. Versioned to allow normal upgrades to released
|
* Unreleased SVN version. Versioned to allow normal upgrades to released
|
||||||
versions.
|
versions.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
set OPENTTD_VERSION=1.0.0-beta4
|
set OPENTTD_VERSION=1.1.0-alpha
|
||||||
set OPENSFX_VERSION=0.8.0
|
set OPENSFX_VERSION=0.8.0
|
||||||
set NOSOUND_VERSION=0.8.0
|
set NOSOUND_VERSION=0.8.0
|
||||||
set OPENGFX_VERSION=0.7.0
|
set OPENGFX_VERSION=0.7.0
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
Name: openttd
|
Name: openttd
|
||||||
Version: 1.0.0
|
Version: 1.1.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
|
|
||||||
Group: Amusements/Games
|
Group: Amusements/Games
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# Version numbers to update
|
# Version numbers to update
|
||||||
!define APPV_MAJOR 1
|
!define APPV_MAJOR 1
|
||||||
!define APPV_MINOR 0
|
!define APPV_MINOR 1
|
||||||
!define APPV_MAINT 0
|
!define APPV_MAINT 0
|
||||||
!define APPV_BUILD 3
|
!define APPV_BUILD 0
|
||||||
!define APPV_EXTRA "-beta4"
|
!define APPV_EXTRA "-alpha"
|
||||||
|
|
||||||
!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
|
||||||
|
|
|
@ -14,6 +14,10 @@
|
||||||
* functions may still be available if you return an older API version
|
* functions may still be available if you return an older API version
|
||||||
* in GetAPIVersion() in info.nut.
|
* in GetAPIVersion() in info.nut.
|
||||||
*
|
*
|
||||||
|
* \b 1.1.0
|
||||||
|
*
|
||||||
|
* 1.0.0 is not yet released. The following changes are not set in stone yet.
|
||||||
|
*
|
||||||
* \b 1.0.0
|
* \b 1.0.0
|
||||||
*
|
*
|
||||||
* 1.0.0 is not yet released. The following changes are not set in stone yet.
|
* 1.0.0 is not yet released. The following changes are not set in stone yet.
|
||||||
|
|
|
@ -149,6 +149,7 @@ public:
|
||||||
* Valid return values are:
|
* Valid return values are:
|
||||||
* - "0.7"
|
* - "0.7"
|
||||||
* - "1.0"
|
* - "1.0"
|
||||||
|
* - "1.1"
|
||||||
*
|
*
|
||||||
* @return The version this AI is compatible with.
|
* @return The version this AI is compatible with.
|
||||||
* @note This function is optional.
|
* @note This function is optional.
|
||||||
|
|
Loading…
Reference in New Issue