diff --git a/CHANGELOG.md b/CHANGELOG.md index 78f3fb1e..ac09ee79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ # Changelog -## Unreleased +## 1.14.3 - 2020-07-18 +### Additions +- [8muses] support `comics.8muses.com` URLs +- [artstation] add `following` extractor ([#888](https://github.com/mikf/gallery-dl/issues/888)) +- [exhentai] add `domain` option ([#897](https://github.com/mikf/gallery-dl/issues/897)) +- [gfycat] add `user` and `search` extractors +- [imgur] support all `/t/...` URLs ([#880](https://github.com/mikf/gallery-dl/issues/880)) +- [khinsider] add `format` option ([#840](https://github.com/mikf/gallery-dl/issues/840)) +- [mangakakalot] add `manga` and `chapter` extractors ([#876](https://github.com/mikf/gallery-dl/issues/876)) +- [redgifs] support `gifsdeliverynetwork.com` URLs ([#874](https://github.com/mikf/gallery-dl/issues/874)) +- [subscribestar] add `user` and `post` extractors ([#852](https://github.com/mikf/gallery-dl/issues/852)) +- [twitter] add support for nitter.net URLs ([#890](https://github.com/mikf/gallery-dl/issues/890)) +- add Zsh completion script ([#150](https://github.com/mikf/gallery-dl/issues/150)) +### Fixes +- [gfycat] retry 404'ed videos on redgifs.com ([#874](https://github.com/mikf/gallery-dl/issues/874)) +- [newgrounds] fix favorites extraction +- [patreon] yield images and attachments before post files ([#871](https://github.com/mikf/gallery-dl/issues/871)) +- [reddit] fix AttributeError when using `recursion` ([#879](https://github.com/mikf/gallery-dl/issues/879)) +- [twitter] raise proper exception if a user doesn't exist ([#891](https://github.com/mikf/gallery-dl/issues/891)) +- defer directory creation ([#722](https://github.com/mikf/gallery-dl/issues/722)) +- set pseudo extension for Metadata messages ([#865](https://github.com/mikf/gallery-dl/issues/865)) +- prevent exception on Cloudflare challenges ([#868](https://github.com/mikf/gallery-dl/issues/868)) ## 1.14.2 - 2020-06-27 ### Additions diff --git a/README.rst b/README.rst index 5bb21f4f..360c02bc 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. @@ -299,7 +299,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.2.tar.gz +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.14.3.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 721b0f4e..775f23ec 100644 --- a/docs/supportedsites.rst +++ b/docs/supportedsites.rst @@ -39,7 +39,7 @@ Fur Affinity https://www.furaffinity.net/ Favorites, Galleries, P Fuskator https://fuskator.com/ Galleries, Search Results Futaba Channel https://www.2chan.net/ Threads Gelbooru https://gelbooru.com/ Pools, Posts, Tag Searches -Gfycat https://gfycat.com/ individual Images +Gfycat https://gfycat.com/ individual Images, Search Results, User Profiles HBrowse https://www.hbrowse.com/ Chapters, Manga Hentai Cafe https://hentai.cafe/ Chapters, Manga Hentai Foundry https://www.hentai-foundry.com/ |hentaifoundry-C| @@ -54,7 +54,7 @@ Hypnohub https://hypnohub.net/ Pools, Popular Images, Idol Complex https://idol.sankakucomplex.com/ Pools, Posts, Tag Searches Optional ImageBam http://www.imagebam.com/ Galleries, individual Images ImageChest https://imgchest.com/ Galleries -ImageFap https://imagefap.com/ Galleries, individual Images, User Profiles +ImageFap https://www.imagefap.com/ Galleries, individual Images, User Profiles ImgBB https://imgbb.com/ Albums, individual Images, User Profiles Optional imgbox https://imgbox.com/ Galleries, individual Images imgth https://imgth.com/ Galleries diff --git a/gallery_dl/version.py b/gallery_dl/version.py index ae252b92..fd520775 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.3-dev" +__version__ = "1.14.3"