mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
improve output of '-K' for parent extractors (#825)
This commit is contained in:
parent
6db7ed90cb
commit
bb882b8cdb
@ -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))
|
||||
|
@ -81,6 +81,7 @@ class NaverPostExtractor(NaverBase, GalleryExtractor):
|
||||
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 = (
|
||||
|
@ -96,6 +96,7 @@ class WebtoonsEpisodeExtractor(WebtoonsExtractor):
|
||||
class WebtoonsComicExtractor(WebtoonsExtractor):
|
||||
"""Extractor for an entire comic on webtoons.com"""
|
||||
subcategory = "comic"
|
||||
categorytransfer = True
|
||||
pattern = (BASE_PATTERN + r"/([^/?&#]+)/([^/?&#]+))"
|
||||
r"/list(?:\?([^#]+))")
|
||||
test = (
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user