szutilpack-cd2025/.cdbrelease.lua

19 lines
477 B
Lua
Raw Normal View History

2019-03-31 11:38:06 -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)
return {
user = "Warr1024",
pkg = "szutilpack",
2019-09-01 12:52:22 -04:00
min = "5.0",
2019-03-31 11:38:06 -04:00
version = stamp .. "-$Format:%h$"
}