-
Notifications
You must be signed in to change notification settings - Fork 18
/
news.html
143 lines (129 loc) · 4.42 KB
/
news.html
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
142
143
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Duino-Coin Dashboard News</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.7/css/all.css">
<style>
html {
background-color: transparent !important;
}
body {
max-width: 99vw !important;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
</style>
</head>
<body>
<!--Next news-->
<p class="title is-size-6">
<span class="has-text-grey-light">
18/08/21 12:00:
</span>
<span class="has-text-link">
NEW daily rewards card
</span>
</p>
<p class="subtitle is-size-6">
Because ducos rewards per board change over time I added an automated reward check which calculates the daily coins based on real world tests.
The data gets refreshed every 30 minutes.
Thanks to LooTTaxi for the idea!
<div class="subtitle is-size-7 has-text-grey has-text-right mr-3">
<i class="fa fa-fw fa-user"></i>
Lulaschkas
</div>
</p>
<p class="title is-size-6">
<span class="has-text-grey-light">
05/08/21 12:00:
</span>
<span class="has-text-link">
Dashboard Version 1.0
</span>
</p>
<p class="subtitle is-size-6">
Hi, with this update I changed a lot. The dashboard is now hosted on my own Server for serving the new DUCO faucet, server check and more. I hope you like the changes.
<div class="subtitle is-size-7 has-text-grey has-text-right mr-3">
<i class="fa fa-fw fa-user"></i>
Lulaschkas
</div>
</p>
<!--Next news-->
<p class="title is-size-6">
<span class="has-text-grey-light">
07/07/21 20:00:
</span>
<span class="has-text-link">
Fixed issues and other things
</span>
</p>
<p class="subtitle is-size-6">
The dashboard is now working again as it should. With the new API, the dashboard has to fetch less files and is consuming less data. Also, I made some small other improvements.
<div class="subtitle is-size-7 has-text-grey has-text-right mr-3">
<i class="fa fa-fw fa-user"></i>
Lulaschkas
</div>
</p>
<!--Next news-->
<p class="title is-size-6">
<span class="has-text-grey-light">
05/07/21 21:00 (UTC)
</span>
<span class="has-text-danger">
Dashboard error
</span>
</p>
<p class="subtitle is-size-6">
Due to major changes to the API, the dashboard is currently only partially functional (no miner data). The problem will be fixed on Wednesday.
<div class="subtitle is-size-7 has-text-grey has-text-right mr-3">
<i class="fa fa-fw fa-user"></i>
Lulaschkas
</div>
</p>
<!--Next news-->
<p class="title is-size-6">
<span class="has-text-grey-light">
01/07/21 20:00 (UTC)
</span>
<span class="has-text-danger">
API issues
</span>
</p>
<p class="subtitle is-size-6">
Due to problems with the rest api and high server cpu usage, the dashboard may not load or update very rarely. Please try again later.
<div class="subtitle is-size-7 has-text-grey has-text-right mr-3">
<i class="fa fa-fw fa-user"></i>
Lulaschkas
</div>
</p>
<p class="title is-size-6">
<span class="has-text-grey-light">
29/06/21 13:00:
</span>
<span class="has-text-link">
New dashboard login layout
</span>
</p>
<p class="subtitle is-size-6">
Hi, as you may have noticed, the login page was extended by two surrounding news cards. While one news card contains official Duino-Coin news, the other one is updated by me for mining related news.
<div class="subtitle is-size-7 has-text-grey has-text-right mr-3">
<i class="fa fa-fw fa-user"></i>
Lulaschkas
</div>
</p>
</body>
</html>