-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (90 loc) · 2.43 KB
/
index.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
<!DOCTYPE html>
<head>
<title>Aleo Roadmap</title>
</head>
<body>
<div class="diagram-container">
<div class="mermaid">
gantt
title Aleo Release Schedule
dateFormat YYYY-MM-DD
tickInterval 1week
section -
- : 03/31/2025,
section Canary
v3.5.0 (04/01) :active, c2, 04/01/2025, 1d
Consensus V4 activates block height 5_590_000:active, 04/03/2025, 1d
v3.6.0 (04/29):active, c2, 4/29/2025, 1d
Consensus V5 activates block height 6_225_000:active, 05/02/2025, 1d
section Testnet
v3.5.0 (04/08):active, t2, 04/08/2025, 1d
Consensus V4 activates block height 6_635_000:active, t3, 04/13/2025, 1d
v3.6.0 (05/13):active, c2, 5/13/2025, 1d
Consensus V5 activates block height 7_625_000:active, t3, 05/18/2025, 1d
section Mainnet
v3.5.0 (04/22):active, m2, 04/22/2025, 1d
Consensus V4 activates block height 7_100_000:active, m3, 05/06/2025, 1d
v3.6.0 (05/20):active, c2, 5/20/2025, 1d
Consensus V5 activates block height 7_820_000:active, m3, 06/03/2025, 1d
</div>
</div>
</body>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true, theme: 'dark' });
</script>
<style>
.grid .tick {
stroke: lightgrey;
opacity: 0.3;
shape-rendering: crispEdges;
}
.grid path {
stroke-width: 0;
}
#tag {
color: white;
background: #FA283D;
width: 150px;
position: absolute;
display: none;
padding:3px 6px;
margin-left: -80px;
font-size: 11px;
}
#tag:before {
border: solid transparent;
content: ' ';
height: 0;
left: 50%;
margin-left: -5px;
position: absolute;
width: 0;
border-width: 10px;
border-bottom-color: #FA283D;
top: -20px;
}
.taskText {
fill:white;
text-anchor:middle;
}
.taskTextOutsideRight {
fill:black;
text-anchor:start;
}
.taskTextOutsideLeft {
fill:black;
text-anchor:end;
}
body {
background-color: #1e1e1e;
color: white;
}
.sectionTitle {
font-size: 1.5em;
}
.titleText {
font-size: 3em;
}
</style>
</html>