Initial commit

This commit is contained in:
2025-10-21 18:43:21 +03:00
commit a9d23441cb
21 changed files with 2460 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<script>
export let t;
</script>
<div class="torrent">
<div style="flex:1">
<div style="font-weight:600;">{t.name}</div>
<div class="progress"><div style="width:{t.progress * 100}%"></div></div>
<div class="small">{Math.round(t.progress * 100)}% - {t.downloadSpeed} KB/s</div>
</div>
</div>