diff --git a/src/batch.ts b/src/batch.ts index 817d65c..824a1a2 100644 --- a/src/batch.ts +++ b/src/batch.ts @@ -265,17 +265,16 @@ function parse(args: string[]): IConfigLine // Episode filter .option('-e, --episodes ', 'Episode list. Read documentation on how to use') // Settings - .option('-f, --format ', 'The subtitle format. (Default: ass)') + .option('-f, --format ', 'The subtitle format.', 'ass') .option('-o, --output ', 'The output path.') - .option('-s, --series ', 'The series override.') - .option('-t, --tag ', 'The subgroup. (Default: CrunchyRoll)', 'CrunchyRoll') - .option('-r, --resolution ', 'The video resolution. (Default: 1080 (360, 480, 720, 1080))', - '1080') - .option('-g, --rebuildcrp', 'Rebuild the crpersistant file.') + .option('-s, --series ', 'The series name override.') .option('-n, --nametmpl ', 'Output name template', '{SERIES_TITLE} - s{SEASON_NUMBER}e{EPISODE_NUMBER} - [{TAG}]') + .option('-t, --tag ', 'The subgroup.', 'CrunchyRoll') + .option('-r, --resolution ', 'The video resolution. (valid: 360, 480, 720, 1080)', '1080') .option('-b, --batch ', 'Batch file', 'CrunchyRoll.txt') .option('--verbose', 'Make tool verbose') .option('--debug', 'Create a debug file. Use only if requested!') - .option('--retry ', 'Number or time to retry fetching an episode. Default: 5', 5) + .option('--rebuildcrp', 'Rebuild the crpersistant file.') + .option('--retry ', 'Number or time to retry fetching an episode.', 5) .parse(args); }