Skip to content

Commit 604eef1

Browse files
author
Will Thomas
committed
adding programs.cfg
1 parent 9ec7dad commit 604eef1

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

Diff for: gml/lib/default.gss

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ gui {
4747
}
4848

4949
label {
50-
text-color: 0xffffff;
50+
text-color: 0x000000;
5151
text-background: 0xb4b4b4;
5252
}
5353

Diff for: programs.cfg

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
["gml"] = {
3+
files = {
4+
["master/gml/lib/canvas.lua"] = "/lib",
5+
["master/gml/lib/colorutils.lua"] = "/lib",
6+
["master/gml/lib/default.gss"] = "/lib",
7+
["master/gml/lib/gfxbuffer.lua"] = "/lib",
8+
["master/gml/lib/gml.lua"] = "/lib",
9+
["master/gml/lib/gmlDialogs.lua"] = "/lib",
10+
},
11+
dependencies = {
12+
},
13+
name = "GML",
14+
description = "Gopher's GUI Libraries for OpenComputers",
15+
authors = "Gopher",
16+
note = "see gml-examples package for sample programs, and the repo wiki on github for documentation",
17+
hidden = false,
18+
repo="tree/master/gml"
19+
},
20+
["gml-examples"] = {
21+
files = {
22+
["master/gml/bin/gmltest.lua"] = "/bin",
23+
["master/gml/bin/savedlg.lua"] = "/bin",
24+
},
25+
dependencies = {
26+
["gml"] = "/lib"--This package is installed into the specified subfolder
27+
},
28+
name = "GML Examples",
29+
description = "Example programs using GML",
30+
authors = "Gopher",
31+
note = "see gmlExamples package for sample programs, and the repo wiki on github for documentation",
32+
hidden = false,
33+
repo="tree/master/gml"
34+
},
35+
}

0 commit comments

Comments
 (0)