-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprograms.cfg
129 lines (129 loc) · 3.87 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
{
["BankVault"] = {
version = "1.0.7",
name = "BankVault",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/BankVault",
description = "A system to controll some vaults",
authors = "LittleTimmy52",
dependencies = {
["libcb"] = "/"
},
files = {
["master/BankVault/BankVaultTextBased.lua"] = "/bin",
["?master/BankVault/BankVault.cfg"] = "//etc/BankVault"
}
},
["Cryption"] = {
version = "1.0.0",
name = "Cryption",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/Cryption",
description = "Encrypt files",
note = "Only files not folders",
authors = "LittleTimmy52",
files = {
["master/Cryption/Cryption.lua"] = "/bin"
}
},
["TrashZip"] = {
version = "1.0.0",
name = "TrashZip",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/TrashZip",
description = "Compress files/dirs",
authors = "LittleTimmy52",
files = {
["master/TrashZip/TrashZip.lua"] = "/bin"
}
},
["NetworkRelay"] = {
version = "1.0.1",
name = "NetworkRelay",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/NetworkRelay",
description = "Relay broadcasted data over link card",
note = "I made this before I knew that relays can take linked cards",
authors = "LittleTimmy52",
files = {
["master/NetworkRelay/LinkedWirelessRelay.lua"] = "/bin",
["?master/NetworkRelay/LinkedWirelessRelay.cfg"] = "//etc/LinkedWirelessRelay"
}
},
["Pulse"] = {
version = "1.0.0",
name = "Pulse",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/MicroController",
description = "Microcontroller redstone clock",
authors = "LittleTimmy52",
files = {
["master/MicroController/Pulse.lua"] = "//home/EEPROMCode"
}
},
["MagCard"] = {
version = "1.0.0",
name = "MagCard",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/Security",
description = "open doors with magnetic cards",
note = "Change doorcontroller to rolldoorcontroller to use rool door",
authors = "LittleTimmy52",
files = {
["master/Security/magCard.lua"] = "/bin"
}
},
["Keypad"] = {
version = "1.0.0",
name = "Keypad",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/Security",
description = "open doors with keypad",
note = "Change doorcontroller to rolldoorcontroller to use rool door",
authors = "LittleTimmy52",
files = {
["master/Security/keypad.lua"] = "/bin",
["master/Security/keypadAdvanced.lua"] = "/bin"
}
},
["PlaceNBreak"] = {
version = "1.0.0",
name = "Place N Break",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/Robot",
description = "Robot place block and break block",
authors = "LittleTimmy52",
files = {
["master/Robot/placeNBreak.lua"] = "/bin"
}
},
["Door"] = {
version = "1.0.0",
name = "Door",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/Door",
description = "Controll doors with microcontroler and tablet",
authors = "LittleTimmy52",
files = {
["master/Door/Door.lua"] = "/bin",
["master/Door/DoorControl.lua"] = "//home/EEPROMCode"
}
},
["BankTransfer"] = {
version = "1.0.1",
name = "BankTransfer",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/BankTransfer",
description = "A way to transfer funds",
authors = "LittleTimmy52",
dependencies = {
["bank_api"] = "/",
["libcb"] = "/"
},
files = {
["master/BankTransfer/BankTransfer.lua"] = "/bin",
["?master/BankTransfer/BankTransfer.cfg"] = "//etc/BankTransfer"
}
},
["AddressToFile"] = {
version = "1.0.0",
name = "AddressToFile",
repo = "https://github.com/LittleTimmy52/OpenComputers/tree/master/AddressToFile",
description = "Get component address and insert to program",
authors = "LittleTimmy52",
files = {
["master/AddressToFile/AddressToFile.lua"] = "/bin",
["master/AddressToFile/GetAddrFromFile.lua"] = "/bin"
}
}
}