diff --git a/CHANGELOG.md b/CHANGELOG.md index 77c5b924..5f989fea 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 69e8ba0f..7d3152bd 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 d97e85b4..46b10532 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 c3bfbaed..5be0b197 100644 --- a/gallery_dl/extractor/tumblr.py +++ b/gallery_dl/extractor/tumblr.py @@ -49,7 +49,7 @@ class TumblrExtractor(Extractor): 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: