Added movie tile. Fixed actor header. Larger breakpoint for nav menu.

This commit is contained in:
DebaucheryLibrarian
2020-08-01 15:11:07 +02:00
parent 6c5a62353c
commit 767437d9aa
28 changed files with 254 additions and 67 deletions

View File

@@ -25,10 +25,6 @@ const { argv } = yargs
type: 'array',
alias: 'channel',
})
.option('movies', {
describe: 'Scrape movies from channels',
type: 'array',
})
.option('actors', {
describe: 'Scrape actors by name or slug',
type: 'array',
@@ -61,19 +57,18 @@ const { argv } = yargs
alias: 'with-profiles',
default: false,
})
.option('scenes', {
.option('scene', {
describe: 'Scrape scene info from URL',
type: 'array',
alias: 'scene',
})
.option('scenes-file', {
.option('scene-file', {
describe: 'Scrape scene info from URLs in a file',
type: 'string',
alias: 'scenes-file',
})
.option('movie', {
describe: 'Scrape movie info from URL',
type: 'array',
alias: 'movies',
})
.option('sources', {
describe: 'Use these scrapers for actor data',
@@ -88,12 +83,17 @@ const { argv } = yargs
.option('latest', {
describe: 'Scrape latest releases if available',
type: 'boolean',
default: true,
default: false,
})
.option('upcoming', {
describe: 'Scrape upcoming releases if available',
type: 'boolean',
default: true,
default: false,
})
.option('movies', {
describe: 'Scrape movies from channels',
type: 'boolean',
default: false,
})
.option('force', {
describe: 'Don\'t ignore duplicates, update existing entries',