feat(mukke): display album cover art in library, playlists, and song lists

Add batch cover-url endpoint (POST /library/cover-urls) to efficiently
resolve multiple cover art presigned URLs in a single request. Integrate
cover art display across all UI surfaces: album grid, album detail header,
song list thumbnails, playlist grid, and playlist detail song list.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-19 20:59:45 +01:00
parent 789ce0a435
commit e848fa5342
81 changed files with 376 additions and 58 deletions

View file

@ -0,0 +1 @@
export const APP_VERSION = '0.1.0';

View file

@ -1,6 +1,7 @@
<script lang="ts">
import { theme } from '$lib/stores/theme';
import { authStore } from '$lib/stores/auth.svelte';
import { APP_VERSION } from '$lib/version';
let isDark = $derived(theme.isDark);
</script>
@ -54,6 +55,8 @@
Planta hilft dir, deine Pflanzen zu dokumentieren und zu pflegen. Mache ein Foto und die KI
erstellt automatisch einen Steckbrief mit Pflegehinweisen und Gießvorschlägen.
</p>
<p class="text-sm text-muted-foreground mt-2">Version 1.0.0</p>
<p class="text-sm text-muted-foreground mt-2">Version {APP_VERSION}</p>
</div>
<p class="mt-8 pb-4 text-center text-xs text-gray-400 dark:text-gray-600">v{APP_VERSION}</p>
</div>

View file

@ -7,6 +7,7 @@
import { locale } from 'svelte-i18n';
import { PlantaLogo } from '@manacore/shared-branding';
import { authStore } from '$lib/stores/auth.svelte';
import { APP_VERSION } from '$lib/version';
import '$lib/i18n';
// Get redirect URL from query params or sessionStorage
@ -62,4 +63,5 @@
{translations}
{verified}
{initialEmail}
version={APP_VERSION}
/>