mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
46 lines
1.4 KiB
Svelte
46 lines
1.4 KiB
Svelte
<script>
|
|
import { AlertTriangle, Bug, Sparkles } from 'lucide-svelte';
|
|
// import DownloadItems from '$lib/components/downloads/download-items.svelte';
|
|
// import { extendedNightlyDownloadLinks } from '$lib';
|
|
</script>
|
|
|
|
<section class="p-4 md:p-16">
|
|
<h2 class="h2 flex items-center gap-4">
|
|
Nightly Downloads
|
|
<Sparkles class="inline" size={30} />
|
|
</h2>
|
|
<br /><br />
|
|
<aside class="alert variant-ghost-warning">
|
|
<div><AlertTriangle class="text-warning-500" /></div>
|
|
<div class="alert-message">
|
|
<h3 class="h3">Nightly versions may contain bugs <Bug class="inline" /></h3>
|
|
<p>
|
|
Although Nightly versions are packed with newest and greatest features, it's often unstable
|
|
and not tested by the maintainers and publisher(s).
|
|
<br />
|
|
<span class="text-error-500 underline decoration-dotted">
|
|
So use it at your own risk.
|
|
</span>
|
|
<span>
|
|
Go to <a href="/downloads" class="anchor">Downloads</a> for more stable releases.
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</aside>
|
|
<br />
|
|
|
|
<h3 class="h3 text-red-500">
|
|
Versions of Spotube (<=v4.0.2) are ceased to work with Spotify™ API.
|
|
<br />
|
|
So users can no longer use/download those versions.
|
|
<br />
|
|
Please wait for the next version that will remedy this issue by not using such APIs.
|
|
</h3>
|
|
|
|
<p class="text-surface-500 mt-20">
|
|
Spotube has no affiliation with Spotify™ or any of its subsidiaries.
|
|
</p>
|
|
|
|
<!-- <DownloadItems links={extendedNightlyDownloadLinks} /> -->
|
|
</section>
|