feat: implement season file management and UI updates for torrent downloads

This commit is contained in:
maxDorninger
2025-05-18 16:49:09 +02:00
parent bae450f7a4
commit 61adf166aa
15 changed files with 692 additions and 551 deletions

View File

@@ -0,0 +1,11 @@
<script>
import X from '@lucide/svelte/icons/x';
import Check from '@lucide/svelte/icons/check';
let {state} = $props();
</script>
{#if state}
<Check class="stroke-green-500"/>
{:else}
<X class="stroke-rose-600"/>
{/if}