--- import { Image } from "astro:assets"; import { api } from "$lib/api"; import { getLatestDownloads } from "$lib/downloads"; import Layout from "$layouts/Layout.astro"; const latestDownloads = await getLatestDownloads(); const downloads = latestDownloads.success ? latestDownloads.data : []; const patchNotes = await api.builds.v1.getPatchNotes(); ---

Choose the build for your platform.

{ downloads.length > 0 ? (
{downloads.map((download) => (

{download.label}

{download.version}

Download

))}
) : (
Downloads are unavailable right now.
) }
{ patchNotes.length > 0 ? ( patchNotes.map((patchNote) => (

{patchNote.version}

{patchNote.date}

    {patchNote.changes.map((change) => (
  • {change}
  • ))}
)) ) : (

No patch notes yet.

) }