From b25ae30a95fc1d588f8a04b854e7d913406d73f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 22 Mar 2018 10:01:50 +0100 Subject: [PATCH] reorder options in gallery-dl.conf --- docs/gallery-dl-example.conf | 32 ++++++++++++++++---------------- docs/gallery-dl.conf | 35 ++++++++++++++++++----------------- 2 files changed, 34 insertions(+), 33 deletions(-) diff --git a/docs/gallery-dl-example.conf b/docs/gallery-dl-example.conf index ba93cde6..16445e2e 100644 --- a/docs/gallery-dl-example.conf +++ b/docs/gallery-dl-example.conf @@ -1,21 +1,7 @@ { - "base-directory": "~/gallery-dl/", - "netrc": true, - - "cache": { - "file": "~/gallery-dl/cache.sqlite3" - }, - - "downloader": - { - "part-directory": "/tmp/.download/", - "rate": "1M", - "retries": 3, - "timeout": 8.5 - }, - "extractor": { + "base-directory": "~/gallery-dl/", "archive": "~/gallery-dl/archive.sqlite3", "proxy": "http://10.10.1.10:3128", @@ -103,9 +89,23 @@ } }, + "downloader": + { + "part-directory": "/tmp/.download/", + "rate": "1M", + "retries": 3, + "timeout": 8.5 + }, + "output": { "mode": "terminal", "logfile": "~/gallery-dl/log.txt" - } + }, + + "cache": { + "file": "~/gallery-dl/cache.sqlite3" + }, + + "netrc": true } diff --git a/docs/gallery-dl.conf b/docs/gallery-dl.conf index 5706d815..baf40388 100644 --- a/docs/gallery-dl.conf +++ b/docs/gallery-dl.conf @@ -1,23 +1,8 @@ { - "base-directory": "./gallery-dl/", - "netrc": false, - - "downloader": - { - "part": true, - "part-directory": null, - "http": - { - "rate": null, - "retries": 5, - "timeout": 30.0, - "verify": true - } - }, - "extractor": { "archive": null, + "base-directory": "./gallery-dl/", "cookies": null, "proxy": null, "skip": true, @@ -121,6 +106,20 @@ } }, + "downloader": + { + "part": true, + "part-directory": null, + + "http": + { + "rate": null, + "retries": 5, + "timeout": 30.0, + "verify": true + } + }, + "output": { "mode": "auto", @@ -128,5 +127,7 @@ "shorten": true, "logfile": null, "unsupportedfile": null - } + }, + + "netrc": false }