autotrek/.cdbrelease.lua

38 lines
954 B
Lua
Raw Normal View History

2019-10-03 20:12:08 -04:00
-- LUALOCALS < ---------------------------------------------------------
local math, tonumber
= math, tonumber
local math_floor
= math.floor
-- LUALOCALS > ---------------------------------------------------------
local stamp = tonumber("$Format:%at$")
if not stamp then return end
stamp = math_floor((stamp - 1540612800) / 60)
stamp = ("00000000" .. stamp):sub(-8)
2020-07-17 06:10:03 -04:00
-- luacheck: push
-- luacheck: globals config readtext readbinary
readtext = readtext or function() end
readbinary = readbinary or function() end
2019-10-03 20:12:08 -04:00
return {
user = "Warr1024",
pkg = "autotrek",
min = "5.0",
2020-07-17 06:10:03 -04:00
version = stamp .. "-$Format:%h$",
path = ".",
type = "mod",
title = "Auto-Trek",
short_desc = "Automatic long-distance walking via assisted auto-forward",
tags = "transport, player effect",
license = "mit",
desc = readtext('README.md'),
repo = "https://gitlab.com/sztest/autotrek",
screenshots = {
readbinary('.cdb-screenshot.png')
}
2019-10-03 20:12:08 -04:00
}
2020-07-17 06:10:03 -04:00
-- luacheck: pop