release version 1.14.1

pull/866/head v1.14.1
Mike Fährmann 4 years ago
parent 087e3184dc
commit 6db7ed90cb
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1,5 +1,17 @@
# Changelog # 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 ## 1.14.0 - 2020-05-31
### Additions ### Additions
- [imagechest] add new extractor for imgchest.com ([#750](https://github.com/mikf/gallery-dl/issues/750)) - [imagechest] add new extractor for imgchest.com ([#750](https://github.com/mikf/gallery-dl/issues/750))

@ -83,8 +83,8 @@ Download a standalone executable file,
put it into your `PATH <https://en.wikipedia.org/wiki/PATH_(variable)>`__, put it into your `PATH <https://en.wikipedia.org/wiki/PATH_(variable)>`__,
and run it inside a command prompt (like ``cmd.exe``). and run it inside a command prompt (like ``cmd.exe``).
- `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.14.0/gallery-dl.exe>`__ - `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.14.1/gallery-dl.exe>`__
- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.14.0/gallery-dl.bin>`__ - `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.14.1/gallery-dl.bin>`__
These executables include a Python 3.8 interpreter These executables include a Python 3.8 interpreter
and all required Python packages. 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 .. _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 .. _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 .. _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 .. _dev: https://github.com/mikf/gallery-dl/archive/master.tar.gz
.. _Python: https://www.python.org/downloads/ .. _Python: https://www.python.org/downloads/

@ -6,4 +6,4 @@
# it under the terms of the GNU General Public License version 2 as # it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation. # published by the Free Software Foundation.
__version__ = "1.14.1-dev" __version__ = "1.14.1"

@ -33,6 +33,8 @@ TRAVIS_SKIP = {
BROKEN = { BROKEN = {
"imagevenue", "imagevenue",
"photobucket", "photobucket",
"seiga",
"twitter",
"worldthree", "worldthree",
} }
@ -312,7 +314,6 @@ def setup_test_config():
config.set(("extractor", "e621") , "username", None) config.set(("extractor", "e621") , "username", None)
config.set(("extractor", "instagram") , "username", None) config.set(("extractor", "instagram") , "username", None)
config.set(("extractor", "twitter") , "username", None) config.set(("extractor", "twitter") , "username", None)
config.set(("extractor", "twitter") , "retries" , 10)
config.set(("extractor", "newgrounds"), "username", "d1618111") config.set(("extractor", "newgrounds"), "username", "d1618111")
config.set(("extractor", "newgrounds"), "password", "d1618111") config.set(("extractor", "newgrounds"), "password", "d1618111")

Loading…
Cancel
Save