--- import type { IconType } from "react-icons"; import { LuDownload, LuHistory, LuPackage, LuSparkles } from "react-icons/lu"; import { ADS_SLOTS, extendedDownloadLinks } from "~/collections/app"; import Ads from "~/components/ads/Ads.astro"; import RootLayout from "~/layouts/RootLayout.astro"; import DownloadItems from "~/modules/downloads/download-item.astro"; const otherDownloads: [string, string, IconType][] = [ ["/downloads/packages", "CLI Packages Managers", LuPackage], ["/downloads/older", "Older Versions", LuHistory], ["/downloads/nightly", "Nightly Builds", LuSparkles], ]; ---

Download



Spotube is available for every platform

Versions of Spotube (<=v4.0.2) are ceased to work with Spotify™ API.
So users can no longer use/download those versions.
Please wait for the next version that will remedy this issue by not using such APIs.

Spotube has no affiliation with Spotify™ or any of its subsidiaries.



The new Spotube v5 is still under beta. Please use the Nightly version until stable release.



Other Downloads



{ otherDownloads.map((download) => { const Icon = download[2]; return (
{download[1]}
); }) }