-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathprograms.cfg
141 lines (140 loc) · 4.71 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
{
["superlib"] = {
files = {
["master/superlib/superlib.lua"] = "//usr/lib",
["master/superlib/superlib_tests.lua"] = "//usr/bin",
},
name = "Superlib",
description = "Library of stuff",
authors = "superminor2",
note = "Not for use on its own",
hidden = true,
repo = "tree/master/superlib",
},
["gml-super"] = {
files = {
["master/repacked/gml/dark.gss"] = "//usr/lib",
["master/repacked/gml/default.gss"] = "//usr/lib",
["master/repacked/gml/gfxbuffer.lua"] = "//usr/lib",
["master/repacked/gml/gml.lua"] = "//usr/lib",
},
name = "gml-super",
description = "Repacked copy of gml for sgcx",
authors = "superminor2",
note = "",
hidden = true,
repo = "tree/master/repacked/gml",
},
["autopid"] = {
files = {
["master/autopid/bin/autopid.lua"] = "//usr/bin",
["master/autopid/bin/auto.lua"] = "//usr/bin",
["master/autopid/man/autopid.man"] = "//usr/man",
["master/autopid/lib/autopidlib.lua"] = "//usr/lib",
["master/autopid/apids/reactor.apid"] = "//usr/autopid",
["master/autopid/apids/turbine.apid"] = "//usr/autopid",
["master/autopid/boot/99_autopid.lua"] = "//boot",
},
dependencies = {
["superlib"] = "/",
["mpmpid"] = "/",
},
name = "autopid",
description = "Scans for turbines and reactors and adds them to mpmxyz's pid.",
authors = "superminor2",
note = "In-dev",
repo = "tree/master/autopid",
},
["supercrypt"] = {
files = {
["master/supercrypt/lib/aes.lua"] = "//usr/lib",
["master/supercrypt/lib/sc_aes.lua"] = "//usr/lib",
["master/supercrypt/lib/sc_buffer.lua"] = "//usr/lib",
["master/supercrypt/lib/sc_ciphermode.lua"] = "//usr/lib",
["master/supercrypt/lib/sc_gf.lua"] = "//usr/lib",
["master/supercrypt/lib/sc_util.lua"] = "//usr/lib",
["master/supercrypt/lib/sha256.lua"] = "//usr/lib",
["master/supercrypt/tests/aesspeed.lua"] = "//usr/bin",
["master/supercrypt/tests/filedecrypt.lua"] = "//usr/bin",
["master/supercrypt/tests/fileencrypt.lua"] = "//usr/bin",
["master/supercrypt/tests/testaes.lua"] = "//usr/bin",
["master/supercrypt/tests/testciphers.lua"] = "//usr/bin",
},
name = "supercrypt",
description = "Encryption things I took from random places and modded a bit. Currently supports aes encryption / decryption and SHA256 hashing",
authors = "superminor2",
note = "Not ready for use... at all",
repo = "tree/master/supercrypt",
},
["power-monitor"] = {
files = {
["master/power-monitor/power-monitor.lua"] = "//usr/bin",
},
dependencies = {
["superlib"] = "/",
["autopid"] = "/",
},
name = "Power Monitor",
description = "Monitors IC2, ThermalExpansion, and EnderIO Energy Storage",
authors = "superminor2",
note = "Currently Slightly buggy, and incomplete",
repo = "tree/master/power-monitor",
},
["sminesweeperone"] = {
files = {
["master/games/ms1/minesweeper.lua"] = "/bin",
},
dependencies = {
},
name = "sminesweeperone",
description = "superminor2 Minesweeper Type 1",
authors = "superminor2",
description = "Basic Minesweeper game",
note = "Alpha version",
repo = "tree/master/games/ms1",
},
["osmagdoor"] = {
files = {
["master/osmagdoor/osdoor.lua"] = "//usr/bin",
["master/osmagdoor/osd.lua"] = "//usr/bin",
["master/osmagdoor/osmag.lua"] = "//usr/lib",
["master/osmagdoor/99_osmagdoor.lua"] = "//boot",
},
dependencies = {
["superlib"] = "/"
},
name = "OpenSecurity Mag Card Door",
description = "Security program that works with opensecurity doors and mag card readers.",
authors = "superminor2",
note = "Currently Slightly buggy, and incomplete",
repo = "tree/master/osmagcard",
},
["pclsgcx"] = {
files = {
["master/pcl/2021/sgcx.lua"] = "//usr/bin",
},
dependencies = {
["superlib"] = "/",
["gml-super"] = "/",
},
name = "PC-Logix SGCX",
description = "Modifed SGCX for PC-Logix minecraft server, updates stargate list from the internet (Updated for 2021 PCL Server)",
authors = "superminor2",
note = "Original Program: https://oc.cil.li/index.php?/topic/1525-sgcx-sgcraft-staragte-controller/",
repo = "tree/master/pcl/2021",
},
["alongtimeago"] = {
files = {
["master/random/alongtimeago/alongtimeago.lua"] = "//usr/bin",
["master/random/alongtimeago/1.txt"] = "//usr/movies",
},
dependencies = {
["superlib"] = "/",
},
name = "alongtimeago",
description = "Port of CC's alongtimeago",
authors = "superminor2",
note = ".",
repo = "tree/master/random/alongtimeago",
},
}