-
Notifications
You must be signed in to change notification settings - Fork 14
/
programs.cfg
227 lines (227 loc) · 5.53 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
["immibis-compress"] = {
files = {
["master/immibis-compress/compress.lua"] = "/bin",
["master/immibis-compress/decompress.lua"] = "/bin",
},
dependencies = {
["ipack"] = "/",
},
name = "ipack (de)compressor",
description = "Compressor and Decompressor for the ipack library",
authors = "gamax92, immibis",
repo = "tree/master/immibis-compress",
},
["tapeutils"] = {
files = {
["master/tapeutils/dumptape.lua"] = "/bin",
["master/tapeutils/formattape.lua"] = "/bin",
["master/tapeutils/loadtape.lua"] = "/bin",
["master/tapeutils/setspeed.lua"] = "/bin",
},
dependencies = {
},
name = "tapeutils",
description = "Utilities for using Computronics Tape Drives",
authors = "gamax92",
note = "Requires Computronics mod to be installed.",
repo = "tree/master/tapeutils",
},
["ipack"] = {
files = {
["master/immibis-compress/ipack.lua"] = "/lib",
},
dependencies = {
},
name = "ipack compression library",
description = "ipack compression library based on immibis's compression routine",
authors = "gamax92, immibis",
repo = "blob/master/immibis-compress/ipack.lua",
},
["libformat"] = {
files = {
["master/enhanced/format.lua"] = "/lib",
},
dependencies = {
},
name = "table formatting library",
description = "table formatting with justification and width options",
authors = "gamax92",
repo = "blob/master/enhanced/format.lua",
},
["fstools"] = {
files = {
["master/filesystems/fslib.lua"] = "/lib",
["master/filesystems/mountfs.lua"] = "/bin",
},
dependencies = {
},
name = "filesystem tools",
description = "Utilities and libraries for raw filesystems",
authors = "gamax92",
repo = "blob/master/filesystems/fslib.lua",
},
["tapefs"] = {
files = {
["master/filesystems/tapefs.lua"] = "/lib",
["master/filesystems/tapefsd.lua"] = "/bin",
},
dependencies = {
["vcomponent"] = "/",
},
name = "tapefs",
description = "tapefs library and utilities",
authors = "gamax92",
note = "Requires Computronics mod to be installed.",
repo = "blob/master/filesystems/tapefs.lua",
},
["msdosfs"] = {
files = {
["master/filesystems/msdos.lua"] = "/lib",
},
dependencies = {
["fstools"] = "/",
["vcomponent"] = "/",
},
name = "msdos filesystem",
description = "Provides msdos filesystem support",
authors = "gamax92",
repo = "blob/master/filesystems/msdos.lua",
},
["socfs"] = {
files = {
["master/filesystems/socfs.lua"] = "/lib",
["master/filesystems/mksocfs.lua"] = "/bin",
},
dependencies = {
["fstools"] = "/",
["vcomponent"] = "/",
},
name = "socfs filesystem",
description = "Provides SOCFS filesystem support",
authors = "gamax92",
repo = "blob/master/filesystems/socfs.lua",
},
["vcomponent"] = {
files = {
["master/vcomponent/vcomponent.lua"] = "/lib",
["master/vcomponent/vcmanage.lua"] = "/bin",
},
dependencies = {
},
name = "vcomponent",
description = "Virtual Components for OC",
authors = "gamax92",
repo = "tree/master/vcomponent"
},
["chip8emu"] = {
files = {
["master/chip8.lua"] = "/bin",
},
dependencies = {
},
name = "chip8 emulator",
description = "CHIP8 Emulator for OC",
authors = "gamax92",
repo = "blob/master/chip8.lua",
},
["debug"] = {
files = {
["master/debug.lua"] = "/bin",
},
dependencies = {
},
name = "program debugger",
description = "Give full stacktraces for programs",
authors = "gamax92",
repo = "blob/master/debug.lua",
},
["ocnetfs"] = {
files = {
["master/OCNetFS/ocnetfs.lua"] = "/bin",
},
dependencies = {
["vcomponent"] = "/",
},
name = "networked filesystem",
description = "Connect a OCNetFS server as a local filesystem",
authors = "gamax92",
repo = "blob/master/OCNetFS/ocnetfs.lua",
},
["tar"] = {
files = {},
dependencies = {
["mpm.tar"] = "/",
},
name = "tar archiver for OpenComputers",
description = "Manipulate and utilize tar archives",
authors = "mpmxyz",
},
["unrequire"] = {
files = {
["master/unrequire.lua"] = "/bin",
},
dependencies = {
},
name = "library unloader for OpenComputers",
description = "Unload libraries from the package cache",
authors = "gamax92",
repo = "blob/master/unrequire.lua",
},
["wocchat"] = {
files = {
["master/wocchat/wocchat.lua"] = "/bin",
},
dependencies = {
},
name = "wocchat irc client",
description = "WocChat IRC client for OpenComputers",
authors = "gamax92",
repo = "blob/master/wocchat/wocchat.lua",
},
["nano"] = {
files = {
["master/nano/nano.lua"] = "/bin",
},
dependencies = {
},
name = "Lua nano",
description = "nano clone for OpenComputers",
authors = "gamax92",
repo = "blob/master/nano/nano.lua",
},
["ooci-tools"] = {
files = {
["master/ooci/ctif2ooci.lua"] = "/bin",
["master/ooci/ooci2ctif.lua"] = "/bin",
["master/ooci/ooci-view.lua"] = "/bin",
},
dependencies = {
},
name = "ooci-tools",
description = "OOCI Image Format utilities",
authors = "gamax92",
repo = "tree/master/ooci"
},
["dfpwm"] = {
files = {
["master/dfpwm/lib/dfpwm.lua"] = "/lib",
["master/dfpwm/dfpwm.lua"] = "/bin",
},
dependencies = {
},
name = "dfpwm codec",
description = "Lua implementation of the DFPWM codec",
authors = "gamax92, GreaseMonkey (for Java implementation)",
repo = "tree/master/dfpwm"
},
["soundcard"] = {
files = {
["master/soundcard.lua"] = "/lib",
},
name = "soundcard wrapper",
description = "automatic processing of soundcard queues and delays",
authors = "gamax92",
repo = "blob/master/soundcard.lua",
}
}