mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-25 12:12:34 +01:00
release version 1.15.2
This commit is contained in:
parent
de4a1e45c9
commit
18213dc5ba
20
CHANGELOG.md
20
CHANGELOG.md
@ -1,6 +1,24 @@
|
||||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
## 1.15.2 - 2020-10-24
|
||||
### Additions
|
||||
- [pinterest] implement login support ([#1055](https://github.com/mikf/gallery-dl/issues/1055))
|
||||
- [reddit] add `date` metadata field ([#1068](https://github.com/mikf/gallery-dl/issues/1068))
|
||||
- [seiga] add metadata for single image downloads ([#1063](https://github.com/mikf/gallery-dl/issues/1063))
|
||||
- [twitter] support media from Cards ([#937](https://github.com/mikf/gallery-dl/issues/937), [#1005](https://github.com/mikf/gallery-dl/issues/1005))
|
||||
- [weasyl] support api-key authentication ([#1057](https://github.com/mikf/gallery-dl/issues/1057))
|
||||
- add a `t` format string conversion for trimming whitespace ([#1065](https://github.com/mikf/gallery-dl/issues/1065))
|
||||
### Fixes
|
||||
- [blogger] handle URLs with specified width/height ([#1061](https://github.com/mikf/gallery-dl/issues/1061))
|
||||
- [fallenangels] fix extraction of `.5` chapters
|
||||
- [gelbooru] rewrite mp4 video URLs ([#1048](https://github.com/mikf/gallery-dl/issues/1048))
|
||||
- [hitomi] fix image URLs and gallery URL pattern
|
||||
- [mangadex] unescape more metadata fields ([#1066](https://github.com/mikf/gallery-dl/issues/1066))
|
||||
- [mangahere] ensure download URLs have a scheme ([#1070](https://github.com/mikf/gallery-dl/issues/1070))
|
||||
- [mangakakalot] ignore "Go Home" buttons in chapter pages
|
||||
- [newgrounds] handle embeds without scheme ([#1033](https://github.com/mikf/gallery-dl/issues/1033))
|
||||
- [newgrounds] provide fallback URLs for video downloads ([#1042](https://github.com/mikf/gallery-dl/issues/1042))
|
||||
- [xhamster] fix user profile extraction
|
||||
|
||||
## 1.15.1 - 2020-10-11
|
||||
### Additions
|
||||
|
@ -83,8 +83,8 @@ Download a standalone executable file,
|
||||
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.15.1/gallery-dl.exe>`__
|
||||
- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.15.1/gallery-dl.bin>`__
|
||||
- `Windows <https://github.com/mikf/gallery-dl/releases/download/v1.15.2/gallery-dl.exe>`__
|
||||
- `Linux <https://github.com/mikf/gallery-dl/releases/download/v1.15.2/gallery-dl.bin>`__
|
||||
|
||||
These executables include a Python 3.8 interpreter
|
||||
and all required Python packages.
|
||||
@ -308,7 +308,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.1.tar.gz
|
||||
.. _stable: https://github.com/mikf/gallery-dl/archive/v1.15.2.tar.gz
|
||||
.. _dev: https://github.com/mikf/gallery-dl/archive/master.tar.gz
|
||||
|
||||
.. _Python: https://www.python.org/downloads/
|
||||
|
@ -69,7 +69,6 @@ Komikcast https://komikcast.com/ Chapters, Manga
|
||||
Konachan https://konachan.com/ Pools, Popular Images, Posts, Tag Searches
|
||||
LINE BLOG https://www.lineblog.me/ Blogs, Posts
|
||||
livedoor Blog http://blog.livedoor.jp/ Blogs, Posts
|
||||
Lolibooru https://lolibooru.moe/ Pools, Popular Images, Posts, Tag Searches
|
||||
Luscious https://members.luscious.net/ Albums, Search Results
|
||||
Manga Fox https://fanfox.net/ Chapters
|
||||
Manga Here https://www.mangahere.cc/ Chapters, Manga
|
||||
|
@ -108,7 +108,7 @@ class BcyUserExtractor(BcyExtractor):
|
||||
test = (
|
||||
("https://bcy.net/u/1933712", {
|
||||
"pattern": r"https://img-bcy-qn.pstatp.com/\w+/\d+/post/\w+/.+jpg",
|
||||
"count": ">= 25",
|
||||
"count": ">= 20",
|
||||
}),
|
||||
("https://bcy.net/u/109282764041", {
|
||||
"pattern": r"https://p\d-bcy.byteimg.com/img/banciyuan/[0-9a-f]+"
|
||||
|
@ -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.15.2-dev"
|
||||
__version__ = "1.15.2"
|
||||
|
@ -25,13 +25,14 @@ TRAVIS_SKIP = {
|
||||
"exhentai", "mangafox", "dynastyscans", "nijie", "instagram", "ngomik",
|
||||
"archivedmoe", "archiveofsins", "thebarchive", "fireden", "4plebs",
|
||||
"sankaku", "idolcomplex", "mangahere", "mangadex", "sankakucomplex",
|
||||
"warosu", "fuskator", "patreon", "komikcast",
|
||||
"warosu", "fuskator", "patreon", "komikcast", "twitter",
|
||||
}
|
||||
|
||||
# temporary issues, etc.
|
||||
BROKEN = {
|
||||
"imgbox",
|
||||
"imagevenue",
|
||||
"ngomik",
|
||||
"mangapanda",
|
||||
"photobucket",
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user