Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions src/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

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

Expand Down Expand Up @@ -111,22 +111,23 @@
h1, h2 {
border-bottom: 1px solid #a2a9b1;
}

#quick-table-stats {
font-style: italic;
}
</style>
</head>

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

<script src="olaki-data.js"></script>
<script>
//
// populate last updated timestamp
//
document.getElementById("last-update-date").innerText = new Date(olakiData.lastUpdated).toUTCString();

//
// populate table
//
Expand Down Expand Up @@ -346,7 +342,7 @@ <h3>How do I run my phone without a battery?</h3>
// populate table stats
//
document.getElementById("quick-table-stats").innerHTML =
`Quick stats: ${Object.keys(olakiData.deviceSummaries).length} devices. ${document.getElementsByClassName("os-column-header").length} operating systems. ${numberOfDeviceToOsPairs} <code>(device, OS)</code> pairs available.`;
`${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()}`;


//
Expand Down
Loading