version set to v0.11

This commit is contained in:
Joachim Stolberg 2020-06-14 17:11:15 +02:00
parent 3a22eab80c
commit 0296ca5e84
2 changed files with 4 additions and 4 deletions

View File

@ -88,6 +88,6 @@ to 'lsqlite3' and 'lua-marshal', but there is no way back, so:
- 2020-05-22 V0.08 * Support for 'lua-marshal' and 'lsqlite3' added
- 2020-05-31 V0.09 * TA4 tubes upgraded, manuals updated
- 2020-06-04 V0.10 * minor changes and bugfixes
- 2020-06-14 V0.11 * cart commands added for both controllers

View File

@ -13,7 +13,7 @@
techage = {}
-- Version for compatibility checks, see readme.md/history
techage.version = 0.10
techage.version = 0.11
if minetest.global_exists("tubelib") then
minetest.log("error", "[techage] Techage can't be used together with the mod tubelib!")
@ -27,8 +27,8 @@ elseif minetest.global_exists("techpack") then
elseif minetest.global_exists("tubelib2") and tubelib2.version < 1.9 then
minetest.log("error", "[techage] Techage requires tubelib2 version 1.9 or newer!")
return
elseif minetest.global_exists("minecart") and minecart.version < 1.05 then
minetest.log("error", "[techage] Techage requires minecart version 1.05 or newer!")
elseif minetest.global_exists("minecart") and minecart.version < 1.06 then
minetest.log("error", "[techage] Techage requires minecart version 1.06 or newer!")
return
elseif minetest.global_exists("lcdlib") and lcdlib.version < 1.0 then
minetest.log("error", "[techage] Techage requires lcdlib version 1.0 or newer!")