Skip to content

Commit e9bee55

Browse files
committed
add current releaser to about section, add css to root so colors appear for full report
1 parent ef8ec94 commit e9bee55

File tree

2 files changed

+118
-1
lines changed

2 files changed

+118
-1
lines changed

gomule/src/gomule/gui/D2FileManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ public void openStash(String pStashName, boolean load)
14681468
public void displayAbout()
14691469
{
14701470
JOptionPane.showMessageDialog(this, "A java-based Diablo II muling application\n\noriniginally created by Andy Theuninck (Gohanman)\nVersion 0.1a"
1471-
+ "\n\ncurrent release by Randall & Silospen\nVersion " + CURRENT_VERSION + "\n\nAnd special thanks to:" + "\n\tHakai_no_Tenshi & Gohanman for helping me out with the file formats"
1471+
+ "\n\nnext released by Randall & Silospen\nVersion " + CURRENT_VERSION + "\n\ncurrently released by pairofdocs\n\nAnd special thanks to:" + "\n\tHakai_no_Tenshi & Gohanman for helping me out with the file formats"
14721472
+ "\nRTB for all his help.\n\tThe Super Beta Testers:\nSkinhead On The MBTA\nnubikon\nOscuro\nThyiad\nMoiselvus\nPurpleLocust\nAnd anyone else I've forgotten..!", "About", JOptionPane.PLAIN_MESSAGE);
14731473
}
14741474

standard.css

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
2+
/* The following styles are required. You can change their */
3+
/* attributes but you cannot change their name. */
4+
5+
.body
6+
{
7+
color : whitesmoke;
8+
background-color: #151515;
9+
}
10+
11+
.cat
12+
{
13+
font-family : Arial, Helvetica, Sans-serif;
14+
color : whitesmoke;
15+
font-size : 14;
16+
font-weight : BOLD;
17+
}
18+
19+
.subcat
20+
{
21+
font-family : Arial, Helvetica, Sans-serif;
22+
color : whitesmoke;
23+
font-size : 10;
24+
font-weight : BOLD;
25+
}
26+
27+
.total
28+
{
29+
font-family : Arial, Helvetica, Sans-serif;
30+
color : whitesmoke;
31+
font-size : 10;
32+
}
33+
34+
.d
35+
{
36+
font-family : Arial, Helvetica, Sans-serif;
37+
color : whitesmoke;
38+
font-size : 10;
39+
}
40+
41+
.b
42+
{
43+
font-family : Arial, Helvetica, Sans-serif;
44+
color : royalblue;
45+
font-size : 10;
46+
font-weight : BOLD;
47+
}
48+
49+
.s
50+
{
51+
font-family : Arial, Helvetica, Sans-serif;
52+
color : indianred;
53+
font-size : 10;
54+
font-weight : BOLD;
55+
}
56+
57+
.c
58+
{
59+
font-family : Arial, Helvetica, Sans-serif;
60+
color : #C7C966;
61+
font-size : 10;
62+
font-weight : BOLD;
63+
}
64+
65+
.e
66+
{
67+
font-family : Arial, Helvetica, Sans-serif;
68+
color : gray;
69+
font-size : 10;
70+
font-weight : BOLD;
71+
}
72+
73+
/* The following styles are optional. You can define new */
74+
/* styles here and reference them inside the datafile. */
75+
76+
.u
77+
{
78+
79+
font-family : Arial, Helvetica, Sans-serif;
80+
color : burlywood;
81+
font-size : 10;
82+
}
83+
84+
.t
85+
{
86+
font-family : Arial, Helvetica, Sans-serif;
87+
color : limegreen;
88+
font-size : 10;
89+
}
90+
91+
.r
92+
{
93+
font-family : Arial, Helvetica, Sans-serif;
94+
color : gold;
95+
font-size : 10;
96+
}
97+
98+
.g
99+
{
100+
font-family : Arial, Helvetica, Sans-serif;
101+
color : plum;
102+
font-size : 10;
103+
}
104+
105+
.w
106+
{
107+
font-family : Arial, Helvetica, Sans-serif;
108+
color : gray;
109+
font-size : 10;
110+
}
111+
112+
.sk
113+
{
114+
font-family : Arial, Helvetica, Sans-serif;
115+
color : royalblue;
116+
font-size : 10;
117+
}

0 commit comments

Comments
 (0)