mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-05-08 03:09:38 +00:00
fix: explain streamed download better
This commit is contained in:
parent
16c57f1fb6
commit
d611e4662d
4 changed files with 4 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.4.6",
|
||||
"version": "6.4.7",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
<div class='pl-5 pb-5 justify-end flex flex-col h-full max-w-full'>
|
||||
{#key current}
|
||||
<div class='text-white font-black text-4xl line-clamp-2 w-[800px] max-w-full leading-tight fade-in'>
|
||||
<div class='text-white font-black text-4xl line-clamp-1 w-[900px] max-w-full leading-tight fade-in'>
|
||||
{title(current)}
|
||||
</div>
|
||||
<div class='details text-white capitalize pt-3 pb-2 flex w-[600px] max-w-full text-xs fade-in'>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
<SettingCard let:id title='Persist Files' description="Keeps torrents files instead of deleting them after a new torrent is played. This doesn't seed the files, only keeps them on your drive. This will quickly fill up your storage.">
|
||||
<Switch {id} bind:checked={$settings.torrentPersist} />
|
||||
</SettingCard>
|
||||
<SettingCard let:id title='Streamed Download' description="Only downloads the single file that's currently being watched, instead of downloading an entire batch of episodes. Saves bandwidth and reduces strain on the peer swarm.">
|
||||
<SettingCard let:id title='Streamed Download' description="Only downloads the data that's directly needed for playback, down to the minute, instead of downloading an entire batch of episodes. Will not buffer ahead more than a few seconds, and will stop downloading once the few second buffer is filled. Saves bandwidth and reduces strain on the peer swarm.">
|
||||
<Switch {id} bind:checked={$settings.torrentStreamedDownload} />
|
||||
</SettingCard>
|
||||
<SettingCard let:id title='Transfer Speed Limit' description='Download/Upload speed limit for torrents, higher values increase CPU usage, and values higher than your storage write speeds will quickly fill up RAM.'>
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
<Progress step={1} />
|
||||
|
||||
<div class='space-y-3 lg:max-w-4xl pt-5 h-full overflow-y-auto' use:dragScroll>
|
||||
<SettingCard class='bg-transparent' let:id title='Streamed Download' description="Only downloads the single file that's currently being watched, instead of downloading an entire batch of episodes. Saves bandwidth and reduces strain on the peer swarm.">
|
||||
<SettingCard class='bg-transparent' let:id title='Streamed Download' description="Only downloads the data that's directly needed for playback, down to the minute, instead of downloading an entire batch of episodes. Will not buffer ahead more than a few seconds, and will stop downloading once the few second buffer is filled. Saves bandwidth and reduces strain on the peer swarm.">
|
||||
<Switch {id} bind:checked={$settings.torrentStreamedDownload} />
|
||||
</SettingCard>
|
||||
<SettingCard class='bg-transparent' let:id title='Transfer Speed Limit' description='Download/Upload speed limit for torrents, higher values increase CPU usage, and values higher than your storage write speeds will quickly fill up RAM.'>
|
||||
|
|
|
|||
Loading…
Reference in a new issue