nc_ziprunes-cd2025/.cdbrelease.lua

29 lines
760 B
Lua
Raw Normal View History

2020-02-23 14:12:56 -05: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)
2021-02-27 20:38:15 -05:00
-- luacheck: push
-- luacheck: globals config readtext readbinary
readtext = readtext or function() end
readbinary = readbinary or function() end
2020-02-23 14:12:56 -05:00
return {
user = "Warr1024",
pkg = "nc_ziprunes",
2021-12-26 14:31:55 -05:00
dev_state = "ACTIVELY_DEVELOPED",
2021-02-27 20:38:15 -05:00
version = stamp .. "-$Format:%h$",
long_description = readtext("README.md"),
screenshots = {readbinary(".cdb-screenshot.jpg")}
2020-02-23 14:12:56 -05:00
}
2021-02-27 20:38:15 -05:00
-- luacheck: pop