nc_exmachina/.cdbrelease.lua
Aaron Suen 66488e34b7 Reactivate on CDB
There may not be upcoming features planned specifically, but if
any gameplay changes make improvements relevant, this may get
spontaneous expansion, i.e. not merely bugfixes, and hence is
more "actively developed" in that sense than "maintenance only."
2022-01-22 22:30:27 -05:00

37 lines
1.1 KiB
Lua

-- 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)
-- luacheck: push
-- luacheck: globals config readtext readbinary
readtext = readtext or function() end
readbinary = readbinary or function() end
return {
user = "Warr1024",
pkg = "nc_exmachina",
version = stamp .. "-$Format:%h$",
type = "mod",
dev_state = "ACTIVELY_DEVELOPED",
title = "Dais Ex Machina",
short_description = "An other-worldly platform to preserve some of your stuff across map resets for NodeCore",
tags = {"building", "inventory", "transport", "world_tools", "technology"},
license = "MIT",
media_license = "MIT",
repo = "https://gitlab.com/sztest/nc_exmachina",
issue_tracker = "https://discord.gg/NNYeF6f",
long_description = readtext('README.md'),
screenshots = {readbinary('.cdb-screenshot.jpg')}
}
-- luacheck: pop