diff --git a/CHANGELOG.md b/CHANGELOG.md index f142ebbf..043d9648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.14.1 - 2020-06-12 +### Additions +- [furaffinity] add `artist_url` metadata field ([#821](https://github.com/mikf/gallery-dl/issues/821)) +- [redgifs] add `user` and `search` extractors ([#724](https://github.com/mikf/gallery-dl/issues/724)) +### Changes +- [deviantart] extend `extra` option; also search journals for sta.sh links ([#712](https://github.com/mikf/gallery-dl/issues/712)) +- [twitter] rewrite; use new interface ([#806](https://github.com/mikf/gallery-dl/issues/806), [#740](https://github.com/mikf/gallery-dl/issues/740)) +### Fixes +- [kissmanga] work around CAPTCHAs ([#818](https://github.com/mikf/gallery-dl/issues/818)) +- [nhentai] fix extraction ([#819](https://github.com/mikf/gallery-dl/issues/819)) +- [webtoons] generalize comic extraction code ([#820](https://github.com/mikf/gallery-dl/issues/820)) + ## 1.14.0 - 2020-05-31 ### Additions - [imagechest] add new extractor for imgchest.com ([#750](https://github.com/mikf/gallery-dl/issues/750)) diff --git a/README.rst b/README.rst index a2258dbe..b66efb75 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. @@ -291,7 +291,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.0.tar.gz +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.14.1.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 5580df1e..8509e1ea 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.1-dev" +__version__ = "1.14.1" diff --git a/test/test_results.py b/test/test_results.py index 3624fe1c..196d8597 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -33,6 +33,8 @@ TRAVIS_SKIP = { BROKEN = { "imagevenue", "photobucket", + "seiga", + "twitter", "worldthree", } @@ -312,7 +314,6 @@ def setup_test_config(): config.set(("extractor", "e621") , "username", None) config.set(("extractor", "instagram") , "username", None) config.set(("extractor", "twitter") , "username", None) - config.set(("extractor", "twitter") , "retries" , 10) config.set(("extractor", "newgrounds"), "username", "d1618111") config.set(("extractor", "newgrounds"), "password", "d1618111")