1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-09-19 17:58:58 +10:00
OC-KittenOS/repository/data/app-claw/local.lua
20kdc 899a3b2521 Added bmp.lua and a logo that's more detailed yet smaller than the current one.
Also, the logo is now stored as a BMP.
Turnaround time on that thing is one click,
 we're nowhere near done reaping the benefits of indexed colour, etc.
2018-04-07 10:56:13 +01:00

47 lines
744 B
Lua

-- This is released into the public domain.
-- No warranty is provided, implied or otherwise.
-- local.lua : CLAW Repository Metadata
-- Authors: 20kdc
return {
["app-eeprog"] = {
desc = "EEPROM programmer / copier",
v = 0,
deps = {
"neo"
},
dirs = {
"apps"
},
files = {
"apps/app-eeprog.lua"
},
},
["neo-docs"] = {
desc = "KittenOS NEO system documentation",
v = 2,
deps = {
},
dirs = {
"docs"
},
files = {
"docs/an-intro",
"docs/kn-intro",
"docs/kn-refer",
"docs/kn-sched",
"docs/kn-perms",
"docs/us-perms",
"docs/us-nxapp",
"docs/ul-seria",
"docs/ul-event",
"docs/ul-fmttx",
"docs/ul-neoux",
"docs/ul-brail",
"docs/ul-bmp__",
"docs/gp-pedan"
},
}
}