diff --git a/CHANGELOG.md b/CHANGELOG.md index 5667e20f..f3820139 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # Changelog -## Unreleased +## 1.15.2 - 2020-10-24 +### Additions +- [pinterest] implement login support ([#1055](https://github.com/mikf/gallery-dl/issues/1055)) +- [reddit] add `date` metadata field ([#1068](https://github.com/mikf/gallery-dl/issues/1068)) +- [seiga] add metadata for single image downloads ([#1063](https://github.com/mikf/gallery-dl/issues/1063)) +- [twitter] support media from Cards ([#937](https://github.com/mikf/gallery-dl/issues/937), [#1005](https://github.com/mikf/gallery-dl/issues/1005)) +- [weasyl] support api-key authentication ([#1057](https://github.com/mikf/gallery-dl/issues/1057)) +- add a `t` format string conversion for trimming whitespace ([#1065](https://github.com/mikf/gallery-dl/issues/1065)) +### Fixes +- [blogger] handle URLs with specified width/height ([#1061](https://github.com/mikf/gallery-dl/issues/1061)) +- [fallenangels] fix extraction of `.5` chapters +- [gelbooru] rewrite mp4 video URLs ([#1048](https://github.com/mikf/gallery-dl/issues/1048)) +- [hitomi] fix image URLs and gallery URL pattern +- [mangadex] unescape more metadata fields ([#1066](https://github.com/mikf/gallery-dl/issues/1066)) +- [mangahere] ensure download URLs have a scheme ([#1070](https://github.com/mikf/gallery-dl/issues/1070)) +- [mangakakalot] ignore "Go Home" buttons in chapter pages +- [newgrounds] handle embeds without scheme ([#1033](https://github.com/mikf/gallery-dl/issues/1033)) +- [newgrounds] provide fallback URLs for video downloads ([#1042](https://github.com/mikf/gallery-dl/issues/1042)) +- [xhamster] fix user profile extraction ## 1.15.1 - 2020-10-11 ### Additions diff --git a/README.rst b/README.rst index 272ac23a..6715d1ed 100644 --- a/README.rst +++ b/README.rst @@ -83,8 +83,8 @@ Download a standalone executable file, put it into your `PATH `__, and run it inside a command prompt (like ``cmd.exe``). -- `Windows `__ -- `Linux `__ +- `Windows `__ +- `Linux `__ These executables include a Python 3.8 interpreter and all required Python packages. @@ -308,7 +308,7 @@ access to *gallery-dl*. Authorize it and you will be shown one or more .. _gallery-dl-example.conf: https://github.com/mikf/gallery-dl/blob/master/docs/gallery-dl-example.conf .. _configuration.rst: https://github.com/mikf/gallery-dl/blob/master/docs/configuration.rst .. _Supported Sites: https://github.com/mikf/gallery-dl/blob/master/docs/supportedsites.rst -.. _stable: https://github.com/mikf/gallery-dl/archive/v1.15.1.tar.gz +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.15.2.tar.gz .. _dev: https://github.com/mikf/gallery-dl/archive/master.tar.gz .. _Python: https://www.python.org/downloads/ diff --git a/docs/supportedsites.rst b/docs/supportedsites.rst index 42857105..1f2c9097 100644 --- a/docs/supportedsites.rst +++ b/docs/supportedsites.rst @@ -69,7 +69,6 @@ Komikcast https://komikcast.com/ Chapters, Manga Konachan https://konachan.com/ Pools, Popular Images, Posts, Tag Searches LINE BLOG https://www.lineblog.me/ Blogs, Posts livedoor Blog http://blog.livedoor.jp/ Blogs, Posts -Lolibooru https://lolibooru.moe/ Pools, Popular Images, Posts, Tag Searches Luscious https://members.luscious.net/ Albums, Search Results Manga Fox https://fanfox.net/ Chapters Manga Here https://www.mangahere.cc/ Chapters, Manga diff --git a/gallery_dl/extractor/bcy.py b/gallery_dl/extractor/bcy.py index c3049a49..ec7020a9 100644 --- a/gallery_dl/extractor/bcy.py +++ b/gallery_dl/extractor/bcy.py @@ -108,7 +108,7 @@ class BcyUserExtractor(BcyExtractor): test = ( ("https://bcy.net/u/1933712", { "pattern": r"https://img-bcy-qn.pstatp.com/\w+/\d+/post/\w+/.+jpg", - "count": ">= 25", + "count": ">= 20", }), ("https://bcy.net/u/109282764041", { "pattern": r"https://p\d-bcy.byteimg.com/img/banciyuan/[0-9a-f]+" diff --git a/gallery_dl/version.py b/gallery_dl/version.py index efd11bd0..b2e5a58e 100644 --- a/gallery_dl/version.py +++ b/gallery_dl/version.py @@ -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.15.2-dev" +__version__ = "1.15.2" diff --git a/test/test_results.py b/test/test_results.py index 3bc950ad..d54017e5 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -25,13 +25,14 @@ TRAVIS_SKIP = { "exhentai", "mangafox", "dynastyscans", "nijie", "instagram", "ngomik", "archivedmoe", "archiveofsins", "thebarchive", "fireden", "4plebs", "sankaku", "idolcomplex", "mangahere", "mangadex", "sankakucomplex", - "warosu", "fuskator", "patreon", "komikcast", + "warosu", "fuskator", "patreon", "komikcast", "twitter", } # temporary issues, etc. BROKEN = { + "imgbox", "imagevenue", - "ngomik", + "mangapanda", "photobucket", }