-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrack.html
68 lines (61 loc) · 2.51 KB
/
track.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Github Release Tracker</title>
<link rel="stylesheet" href="track.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<h1>Github Release Tracker</h1>
<p>Enter a <a href="https://github.com/explore">Github</a>
project name or URL and check its latest release.<br>
Click <b>Project</b> or <b>Date</b> to sort entries accordingly.<br>
</p>
<div class="options">
<input type="text" id="project-input" placeholder="e.g. https://github.com/microsoft/vscode">
<button type="button" id="add-button">Add</button>
<input type="checkbox" id="stable-option"> Stable releases only
</div>
<br>
<div class="options">
<input type="file" id="import-input" accept=".json">
<button type="button" id="import-button">Import</button>
<button type="button" id="export-button">Export</button>
</div>
<table id="project-table">
<thead>
<tr>
<th class="sortable-header" id="project-name">Project</th>
<th>Latest</th>
<th class="sortable-header" id="project-date">Date</th>
<th>Prior</th>
<th>Delta</th>
<th>Delete</th>
</tr>
</thead>
<tbody id="project-body">
</tbody>
</table>
<div class="footer">
<div class="footer-item">
<span class='box green'>Release</span> is newer than 1 month<br>
<span class='box red'>Release</span> is older than 6 months<br>
<button type="button" class="remove-button" disabled>X</button> - click to delete a row
</div>
<div class="footer-item" id="rate-limit"></div>
<div class="footer-item" id="github-link">
<a href="https://github.com/lmnn/trackProject">
<img class="column" src="track-github.svg" alt="Github logo">
</a>
<div>
<a href="https://github.com/lmnn/trackProject">lmnn/trackProject</a>
<div>v1.2.1</div>
</div>
</div>
</div>
</div>
<script src="track.js"></script>
</body>
</html>