Skip to content

Commit 24424da

Browse files
Removed Animations, Updated Dashboard
Removed animations from the team lineup graphic Updated the dashboard: Dashboard panels are now more condensed to remove wasted space.
1 parent b766fd3 commit 24424da

File tree

5 files changed

+51
-32
lines changed

5 files changed

+51
-32
lines changed

dashboard/ehud.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ <h6>Score the current map</h6>
1212
<button class="buttonStyle1" onclick="minusScoreTeam1()">BLU - 1</button>
1313
<button class="buttonStyle1" onclick="minusScoreTeam2()">RED - 1</button><br/>
1414
<button class="buttonStyle2" onclick="resetScoreboard()">RESET THE SCOREBOARD</button>
15+
16+
1517

18+
<!--SERIES SCORE, THIS WILL BE READDED IN A FUTURE UPDATE BUT ISN't OF CONCERN FOR ME RIGHT NOW-->
1619
<!--<hr/>
1720
<h3>Series Score Controls</h3>
1821
<h4>NOT YET FUNCTIONAL</h4>

dashboard/teamLinupsDash.html

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -24,36 +24,45 @@
2424
.buttonStyle2 {
2525
background-color: firebrick;
2626
}
27+
28+
table{
29+
border: 1px;
30+
border-style: ridge;
31+
}
32+
td{
33+
border: 3px;
34+
border-width: 3px;
35+
border-style: dashed;
36+
}
2737
</style>
2838
</head>
2939

3040
<body>
31-
<div>
32-
<div>
33-
<h4>Red Team</h4>
34-
Pocket Scout:<br /> <input type="text" id="redPlayer1" /><br />
35-
Flank Scout:<br /> <input type="text" id="redPlayer2" /><br />
36-
Pocket Solider:<br /> <input type="text" id="redPlayer3" /><br />
37-
Flank Solider:<br /> <input type="text" id="redPlayer4" /><br />
38-
Demo:<br /> <input type="text" id="redPlayer5" /><br />
39-
Medic:<br /> <input type="text" id="redPlayer6" /><br />
40-
41-
42-
43-
</div>
44-
<div>
45-
<h4>Blu Team</h4>
46-
Pocket Scout: <br /> <input type="text" id="bluePlayer1" /><br />
47-
Flank Scout: <br /> <input type="text" id="bluePlayer2" /><br />
48-
Pocket Solider:<br /> <input type="text" id="bluePlayer3" /><br />
49-
Flank Solider: <br /> <input type="text" id="bluePlayer4" /><br />
50-
Demo: <br /> <input type="text" id="bluePlayer5" /><br />
51-
Medic: <br /> <input type="text" id="bluePlayer6" /><br />
41+
<table>
42+
<tr>
43+
<td style="background-color: tomato;">
44+
<h4>Red Team</h4>
45+
Pocket Scout:<br /> <input type="text" id="redPlayer1" /><br />
46+
Flank Scout:<br /> <input type="text" id="redPlayer2" /><br />
47+
Pocket Solider:<br /> <input type="text" id="redPlayer3" /><br />
48+
Flank Solider:<br /> <input type="text" id="redPlayer4" /><br />
49+
Demo:<br /> <input type="text" id="redPlayer5" /><br />
50+
Medic:<br /> <input type="text" id="redPlayer6" /><br />
51+
</td>
5252

53+
<td style="background-color: steelblue;">
54+
<h4>Blu Team</h4>
55+
Pocket Scout: <br /> <input type="text" id="bluePlayer1" /><br />
56+
Flank Scout: <br /> <input type="text" id="bluePlayer2" /><br />
57+
Pocket Solider:<br /> <input type="text" id="bluePlayer3" /><br />
58+
Flank Solider: <br /> <input type="text" id="bluePlayer4" /><br />
59+
Demo: <br /> <input type="text" id="bluePlayer5" /><br />
60+
Medic: <br /> <input type="text" id="bluePlayer6" /><br />
5361

62+
</td>
63+
</tr>
64+
</table>
5465

55-
</div>
56-
</div>
5766
<button id="TeamRosters" onclick="setTeamRosters()">Set Team Rosters</button>
5867

5968
<script src="teamLinups.js"></script>

extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
22

33
module.exports = function (nodecg) {
4-
nodecg.log.info('ESSENTIAL SCORE VERSION 0.0.8')
4+
nodecg.log.info('ESSENTIAL SCORE VERSION 0.0.8a')
55
};

graphics/meetTheTeams.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ body{
8282
animation-name: roster_name_fadeins;
8383
animation-fill-mode: forwards;
8484
animation-delay: 5s;
85-
opacity: 0;
85+
/* opacity: 0;*/
8686
}
8787

8888

8989
/* ANIMATIONS */
90-
@keyframes roster_name_fadeins {
90+
/*@keyframes roster_name_fadeins {
9191
from {opacity: 0; background-color: white;}
9292
to {opacity: 1; background-color: black;}
93-
}
93+
}*/

package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "essential-score",
33
"version": "0.0.8",
4-
"description": "a scoreboard for essentialsHud",
4+
"description": "A scoreboard for Team Fortress 2",
55
"homepage": "",
66
"author": {
77
"name": "Themicrocheeze",
88
"email": "themicrocheez@gmail.com",
9-
"url": "themicrocheeze.neocities.org"
9+
"url": "https://themicrocheeze.neocities.org"
1010
},
1111
"files": [
1212
"dashboard",
@@ -27,7 +27,7 @@
2727
"file": "masterOverlay.html",
2828
"workspace": "Essential Score",
2929
"fullbleed": false,
30-
"width": "4",
30+
"width": "2",
3131
"headerColor": "#525F78"
3232
},
3333
{
@@ -36,7 +36,7 @@
3636
"file": "ehud.html",
3737
"workspace": "Essential Score",
3838
"fullbleed": false,
39-
"width": "4",
39+
"width": "2",
4040
"headerColor": "#525F78"
4141
},
4242
{
@@ -45,7 +45,7 @@
4545
"file": "teamLinupsDash.html",
4646
"workspace": "Essential Score",
4747
"fullbleed": false,
48-
"width": "2",
48+
"width": "3",
4949
"headerColor": "#525F78"
5050
}
5151

@@ -67,6 +67,13 @@
6767
"width": 1920,
6868
"height": 1080
6969
}
70+
],
71+
"assetCategories": [
72+
{
73+
"name": "teamLogos",
74+
"title": "Team Logos",
75+
"allowedTypes": ["jpg", "jpeg", "png"]
76+
}
7077
]
7178
},
7279
"repository": "https://github.com/nodecg/nodecg.git",

0 commit comments

Comments
 (0)