release version 1.8.3

pull/250/head v1.8.3
Mike Fährmann 5 years ago
parent 5fd94c6b83
commit 26b516b328
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -1,12 +1,23 @@
# Changelog # Changelog
## Unreleased ## 1.8.3 - 2019-05-04
### Additions ### Additions
- Support for - Support for
- `plurk` - https://www.plurk.com/ (#212) - `plurk` - https://www.plurk.com/ ([#212](https://github.com/mikf/gallery-dl/issues/212))
- `sexcom` - https://www.sex.com/ (#147) - `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 ### 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 ## 1.8.2 - 2019-04-12
### Additions ### Additions

@ -22,6 +22,7 @@ Optional
- FFmpeg_: Pixiv Ugoira to WebM conversion - FFmpeg_: Pixiv Ugoira to WebM conversion
- youtube-dl_: Video downloads - youtube-dl_: Video downloads
- pyOpenSSL_: Accessing Cloudflare protected sites
Installation Installation
@ -70,14 +71,19 @@ Navigate into the respective directory and run the :code:`setup.py` file.
$ python setup.py install $ python setup.py install
Standalone Executable (Windows only) Standalone Executable
------------------------------------ ---------------------
Windows users can download a `standalone executable`_, which comes with a Download a standalone executable file,
Python 3.4 interpreter and all required packages included. put it into your `PATH <https://en.wikipedia.org/wiki/PATH_(variable)>`__,
and run it inside a command prompt (like ``cmd.exe``).
- `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.8.3/gallery-dl.exe>`__
- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.8.3/gallery-dl.bin>`__
These executables include a Python 3.7 interpreter
and all required Python packages.
Put this file in your `PATH <https://en.wikipedia.org/wiki/PATH_(variable)>`__
or use it from the current directory and you are good to go,
Snap Snap
---- ----
@ -88,6 +94,7 @@ Linux users that are using a distro that is supported by Snapd_ can install *gal
$ snap install gallery-dl $ snap install gallery-dl
Usage 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 .. _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
.. _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.3.zip
.. _stable: https://github.com/mikf/gallery-dl/archive/v1.8.2.zip
.. _dev: https://github.com/mikf/gallery-dl/archive/master.zip .. _dev: https://github.com/mikf/gallery-dl/archive/master.zip
.. _Python: https://www.python.org/downloads/ .. _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/ .. _Requests: http://docs.python-requests.org/en/master/
.. _FFmpeg: https://www.ffmpeg.org/ .. _FFmpeg: https://www.ffmpeg.org/
.. _youtube-dl: https://ytdl-org.github.io/youtube-dl/ .. _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 .. _OAuth: https://en.wikipedia.org/wiki/OAuth
.. |pypi| image:: https://img.shields.io/pypi/v/gallery-dl.svg .. |pypi| image:: https://img.shields.io/pypi/v/gallery-dl.svg

@ -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.8.3-dev" __version__ = "1.8.3"

Loading…
Cancel
Save