website updated
This commit is contained in:
@@ -17,11 +17,17 @@
|
||||
<img src="assets/hightube-icon.png" alt="" />
|
||||
<span>Hightube</span>
|
||||
</a>
|
||||
<button class="hamburger" aria-label="Toggle navigation" aria-expanded="false">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<nav class="nav" aria-label="Primary navigation">
|
||||
<a href="#architecture">Architecture</a>
|
||||
<a href="#features">Features</a>
|
||||
<a href="#downloads">Downloads</a>
|
||||
<a href="#source">Source</a>
|
||||
<a class="nav-cta" href="https://stream.nudt.space" target="_blank" rel="noopener">立即尝试</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
@@ -159,9 +165,8 @@
|
||||
<p class="eyebrow">Downloads</p>
|
||||
<h2>Get the current executable builds</h2>
|
||||
<p>
|
||||
These files are hosted in the local website resources directory.
|
||||
Windows server and client builds will be added later. Apple device
|
||||
builds are not provided at this time.
|
||||
All builds are distributed through the project release page. Apple
|
||||
device builds are not provided at this time.
|
||||
</p>
|
||||
</div>
|
||||
<div class="download-grid">
|
||||
@@ -171,8 +176,8 @@
|
||||
<p>Backend service for self-hosted streaming deployments.</p>
|
||||
<a
|
||||
class="download-link"
|
||||
href="resources/hightube-server/hightube-server_amd64_v1.0.0"
|
||||
download
|
||||
href="https://git.nudt.space/Highground-Soft/Hightube/releases/download/v1.0.0/hightube-server_amd64_v1.0.0"
|
||||
rel="noopener"
|
||||
>
|
||||
Download Linux server
|
||||
</a>
|
||||
@@ -183,8 +188,8 @@
|
||||
<p>Desktop Flutter client packaged as an AppImage.</p>
|
||||
<a
|
||||
class="download-link"
|
||||
href="resources/hightube-client/hightube-linux-amd64-v1.0.0.AppImage"
|
||||
download
|
||||
href="https://git.nudt.space/Highground-Soft/Hightube/releases/download/v1.0.0/hightube-linux-amd64-v1.0.0.AppImage"
|
||||
rel="noopener"
|
||||
>
|
||||
Download Linux AppImage
|
||||
</a>
|
||||
@@ -195,8 +200,8 @@
|
||||
<p>ARM64 Android APK build for mobile viewing and interaction.</p>
|
||||
<a
|
||||
class="download-link"
|
||||
href="resources/hightube-client/hightube-android-arm64-v8a-v1.0.0.apk"
|
||||
download
|
||||
href="https://git.nudt.space/Highground-Soft/Hightube/releases/download/v1.0.0/hightube-android-arm64-v8a-v1.0.0.apk"
|
||||
rel="noopener"
|
||||
>
|
||||
Download Android APK
|
||||
</a>
|
||||
@@ -207,21 +212,35 @@
|
||||
<p>Static web build archive for hosting the Flutter web frontend.</p>
|
||||
<a
|
||||
class="download-link"
|
||||
href="resources/hightube-client/hightube-web-v1.0.0.tar.gz"
|
||||
download
|
||||
href="https://git.nudt.space/Highground-Soft/Hightube/releases/download/v1.0.0/hightube-web-v1.0.0.tar.gz"
|
||||
rel="noopener"
|
||||
>
|
||||
Download Web archive
|
||||
</a>
|
||||
</article>
|
||||
<article class="download-card planned">
|
||||
<span class="status muted">Coming later</span>
|
||||
<article class="download-card available">
|
||||
<span class="status">Available</span>
|
||||
<h3>Windows server</h3>
|
||||
<p>Planned server executable for Windows environments.</p>
|
||||
<p>Server executable for Windows environments.</p>
|
||||
<a
|
||||
class="download-link"
|
||||
href="https://git.nudt.space/Highground-Soft/Hightube/releases/download/v1.0.0/hightube-server_amd64_v1.0.0.exe"
|
||||
rel="noopener"
|
||||
>
|
||||
Download Windows server
|
||||
</a>
|
||||
</article>
|
||||
<article class="download-card planned">
|
||||
<span class="status muted">Coming later</span>
|
||||
<article class="download-card available">
|
||||
<span class="status">Available</span>
|
||||
<h3>Windows client</h3>
|
||||
<p>Planned desktop client build for Windows users.</p>
|
||||
<p>Desktop client build for Windows users.</p>
|
||||
<a
|
||||
class="download-link"
|
||||
href="https://git.nudt.space/Highground-Soft/Hightube/releases/download/v1.0.0/hightube-win_amd64_v1.0.0.zip"
|
||||
rel="noopener"
|
||||
>
|
||||
Download Windows client
|
||||
</a>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
@@ -246,6 +265,17 @@
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
var btn = document.querySelector('.hamburger');
|
||||
var nav = document.querySelector('.nav');
|
||||
if (!btn || !nav) return;
|
||||
btn.addEventListener('click', function () {
|
||||
var open = nav.classList.toggle('open');
|
||||
btn.setAttribute('aria-expanded', open);
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
<footer class="footer">
|
||||
<span>Hightube</span>
|
||||
<span>Built with ❤️ by HighGround-soft 2026</span>
|
||||
|
||||
Reference in New Issue
Block a user