diff --git a/CHANGELOG.md b/CHANGELOG.md index 314e5ce8..c5362694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,30 @@ # Changelog -## Unreleased +## 1.16.0 - 2020-12-12 +### Additions +- [booru] implement generalized extractors for `*booru` and `moebooru` sites + - add support for sakugabooru.com ([#1136](https://github.com/mikf/gallery-dl/issues/1136)) + - add support for lolibooru.moe ([#1050](https://github.com/mikf/gallery-dl/issues/1050)) + - provide formattable `date` metadata fields ([#1138](https://github.com/mikf/gallery-dl/issues/1138)) +- [postprocessor:metadata] add `event` and `filename` options ([#315](https://github.com/mikf/gallery-dl/issues/315), [#866](https://github.com/mikf/gallery-dl/issues/866), [#984](https://github.com/mikf/gallery-dl/issues/984)) +- [postprocessor:exec] add `event` option ([#992](https://github.com/mikf/gallery-dl/issues/992)) +### Changes +- [flickr] update default directories and improve metadata consistency ([#828](https://github.com/mikf/gallery-dl/issues/828)) +- [sankaku] use API endpoints from `beta.sankakucomplex.com` +- [downloader:http] improve filename extension handling ([#776](https://github.com/mikf/gallery-dl/issues/776)) +- replace all JPEG filename extensions with `jpg` by default +### Fixes +- [hentainexus] fix extraction ([#1166](https://github.com/mikf/gallery-dl/issues/1166)) +- [instagram] rewrite ([#1113](https://github.com/mikf/gallery-dl/issues/1113), [#1122](https://github.com/mikf/gallery-dl/issues/1122), [#1128](https://github.com/mikf/gallery-dl/issues/1128), [#1130](https://github.com/mikf/gallery-dl/issues/1130), [#1149](https://github.com/mikf/gallery-dl/issues/1149)) +- [mangadex] handle external chapters ([#1154](https://github.com/mikf/gallery-dl/issues/1154)) +- [nozomi] handle empty `date` fields ([#1163](https://github.com/mikf/gallery-dl/issues/1163)) +- [paheal] create directory for each post ([#1147](https://github.com/mikf/gallery-dl/issues/1147)) +- [piczel] update API URLs +- [twitter] update image URL format ([#1145](https://github.com/mikf/gallery-dl/issues/1145)) +- [twitter] improve `x-csrf-token` header handling ([#1170](https://github.com/mikf/gallery-dl/issues/1170)) +- [webtoons] update `ageGate` cookies +### Removals +- [sankaku] remove login support ## 1.15.4 - 2020-11-27 ### Fixes diff --git a/README.rst b/README.rst index 1541fb45..4bfb8216 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 interpreter and all required Python packages. @@ -320,7 +320,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.4.tar.gz +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.16.0.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 8376f6da..0b01ad24 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.16.0-dev" +__version__ = "1.16.0" diff --git a/test/test_results.py b/test/test_results.py index e5739d9c..4e9f4b27 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -30,7 +30,7 @@ TRAVIS_SKIP = { # temporary issues, etc. BROKEN = { - "instagram", + "dokireader", "imagevenue", "photobucket", }