diff --git a/CHANGELOG.md b/CHANGELOG.md index f26ff84a..fa9f17c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,31 @@ # Changelog -## Unreleased +## 1.14.4 - 2020-08-15 +### Additions +- [blogger] add `search` extractor ([#925](https://github.com/mikf/gallery-dl/issues/925)) +- [blogger] support searching posts by labels ([#925](https://github.com/mikf/gallery-dl/issues/925)) +- [inkbunny] add `user` and `post` extractors ([#283](https://github.com/mikf/gallery-dl/issues/283)) +- [instagram] support `/reel/` URLs +- [pinterest] support `pinterest.co.uk` URLs ([#914](https://github.com/mikf/gallery-dl/issues/914)) +- [reddit] support gallery posts ([#920](https://github.com/mikf/gallery-dl/issues/920)) +- [subscribestar] extract attached media files ([#852](https://github.com/mikf/gallery-dl/issues/852)) +### Fixes +- [blogger] improve error messages for missing posts/blogs ([#903](https://github.com/mikf/gallery-dl/issues/903)) +- [exhentai] adjust image limit costs ([#940](https://github.com/mikf/gallery-dl/issues/940)) +- [gfycat] skip malformed gfycat responses ([#902](https://github.com/mikf/gallery-dl/issues/902)) +- [imgur] handle 403 overcapacity responses ([#910](https://github.com/mikf/gallery-dl/issues/910)) +- [instagram] wait before GraphQL requests ([#901](https://github.com/mikf/gallery-dl/issues/901)) +- [mangareader] fix extraction +- [mangoxo] fix login +- [pixnet] detect password-protected albums ([#177](https://github.com/mikf/gallery-dl/issues/177)) +- [simplyhentai] fix `gallery_id` extraction +- [subscribestar] update `date` parsing +- [vsco] handle missing `description` fields +- [xhamster] fix extraction ([#917](https://github.com/mikf/gallery-dl/issues/917)) +- allow `parent-directory` to work recursively ([#905](https://github.com/mikf/gallery-dl/issues/905)) +- skip external OAuth tests ([#908](https://github.com/mikf/gallery-dl/issues/908)) +### Removals +- [bobx] remove module ## 1.14.3 - 2020-07-18 ### Additions diff --git a/README.rst b/README.rst index e4f2bd25..2148c421 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. @@ -154,7 +154,7 @@ Filter manga chapters by language and chapter number: $ gallery-dl "r:https://pastebin.com/raw/FLwrCYsT" -If a site's address is nonstandard for its extractor, you can prefix the URL with the +If a site's address is nonstandard for its extractor, you can prefix the URL with the extractor's name to force the use of a specific extractor: .. code:: bash @@ -300,7 +300,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.14.3.tar.gz +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.14.4.tar.gz .. _dev: https://github.com/mikf/gallery-dl/archive/master.tar.gz .. _Python: https://www.python.org/downloads/ diff --git a/gallery_dl/version.py b/gallery_dl/version.py index 8914de4d..b2b59e00 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.14.4-dev" +__version__ = "1.14.4" diff --git a/test/test_results.py b/test/test_results.py index 11fa6fd7..1f2f6994 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -31,7 +31,10 @@ TRAVIS_SKIP = { # temporary issues, etc. BROKEN = { + "hentaihand", "imagevenue", + "mangapark", + "ngomik", "photobucket", "worldthree", }