mirror of
https://gitlab.com/lolmam/Phigros-Android-History.git
synced 2026-02-04 16:21:11 +00:00
86 lines
3.6 KiB
HTML
86 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Phigros Android History</title>
|
||
<link rel="stylesheet" href="style/style.css" />
|
||
<link href="https://fonts.googleapis.com/css2?family=Exo:wght@400;600;700&display=swap" rel="stylesheet">
|
||
<link rel="icon" type="image/x-icon" href="style/1.X.N.png">
|
||
</head>
|
||
<body>
|
||
<div class="background"></div>
|
||
|
||
<header>
|
||
<nav>
|
||
<ul>
|
||
<li><a href="https://phigros.lolmam.top/" class="active">Home</a></li>
|
||
<li><a href="versions">Versions</a></li>
|
||
<li><a href="install">Install Guide</a></li>
|
||
</ul>
|
||
</nav>
|
||
</header>
|
||
|
||
<main class="container">
|
||
<h1>Phigros Android Versions</h1>
|
||
<p>Welcome to the fan made archive of almost every <strong>Phigros</strong> Android version.
|
||
Find available versions, changelogs, and installation help for <strong>G</strong> (Google Play), <strong>T</strong> (TapTap), and other versions.</p>
|
||
<p id="download-count">Loading downloads...</p>
|
||
|
||
<section class="archive-stats">
|
||
<h2>Archive Summary</h2>
|
||
<p>Total versions released: <strong>123</strong><br>Versions found: <strong>114</strong></p>
|
||
<p>
|
||
<button class="home-dropdown-toggle">
|
||
<span class="arrow-left">▶</span>
|
||
<span>Versions missing</span>
|
||
<span class="arrow-right">◀</span>
|
||
</button>
|
||
</p>
|
||
<div id="missing-versions" class="home-dropdown-content">
|
||
<code>1.2.1, 1.2.2, 1.2.3, 1.2.5, 1.5.3, 1.5.5, 2.4.1, 2.4.2, 2.5.0</code>
|
||
</div>
|
||
<p>Latest version: <strong><a href="versions/versions_3.x#v3-15-0" class="active">3.15.0 (131)</a></strong> - 06/Aug/2025<br>Updates are usually released every Wednesday at 09:00 AM UTC.</p>
|
||
</section>
|
||
|
||
<div class="cta-buttons">
|
||
<a href="versions" class="btn">View Versions</a>
|
||
<a href="install" class="btn alt">How to Install</a>
|
||
</div>
|
||
</main>
|
||
|
||
<footer>
|
||
<a href="https://gitlab.com/lolmam/Phigros-Android-History/-/blob/main/NOTICE.md">Phigros Android History</a> © 2024 – 2025 by lol.mam is licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>
|
||
<img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" alt="CC" style="max-width: 1em; max-height:1em; margin-left: .2em;">
|
||
<img src="https://mirrors.creativecommons.org/presskit/icons/by.svg" alt="BY" style="max-width: 1em; max-height:1em; margin-left: .2em;">
|
||
<img src="https://mirrors.creativecommons.org/presskit/icons/nc.svg" alt="NC" style="max-width: 1em; max-height:1em; margin-left: .2em;">
|
||
<img src="https://mirrors.creativecommons.org/presskit/icons/sa.svg" alt="SA" style="max-width: 1em; max-height:1em; margin-left: .2em;">
|
||
</footer>
|
||
|
||
<script>
|
||
// Download count fetch
|
||
fetch("https://files.phigros.lolmam.top/stats")
|
||
.then(res => res.text())
|
||
.then(text => {
|
||
document.getElementById("download-count").innerText = text;
|
||
})
|
||
.catch(err => {
|
||
document.getElementById("download-count").innerText = "Couldn't load download count.";
|
||
console.error("Failed to load count:", err);
|
||
});
|
||
|
||
// homepage collapsible toggles
|
||
const homeToggle = document.querySelector(".home-dropdown-toggle");
|
||
if (homeToggle) {
|
||
const content = document.getElementById("missing-versions");
|
||
homeToggle.addEventListener("click", () => {
|
||
const isOpen = homeToggle.classList.toggle("open");
|
||
content.style.display = isOpen ? "block" : "none";
|
||
homeToggle.setAttribute("aria-expanded", isOpen ? "true" : "false");
|
||
content.setAttribute("aria-hidden", isOpen ? "false" : "true");
|
||
});
|
||
}
|
||
</script>
|
||
</body>
|
||
</html>
|