-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 1.64 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 1.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catalyst Releases</title>
<link rel="stylesheet" href="./tailwind.min.css"
</head>
<body class="bg-gray-200">
<h1 class="m-8 text-3xl">Releases</h1>
<table class="m-8 border-2 border-gray-600 w-96 bg-gray-400">
<tr class="bg-red-500">
<th>Release</th>
<th>Status</th>
<th>Code Name</th>
</tr>
<tr class="bg-yellow-500">
<td>v4.0.0</td>
<td>Development</td>
<td>Catalyst Native</td>
</tr>
<tr class="bg-green-500">
<td>v3.1.0</td>
<td>Stable</td>
</tr>
<tr class="bg-red-500">
<td>v3.0.0</td>
<td>Ended</td>
</tr>
<tr class="bg-red-500">
<td>v2.0.0</td>
<td>Ended</td>
<td>Scottish Fold 1</td>
</tr>
<tr class="bg-red-500">
<td>v1.2.0</td>
<td>Ended</td>
<td>None</td>
</tr>
<tr class="bg-red-500">
<td>v1.0.*</td>
<td>Ended</td>
<td>Fixed Mistakes</td>
</tr>
<tr class="bg-red-500">
<td>v1.0.0</td>
<td>Ended</td>
</tr>
</table>
<div class="bg-gray-400 border-2 border-gray-600 rounded-sm w-full fixed bottom-0">
<h1>2022, The Catalyst Browser Project</h1>
<p>Free, open source internet browser based on Electron and Chromium.</p>
<p>An interesting product of the community...</p>
</div>
</body>
</html>