1
0
mirror of https://gitlab.com/lolmam/Phigros-Android-History.git synced 2026-02-04 08:21:03 +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>

View File

@@ -93,7 +93,7 @@ h1 {
p {
font-size: 1.1rem;
margin-bottom: 20px;
margin-bottom: 10px;
color: #dddddd;
}
@@ -440,3 +440,51 @@ a.back-to-top:hover {
color: #0077cc;
font-family: monospace;
}
.home-dropdown-toggle {
background: none;
border: none;
color: #2f80ed;
font-weight: 600;
cursor: pointer;
font-size: 1rem;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: color 0.2s;
border-radius: 8px;
}
.home-dropdown-toggle:hover {
color: #4fa1ff;
}
.home-dropdown-toggle .arrow-left,
.home-dropdown-toggle .arrow-right {
display: inline-block;
transition: transform 0.22s ease;
line-height: 1;
font-size: 1rem;
}
.home-dropdown-toggle.open .arrow-left {
transform: rotate(90deg);
}
.home-dropdown-toggle.open .arrow-right {
transform: rotate(-90deg);
}
.home-dropdown-content {
display: none;
background: #111;
border: 1px solid #333;
border-radius: 6px;
color: #ccc;
margin: 5px auto 5px;
font-size: 0.9rem;
max-width: 540px;
padding: 6px 12px;
text-align: center;
word-wrap: break-word;
}