Added Wicked network. Merged Evil Angel, XEmpire and Wicked into generic Gamma scraper.

This commit is contained in:
2020-02-01 01:15:40 +01:00
parent 37ab07356e
commit 94bf207397
17 changed files with 385 additions and 431 deletions

View File

@@ -35,6 +35,12 @@ const { argv } = yargs
alias: 'with-scenes',
default: false,
})
.option('with-profiles', {
describe: 'Scrape profiles for new actors after fetching scenes',
type: 'boolean',
alias: 'with-actors',
default: true,
})
.option('scene', {
describe: 'Scrape scene info from URL',
type: 'array',
@@ -55,6 +61,16 @@ const { argv } = yargs
type: 'boolean',
default: true,
})
.option('latest', {
describe: 'Scrape latest releases if available',
type: 'boolean',
default: true,
})
.option('upcoming', {
describe: 'Scrape upcoming releases if available',
type: 'boolean',
default: true,
})
.option('redownload', {
describe: 'Don\'t ignore duplicates, update existing entries',
type: 'boolean',