[aryion] update folder mime type list (fixes #945)

pull/960/head
Mike Fährmann 4 years ago
parent 688bd046fc
commit b2009ea39e
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1,5 +1,7 @@
# Changelog
## Unreleased
## 1.14.4 - 2020-08-15
### Additions
- [blogger] add `search` extractor ([#925](https://github.com/mikf/gallery-dl/issues/925))

@ -68,6 +68,7 @@ class AryionExtractor(Extractor):
# folder
if headers["content-type"] in (
"application/x-folder",
"application/x-comic-folder",
"application/x-comic-folder-nomerge",
):
return False
@ -184,11 +185,16 @@ class AryionPostExtractor(AryionExtractor):
"_mtime" : "Sat, 16 Feb 2019 19:30:34 GMT",
},
}),
# folder (#694)
# x-folder (#694)
("https://aryion.com/g4/view/588928", {
"pattern": pattern,
"count": ">= 8",
}),
# x-comic-folder (#945)
("https://aryion.com/g4/view/537379", {
"pattern": pattern,
"count": 2,
}),
)
def posts(self):

@ -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.4"
__version__ = "1.14.5-dev"

Loading…
Cancel
Save