Add a new episode filter and completely remove some dependencies on the config object.

This commit is contained in:
Godzil
2018-07-19 23:19:46 +01:00
parent 8c1e0f2e0c
commit 6765b517ec
5 changed files with 85 additions and 8 deletions

View File

@@ -5,6 +5,7 @@ interface IConfig {
// Disables
cache?: boolean;
merge?: boolean;
episodes?: string;
// Settings
format?: string;
output?: string;

View File

@@ -1,5 +1,6 @@
interface IConfigTask {
address: string;
config: IConfigLine;
retry: number;
episode_min: number;
episode_max: number;
}