-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (55 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
58 lines (55 loc) · 1.85 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
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>WayDroid-ATV OTA server</title>
<link rel="icon" size="192x192" href="img/icon-192.png" />
<link rel="icon" size="512x512" href="img/icon-512.png" />
<link rel="stylesheet" href="stylesheet.css" />
<script src="index.js" async defer></script>
</head>
<body>
<img id="banner-dark" class="dark" src="img/banner-dark.png" alt="icon" />
<img id="banner-light" class="light" src="img/banner-light.png" alt="icon" />
<h1>WayDroid-ATV OTA server</h1>
<p>Join our <a href="https://t.me/WayDroidATV">Telegram channel</a> for latest news</p>
<p>Check <a href="https://github.com/supechicken/waydroid-androidtv-build/releases">here</a> for release notes/installation instructions</p>
<div id="channel-selector">
<p>Select a channel to view</p>
<select>
<option value="a13-tv">Android TV 13</option>
<!--<option value="a14-tv">Android TV 14</option>-->
<option value="a16-tv">Android TV 16</option>
<option value="a16-qpr0">Android 16 QPR0</option>
<option value="a16-qpr2">Android 16 QPR2</option>
</select>
</div>
<h2>Latest system images</h2>
<div class="list">
<table id="system-images">
<tr>
<th>Architecture</th>
<th>ROM version</th>
<th>Image type</th>
<th>Image release date</th>
<th>Security patch level</th>
<th>Download</th>
</tr>
</table>
</div>
<h2>Latest vendor images</h2>
<div class="list">
<table id="vendor-images">
<tr>
<th>Architecture</th>
<th>ROM version</th>
<th>Image type</th>
<th>Image release date</th>
<th>Security patch level</th>
<th>Download</th>
</tr>
</table>
</div>
</body>
</html>