diff options
author | Patric Stout <truebrain@openttd.org> | 2021-08-14 18:28:35 +0200 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-08-15 12:28:51 +0200 |
commit | eca73a810c19ed5cfb3f24cb5560d0735e19ea00 (patch) | |
tree | 19fd84b2bd77beca620287fbd8a8aa7d57962250 /regression | |
parent | ee333a954934fee206a65795670d15150178c0f3 (diff) | |
download | openttd-eca73a810c19ed5cfb3f24cb5560d0735e19ea00.tar.xz |
Change: rebrand 1.12.0 to 12.0
One question that keeps popping up: "when do we release 2.0?".
NewGRF will force that at least 1.16 will be 2.0, but to not wait
for this, let's drop the "1." and be for ever done with that
conversation.
We are following in the footstep of giants here.
Diffstat (limited to 'regression')
-rw-r--r-- | regression/regression/info.nut | 2 | ||||
-rw-r--r-- | regression/stationlist/info.nut | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/regression/regression/info.nut b/regression/regression/info.nut index 50c9fa514..1a52cfebb 100644 --- a/regression/regression/info.nut +++ b/regression/regression/info.nut @@ -4,7 +4,7 @@ class Regression extends AIInfo { function GetShortName() { return "REGR"; } function GetDescription() { return "This runs regression-tests on some commands. On the same map the result should always be the same."; } function GetVersion() { return 1; } - function GetAPIVersion() { return "1.12"; } + function GetAPIVersion() { return "12"; } function GetDate() { return "2007-03-18"; } function CreateInstance() { return "Regression"; } function UseAsRandomAI() { return false; } diff --git a/regression/stationlist/info.nut b/regression/stationlist/info.nut index 0558ccc1f..ad91c7645 100644 --- a/regression/stationlist/info.nut +++ b/regression/stationlist/info.nut @@ -4,7 +4,7 @@ class StationList extends AIInfo { function GetShortName() { return "REGS"; } function GetDescription() { return "This runs stationlist-tests on some commands. On the same map the result should always be the same."; } function GetVersion() { return 1; } - function GetAPIVersion() { return "1.12"; } + function GetAPIVersion() { return "12"; } function GetDate() { return "2007-03-18"; } function CreateInstance() { return "StationList"; } function UseAsRandomAI() { return false; } |