Skip to content

Commit

Permalink
[tumblr] change reblogs default value to true (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jan 6, 2018
1 parent d235f68 commit 03b8a54
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# 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:
- `slideshare` - https://www.slideshare.net/ ([#54](https://github.com/mikf/gallery-dl/issues/54))
- 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`

Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ extractor.tumblr.reblogs
------------------------
=========== =====
Type ``bool``
Default ``false``
Default ``true``
Description Extract images from reblogged posts.
=========== =====

Expand Down
2 changes: 1 addition & 1 deletion docs/gallery-dl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
{
"posts": "photo",
"inline": false,
"reblogs": false,
"reblogs": true,
"external": false
},
"recursive":
Expand Down
2 changes: 1 addition & 1 deletion gallery_dl/extractor/tumblr.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 03b8a54

Please sign in to comment.