1
0
mirror of https://gitlab.com/lolmam/Phigros-Android-History.git synced 2026-02-04 16:21:11 +00:00

Updated website

This commit is contained in:
2025-08-26 23:05:08 +03:00
parent b9575a509b
commit 6531366ab9
2 changed files with 100 additions and 25 deletions

View File

@@ -22,13 +22,26 @@
</header>
<main class="container">
<h1>Phigros Android History</h1>
<p>This project is a collection and archive of different versions of <strong>Phigros</strong> on Android.</p>
<p>Youll find changelogs, download links, installation help, and more, carefully organized for both <strong>G</strong> (Google Play), <strong>T</strong> (TapTap), and other versions.</p>
<p><strong>(Still in progress)</strong></p>
<p id="download-count">Loading downloads...</p>
<h2><a href="https://gitlab.com/lolmam/Phigros-Android-History">View Project on GitLab</a></h2>
<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">&#9654;</span>
<span>Versions missing</span>
<span class="arrow-right">&#9664;</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>
@@ -37,23 +50,37 @@
</main>
<footer>
<a href="https://gitlab.com/lolmam/Phigros-Android-History">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;">
Phigros Android History © 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>
<script>
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);
});
</script>