made software app better

This commit is contained in:
2026-01-02 12:02:32 -08:00
parent ac966fba70
commit 709a62ae15
6 changed files with 175 additions and 16 deletions

View File

@@ -4,7 +4,22 @@ local appid = "org.ruffles.launcher"
local project_name = "Launcher"
local package_data = build.optimize(build.package("src"))
build.writePackage(package_data,"build/"..appid)
local meta = {
perms = {
repo = true,
network = true,
app = true,
http = true,
},
author = "Ruffles",
hidden = true,
name = project_name,
appid = appid,
}
build.writeMeta(meta,"build/"..project_name..".meta")
build.merge("build/"..appid,"build/"..project_name..".meta","build/"..project_name..".app")