From 03b8a548cb1d8092885fcd7d959d11c0badada04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 6 Jan 2018 15:52:08 +0100 Subject: [PATCH] [tumblr] change `reblogs` default value to `true` (#61) --- CHANGELOG.md | 6 ++++-- docs/configuration.rst | 2 +- docs/gallery-dl.conf | 2 +- gallery_dl/extractor/tumblr.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77c5b924fe..5f989fea78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # Changelog ## Unreleased -- Fixed chapter information parsing for certain manga on `kissmanga` ([#58](https://github.com/mikf/gallery-dl/issues/58)) +- Added an option to filter reblogs on `tumblr` ([#61](https://github.com/mikf/gallery-dl/issues/61)) +- Improved pagination for various …booru sites to work around page limits +- Fixed chapter information parsing for certain manga on `kissmanga` ([#58](https://github.com/mikf/gallery-dl/issues/58)) and `batoto` ([#60](https://github.com/mikf/gallery-dl/issues/60)) ## 1.1.1 - 2017-12-22 - Added support for: @@ -9,7 +11,7 @@ - Added pool- and post-extractors for `sankaku` - Added OAuth user authentication for `deviantart` - Updated `luscious` to support `members.luscious.net` URLs ([#55](https://github.com/mikf/gallery-dl/issues/55)) -- Updated `mangahere` to use their new domain name (mangahere.cc) and mobile URLs +- Updated `mangahere` to use their new domain name (mangahere.cc) and support mobile URLs - Updated `gelbooru` to not be restricted to the first 20,000 images ([#56](https://github.com/mikf/gallery-dl/issues/56)) - Fixed extraction issues for `nhentai` and `khinsider` diff --git a/docs/configuration.rst b/docs/configuration.rst index 69e8ba0f8b..7d3152bd61 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -648,7 +648,7 @@ extractor.tumblr.reblogs ------------------------ =========== ===== Type ``bool`` -Default ``false`` +Default ``true`` Description Extract images from reblogged posts. =========== ===== diff --git a/docs/gallery-dl.conf b/docs/gallery-dl.conf index d97e85b429..46b105329a 100644 --- a/docs/gallery-dl.conf +++ b/docs/gallery-dl.conf @@ -111,7 +111,7 @@ { "posts": "photo", "inline": false, - "reblogs": false, + "reblogs": true, "external": false }, "recursive": diff --git a/gallery_dl/extractor/tumblr.py b/gallery_dl/extractor/tumblr.py index c3bfbaedb2..5be0b197ee 100644 --- a/gallery_dl/extractor/tumblr.py +++ b/gallery_dl/extractor/tumblr.py @@ -49,7 +49,7 @@ def __init__(self, match): self.types = self._setup_posttypes() self.inline = self.config("inline", False) - self.reblogs = self.config("reblogs", False) + self.reblogs = self.config("reblogs", True) self.external = self.config("external", False) if len(self.types) == 1: