Skip to content

Commit 16ce64f

Browse files
authored
feat: update wording on public page (#120)
1 parent 6c28307 commit 16ce64f

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

src/public/index.html

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77

8-
<title>Olaki - A list of Android devices by compatible operating systems</title>
8+
<title>Olaki - Find alternative operating systems for your Android device</title>
99
<meta name="description" content="An aggregated list of Android devices by compatible operating systems.">
1010
<meta name="author" content="kedio-labs">
1111

@@ -111,22 +111,23 @@
111111
h1, h2 {
112112
border-bottom: 1px solid #a2a9b1;
113113
}
114+
115+
#quick-table-stats {
116+
font-style: italic;
117+
}
114118
</style>
115119
</head>
116120

117121
<body>
118122
<header>
119123
<h1>Welcome to Olaki.</h1>
120124
<p>
121-
An automatically generated list of Android devices by compatible operating systems. For each device, a link to the
122-
corresponding OS image or project page is provided. See the source code <a href="https://github.com/kedio-labs/olaki"
123-
target="_blank">here.</a>
125+
An awesome list of alternative operating systems for Android devices.
124126
</p>
125127
<p>
126-
Sensible defaults are defined to try and only include <code>(device, OS)</code> pairs with high enough compatibility rates.
128+
Only operating systems with strong compatibility are included for each device.
127129
See the <a href="#appendix-header">Appendix</a> for more details.
128130
</p>
129-
<p>Last update: <span id="last-update-date"></span>.</p>
130131
<p>Please <a href="https://github.com/kedio-labs/olaki" target="_blank">contribute</a> if you'd like to see other operating
131132
systems listed here.
132133
</p>
@@ -226,7 +227,7 @@ <h3>Is it easy to install a custom OS on my Android device?</h3>
226227
<p>Your mileage may vary. It will require learning about concepts such as rooting, bootloader, flashing, ROM, etc. Luckily,
227228
many people have been through this before so there is extensive documentation on the internet and the list above is aimed at
228229
providing <code>(device, os)</code> pairs with high compatibility rates.</p>
229-
<h3>Can you please add OS [XYZ] to the list?</h3>
230+
<h3>Can you please add a new feature or a new OS to the list?</h3>
230231
<p>Sounds like a plan. :) Please raise <a href="https://github.com/kedio-labs/olaki/issues" target="_blank">an issue</a>
231232
once you've
232233
confirmed it's not a duplicate or, if you have coding
@@ -261,11 +262,6 @@ <h3>How do I run my phone without a battery?</h3>
261262

262263
<script src="olaki-data.js"></script>
263264
<script>
264-
//
265-
// populate last updated timestamp
266-
//
267-
document.getElementById("last-update-date").innerText = new Date(olakiData.lastUpdated).toUTCString();
268-
269265
//
270266
// populate table
271267
//
@@ -346,7 +342,7 @@ <h3>How do I run my phone without a battery?</h3>
346342
// populate table stats
347343
//
348344
document.getElementById("quick-table-stats").innerHTML =
349-
`Quick stats: ${Object.keys(olakiData.deviceSummaries).length} devices. ${document.getElementsByClassName("os-column-header").length} operating systems. ${numberOfDeviceToOsPairs} <code>(device, OS)</code> pairs available.`;
345+
`${Object.keys(olakiData.deviceSummaries).length} devices. ${document.getElementsByClassName("os-column-header").length} operating systems. ${numberOfDeviceToOsPairs} (device, OS) pairs. Last update: ${new Date(olakiData.lastUpdated).toUTCString()}`;
350346

351347

352348
//

0 commit comments

Comments
 (0)