chore: drop rssbatch setting

This commit is contained in:
ThaUnknown 2022-08-01 12:49:04 +02:00
parent 057385aed6
commit 3542b09602
3 changed files with 2 additions and 11 deletions

View file

@ -1,6 +1,6 @@
{
"name": "Miru",
"version": "2.11.0",
"version": "2.11.1",
"author": "ThaUnknown_ <ThaUnknown@users.noreply.github.com>",
"main": "src/index.js",
"homepage": "https://github.com/ThaUnknown/miru#readme",

View file

@ -72,7 +72,7 @@ async function getRSSEntries ({ media, episode, mode, ignoreQuality }) {
const prequel = findEdge(media, 'PREQUEL')?.node
const sequel = findEdge(media, 'SEQUEL')?.node
const isBatch = media.status === 'FINISHED' && settings.rssBatch && media.episodes !== 1
const isBatch = media.status === 'FINISHED' && media.episodes !== 1
// if media has multiple seasons, and this S is > 1, then get the absolute episode number of the episode
const absolute = prequel && !mode && (await resolveSeason({ media, episode, force: true }))

View file

@ -9,7 +9,6 @@ const defaults = {
rssFeeds: [['New Releases', 'SubsPlease']],
rssAutoplay: true,
rssTrusted: true,
rssBatch: false,
torrentSpeed: 10,
torrentPersist: false,
torrentDHT: false,
@ -239,14 +238,6 @@ window.IPC.on('path', data => {
<input type='checkbox' id='rss-trusted' bind:checked={settings.rssTrusted} />
<label for='rss-trusted'>Trusted Only</label>
</div>
<div
class='custom-switch mb-10 pl-10 font-size-16 w-300'
data-toggle='tooltip'
data-placement='bottom'
data-title='Tries To Find Batches For Finished Shows Instead Of Downloading 1 Episode At A Time'>
<input type='checkbox' id='rss-batch' bind:checked={settings.rssBatch} />
<label for='rss-batch'>Batch Lookup</label>
</div>
</div>
</Tab>
<Tab>