1
0
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:
Mike Fährmann 2020-06-14 21:39:21 +02:00
parent 6db7ed90cb
commit bb882b8cdb
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
4 changed files with 5 additions and 1 deletions

View File

@ -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))

View File

@ -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 = (

View File

@ -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 = (

View File

@ -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"