nodecore-cd2025/.cdbrelease.lua

34 lines
1.1 KiB
Lua
Raw Normal View History

2019-03-31 09:05:33 -04:00
-- LUALOCALS < ---------------------------------------------------------
local dofile
= dofile
-- LUALOCALS > ---------------------------------------------------------
2020-03-28 06:48:57 -04:00
-- luacheck: push
2020-03-28 08:53:35 -04:00
-- luacheck: globals config readtext readbinary
2020-03-28 06:48:57 -04:00
local alpha = config and config.branch == "dev"
2020-03-28 08:53:35 -04:00
readtext = readtext or function() end
readbinary = readbinary or function() end
2020-03-28 06:48:57 -04:00
2019-03-31 09:05:33 -04:00
return {
user = "Warr1024",
2020-05-18 10:54:50 -04:00
pkg = alpha and "nodecore_alpha" or "nodecore",
2019-08-12 21:16:35 -04:00
min = "5.0",
2020-03-28 06:48:57 -04:00
version = dofile("./mods/nc_api/version.lua"),
path = ".",
type = "game",
2020-03-28 08:53:35 -04:00
title = "NodeCore" .. (alpha and " ALPHA" or ""),
2020-03-28 06:48:57 -04:00
short_desc = (alpha
2020-05-18 07:46:41 -04:00
and "Experimental early-access release of NodeCore."
or "Original, immersive puzzle/adventure game with NO popup GUIs, minimal HUDs."),
2020-03-28 08:53:35 -04:00
tags = "building, crafting, environment, inventory, machines, player vs env, puzzle",
2020-03-28 06:48:57 -04:00
license = "mit",
2020-03-28 08:53:35 -04:00
desc = alpha and readtext('.cdb-alpha.md') or readtext('.cdb-release.md'),
2020-03-28 06:48:57 -04:00
repo = "https://gitlab.com/sztest/nodecore",
website = "https://nodecore.mine.nu",
issueTracker = "https://discord.gg/NNYeF6f",
screenshots = {alpha and readbinary('.cdb-alpha.jpg') or readbinary('.cdb-release.jpg')}
2019-03-31 09:05:33 -04:00
}
2020-03-28 06:48:57 -04:00
-- luacheck: pop