CDB metadata update

This commit is contained in:
Aaron Suen 2021-02-27 20:02:00 -05:00
parent 9a7747312f
commit 3fde3b5a66
5 changed files with 14 additions and 12 deletions

9
.cdb.json Normal file
View File

@ -0,0 +1,9 @@
{
"type": "mod",
"title": "SkyRealm for NodeCore",
"short_desc": "SkyBlocks inside vanilla NodeCore",
"tags": ["mapgen", "building", "crafting", "transport"],
"license": "MIT",
"repo": "https://gitlab.com/sztest/nc_skyrealm",
"issue_tracker": "https://discord.gg/NNYeF6f"
}

View File

@ -19,17 +19,8 @@ stamp = ("00000000" .. stamp):sub(-8)
return {
user = "Warr1024",
pkg = "nc_skyrealm",
min = "5.0",
version = stamp .. "-$Format:%h$",
path = ".",
type = "mod",
title = "SkyRealm for NodeCore",
short_desc = "SkyBlocks inside vanilla NodeCore",
tags = "mapgen, building, crafting, transport",
license = "mit",
desc = readtext('README.md'),
repo = "https://gitlab.com/sztest/nc_skyrealm",
issueTracker = "https://discord.gg/NNYeF6f",
screenshots = {readbinary('.cdb1.jpg'), readbinary('.cdb2.jpg')}
}

1
.gitattributes vendored
View File

@ -1,4 +1,5 @@
.cdbrelease.lua export-subst
.cdb.json export-ignore
.cdb*.jpg export-ignore
.git* export-ignore
.lua* export-ignore

View File

@ -1,6 +1,6 @@
-- LUALOCALS < ---------------------------------------------------------
local math, minetest, nodecore, pairs
= math, minetest, nodecore, pairs
local math, minetest, next, nodecore, pairs
= math, minetest, next, nodecore, pairs
local math_cos, math_floor, math_pi
= math.cos, math.floor, math.pi
-- LUALOCALS > ---------------------------------------------------------

View File

@ -1,2 +1,3 @@
depends = nc_api_all, nc_terrain, nc_sponge, nc_tree, nc_lode, nc_lux, nc_concrete, nc_fire
optional_depends = nc_guide
optional_depends = nc_guide
min_minetest_version = 5.3