-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathprograms.cfg
113 lines (113 loc) · 3.46 KB
/
programs.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
["mc"] = {
files = {
["master/mc/mc.lua"] = "/bin",
["master/mc/README.md"] = "/share/doc/mc"
},
name = "Midday Commander",
description = "A file commander, similar to Midnight Commander and Norton Commander.",
authors = "Zer0Galaxy, NEO, Totoro",
repo = "tree/master/mc"
},
["holo-editor"] = {
files = {
["master/holo-editor/holo-editor.lua"] = "/bin",
["master/holo-editor/holo-viewer.lua"] = "/bin",
["master/holo-editor/README.md"] = "/share/doc/holo-editor"
},
name = "Hologram Editor and Viewer",
description = "Allows to easily create, edit, and show holograms.",
authors = "Totoro, NEO",
repo = "tree/master/holo-editor"
},
["obj"] = {
files = {
["master/obj/obj.lua"] = "/lib",
["master/obj/README.md"] = "/share/doc/obj"
},
name = "OBJ",
description = "3D models drawing library for OpenGlasses.",
authors = "Totoro",
repo = "tree/master/obj"
},
["libforms"] = {
files = {
["master/libforms/forms.lua"] = "/lib",
["master/libforms/README.md"] = "/share/doc/libforms"
},
name = "Forms",
description = "A lightweight and easy-to-use GUI library.",
authors = "Zer0Galaxy",
repo = "tree/master/libforms"
},
["lava-runner"] = {
files = {
["master/lava-runner/lava-runner.lua"] = "/bin",
["master/lava-runner/README.md"] = "/share/doc/lava-runner"
},
name = "Lava Runner",
description = "A game for OpenComputers. Escape from the lava!",
authors = "electronic_steve",
repo = "tree/master/lava-runner"
},
["geomine"] = {
files = {
["master/geomine/geomine.lua"] = "/bin",
["master/geomine/README.md"] = "/share/doc/geomine"
},
name = "GeoMine",
description = "A miner program that uses the Geolyzer to effectively mine the ores.",
authors = "Doob",
repo = "tree/master/geomine"
},
["geoglasses"] = {
files = {
["master/geoglasses/geoglasses.lua"] = "/bin",
["master/geoglasses/README.md"] = "/share/doc/geoglasses"
},
name = "GeoGlasses",
description = "A program that searches ores, and other high-density blocks, and highlights them on the OpenGlasses' glasses.",
authors = "electronic_steve",
repo = "tree/master/geoglasses"
},
["camera"] = {
files = {
["master/camera/camera.lua"] = "/bin",
["master/camera/README.md"] = "/share/doc/camera"
},
name = "Camera",
description = "Draws an image based on the Computronics' camera raytracing data",
authors = "Doob",
repo = "tree/master/camera"
},
["libthread"] = {
files = {
["master/libthread/thread.lua"] = "/lib",
["master/libthread/README.md"] = "/share/doc/libthread"
},
name = "A threading library",
description = "Makes it simple to create a program that needs multithreading.",
authors = "Zer0Galaxy",
repo = "tree/master/libthread"
},
["libqr"] = {
files = {
["master/libqr/qr.lua"] = "/lib",
["master/libqr/README.md"] = "/share/doc/libqr"
},
name = "QR code generator",
description = "A QR generator library for OpenComputers.",
authors = "1Ridav",
repo = "tree/master/libqr"
},
["libvector"] = {
files = {
["master/libvector/vector.lua"] = "/lib",
["master/libvector/README.md"] = "/share/doc/libvector"
},
name = "Vector library",
description = "Provides mathematical vectors.",
authors = "Ktlo",
repo = "tree/master/libvector"
}
}