This commit is contained in:
FajsiEx 2021-11-27 18:42:27 +01:00
parent 4e6578fdfc
commit 1889fd3e3b
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,9 @@
-- I'm following https://semver.org/
-- If you have issues with it, contact FajsiEx#6106
return {
MAJOR = 0,
MINOR = 2,
PATCH = 0
}

View File

@ -1,4 +1,5 @@
local version = require('common.version')
local resx, resy = game.GetResolution()
local desw, desh = 1080,1920;
@ -53,7 +54,7 @@ local drawFooter = function ()
gfx.FontSize(20)
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_TOP)
gfx.FillColor(255, 255, 255, 255);
gfx.Text('EXPERIMENTALGEAR 0.1.1 - CLOSED BETA. DO. NOT. LEAK.', 8, 1895);
gfx.Text('EXPERIMENTALGEAR ' .. version.MAJOR .. '.' .. version.MINOR .. '.' .. version.PATCH .. ' - CLOSED BETA. DO. NOT. LEAK.', 8, 1895);
end
local progressTransitions = function (deltaTime)