Skip to content

Commit

Permalink
improve output of '-K' for parent extractors (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jun 14, 2020
1 parent 6db7ed9 commit bb882b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

## Unreleased

## 1.14.1 - 2020-06-12
### Additions
- [furaffinity] add `artist_url` metadata field ([#821](https://github.com/mikf/gallery-dl/issues/821))
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/naver.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def images(self, page):
class NaverBlogExtractor(NaverBase, Extractor):
"""Extractor for a user's blog on blog.naver.com"""
subcategory = "blog"
categorytransfer = True
pattern = (r"(?:https?://)?blog\.naver\.com/"
r"(?:PostList.nhn\?(?:[^&#]+&)*blogId=([^&#]+)|(\w+)/?$)")
test = (
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/webtoons.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def get_image_urls(page):
class WebtoonsComicExtractor(WebtoonsExtractor):
"""Extractor for an entire comic on webtoons.com"""
subcategory = "comic"
categorytransfer = True
pattern = (BASE_PATTERN + r"/([^/?&#]+)/([^/?&#]+))"
r"/list(?:\?([^#]+))")
test = (
Expand Down
2 changes: 1 addition & 1 deletion gallery_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.

__version__ = "1.14.1"
__version__ = "1.14.2-dev"

0 comments on commit bb882b8

Please sign in to comment.