OpenComputerScripts/programs.info

76 lines
1.7 KiB
Plaintext
Raw Normal View History

2018-11-21 11:45:58 +08:00
{
2018-11-21 11:55:45 +08:00
["grab"]={
2018-11-21 11:45:58 +08:00
title="Grab",
info="Grab - Official OpenComputerScripts Installer",
files={
2018-11-24 01:29:56 +08:00
"grab.lua",
2018-11-24 16:16:54 +08:00
["grab_installer.lua"]="/tmp/.grab_installer.lua"
2018-11-24 01:29:56 +08:00
},
2018-11-24 16:16:54 +08:00
installer="/tmp/.grab_installer.lua"
2018-11-21 11:45:58 +08:00
},
2018-11-21 11:55:45 +08:00
["checkarg"]={
2018-11-21 12:08:25 +08:00
title="Arugment Checker",
2018-11-21 11:45:58 +08:00
info="For easier argument checking",
files={
"checkarg.lua"
}
},
2018-11-21 11:55:45 +08:00
["libevent"]={
2018-11-21 11:45:58 +08:00
title="LibEvent",
info="For easier event processing",
files={
"libevent.lua"
},
requires={
"checkarg"
}
},
2018-11-21 12:08:25 +08:00
["libgpu"]={
title="LibGPU",
info="For easier gpu programming",
files={
"libgpu.lua"
}
},
["simple_data_structure"]={
title="Simple Lua Data Structure",
info="Provides class(...),queue and vector",
files={
"class.lua", "queue.lua", "vector.lua"
}
2018-11-21 12:14:03 +08:00
},
2018-11-21 12:08:25 +08:00
["minesweeper"]={
title="Mine Sweeper",
info="A simple game",
files={
"MineSweeper.lua"
},
requires={
"libgpu","libevent","simple_data_structure"
}
},
2018-11-21 11:55:45 +08:00
["drone"]={
2018-11-21 11:45:58 +08:00
title="Drone",
info="Drone console and bios",
author="Kiritow",
2018-11-24 16:04:29 +08:00
contact="1362050620@qq.com",
2018-11-21 11:45:58 +08:00
files={
"drone_bios.lua",
"drone_console.lua"
},
requires={
"libevent"
}
},
2018-11-21 11:55:45 +08:00
["smartstorage"]={
2018-11-21 11:45:58 +08:00
title="Smart Storage",
info="Smart Storage",
author="Kiritow",
files={
2018-11-21 11:49:05 +08:00
"SmartStorage.lua"
2018-11-21 11:45:58 +08:00
},
requires={
"libevent"
}
}
}