From 26b516b328b977edf3cf2919cca0aa38b85ceb3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 4 May 2019 22:50:00 +0200 Subject: [PATCH] release version 1.8.3 --- CHANGELOG.md | 19 +++++++++++++++---- README.rst | 25 ++++++++++++++++--------- gallery_dl/version.py | 2 +- 3 files changed, 32 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee05c688..12b57d13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,23 @@ # Changelog -## Unreleased +## 1.8.3 - 2019-05-04 ### Additions - Support for - - `plurk` - https://www.plurk.com/ (#212) - - `sexcom` - https://www.sex.com/ (#147) + - `plurk` - https://www.plurk.com/ ([#212](https://github.com/mikf/gallery-dl/issues/212)) + - `sexcom` - https://www.sex.com/ ([#147](https://github.com/mikf/gallery-dl/issues/147)) +- `--clear-cache` +- `date` metadata fields for `deviantart`, `twitter`, and `tumblr` ([#224](https://github.com/mikf/gallery-dl/issues/224), [#232](https://github.com/mikf/gallery-dl/issues/232)) ### Changes -- Standalone Windows executables use PyInstaller and Python 3.7 +- Standalone executables are now built using PyInstaller: + - uses the latest CPython interpreter (Python 3.7.3) + - available on several platforms (Windows, Linux, macOS) + - includes the `certifi` CA bundle, `youtube-dl`, and `pyOpenSSL` on Windows +### Fixes +- Patch `urllib3`'s default list of SSL/TLS ciphers to prevent Cloudflare CAPTCHAs ([#227](https://github.com/mikf/gallery-dl/issues/227)) + (Windows users need to install `pyOpenSSL` for this to take effect) +- Provide fallback URLs for `twitter` images ([#237](https://github.com/mikf/gallery-dl/issues/237)) +- Send `Referer` headers when downloading from `hitomi` ([#239](https://github.com/mikf/gallery-dl/issues/239)) +- Updated login procedure on `mangoxo` ## 1.8.2 - 2019-04-12 ### Additions diff --git a/README.rst b/README.rst index a8bf23cc..55792ba3 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,7 @@ Optional - FFmpeg_: Pixiv Ugoira to WebM conversion - youtube-dl_: Video downloads +- pyOpenSSL_: Accessing Cloudflare protected sites Installation @@ -70,14 +71,19 @@ Navigate into the respective directory and run the :code:`setup.py` file. $ python setup.py install -Standalone Executable (Windows only) ------------------------------------- +Standalone Executable +--------------------- -Windows users can download a `standalone executable`_, which comes with a -Python 3.4 interpreter and all required packages included. +Download a standalone executable file, +put it into your `PATH `__, +and run it inside a command prompt (like ``cmd.exe``). + +- `Windows `__ +- `Linux `__ + +These executables include a Python 3.7 interpreter +and all required Python packages. -Put this file in your `PATH `__ -or use it from the current directory and you are good to go, Snap ---- @@ -88,6 +94,7 @@ Linux users that are using a distro that is supported by Snapd_ can install *gal $ snap install gallery-dl + Usage ===== @@ -216,8 +223,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 -.. _standalone executable: https://github.com/mikf/gallery-dl/releases/download/v1.8.2/gallery-dl.exe -.. _stable: https://github.com/mikf/gallery-dl/archive/v1.8.2.zip +.. _stable: https://github.com/mikf/gallery-dl/archive/v1.8.3.zip .. _dev: https://github.com/mikf/gallery-dl/archive/master.zip .. _Python: https://www.python.org/downloads/ @@ -226,7 +232,8 @@ access to *gallery-dl*. Authorize it and you will be shown one or more .. _Requests: http://docs.python-requests.org/en/master/ .. _FFmpeg: https://www.ffmpeg.org/ .. _youtube-dl: https://ytdl-org.github.io/youtube-dl/ -.. _Snapd: https://docs.snapcraft.io/installing-snapd/6735 +.. _pyOpenSSL: https://pyopenssl.org/ +.. _Snapd: https://docs.snapcraft.io/installing-snapd .. _OAuth: https://en.wikipedia.org/wiki/OAuth .. |pypi| image:: https://img.shields.io/pypi/v/gallery-dl.svg diff --git a/gallery_dl/version.py b/gallery_dl/version.py index ceec12a1..85c1e318 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.8.3-dev" +__version__ = "1.8.3"