mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-08 19:48:07 +11:00
899a3b2521
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.
47 lines
744 B
Lua
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"
|
|
},
|
|
}
|
|
}
|