diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fd227f1..0a55546e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # Changelog -## Unreleased +## 1.15.1 - 2020-10-11 +### Additions +- [hentaicafe] add `manga_id` metadata field ([#1036](https://github.com/mikf/gallery-dl/issues/1036)) +- [hentaifoundry] add support for stories ([#734](https://github.com/mikf/gallery-dl/issues/734)) +- [hentaifoundry] add `include` option +- [newgrounds] extract image embeds ([#1033](https://github.com/mikf/gallery-dl/issues/1033)) +- [nijie] add `include` option ([#1018](https://github.com/mikf/gallery-dl/issues/1018)) +- [reactor] match URLs without subdomain ([#1053](https://github.com/mikf/gallery-dl/issues/1053)) +- [twitter] extend `retweets` option ([#1026](https://github.com/mikf/gallery-dl/issues/1026)) +- [weasyl] add extractors ([#977](https://github.com/mikf/gallery-dl/issues/977)) +### Fixes +- [500px] update query hashes +- [behance] fix `collection` extraction +- [newgrounds] fix video extraction ([#1042](https://github.com/mikf/gallery-dl/issues/1042)) +- [twitter] improve twitpic extraction ([#1019](https://github.com/mikf/gallery-dl/issues/1019)) +- [weibo] handle posts with more than 9 images ([#926](https://github.com/mikf/gallery-dl/issues/926)) +- [xvideos] fix `title` extraction +- fix crash when using `--download-archive` with `--no-skip` ([#1023](https://github.com/mikf/gallery-dl/issues/1023)) +- fix issues with `blacklist`/`whitelist` defaults ([#1051](https://github.com/mikf/gallery-dl/issues/1051), [#1056](https://github.com/mikf/gallery-dl/issues/1056)) +### Removals +- [kissmanga] remove module ## 1.15.0 - 2020-09-20 ### Additions diff --git a/README.rst b/README.rst index 91c26319..fa823b5b 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.0.tar.gz +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.15.1.tar.gz .. _dev: https://github.com/mikf/gallery-dl/archive/master.tar.gz .. _Python: https://www.python.org/downloads/ diff --git a/docs/configuration.rst b/docs/configuration.rst index 7a66223e..1c57f38f 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -960,7 +960,7 @@ extractor.hentaifoundry.include Type ``string`` or ``list`` of ``strings`` Default - ``"gallery"`` + ``"pictures"`` Example ``"scraps,stories"`` or ``["scraps", "stories"]`` Description @@ -968,7 +968,7 @@ Description when processing a user profile. Possible values are - ``"gallery"``, ``"scraps"``, ``"stories"``, ``"favorite"``. + ``"pictures"``, ``"scraps"``, ``"stories"``, ``"favorite"``. You can use ``"all"`` instead of listing all values separately. diff --git a/gallery_dl/version.py b/gallery_dl/version.py index a8523f8d..81976c2a 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.1-dev" +__version__ = "1.15.1"