have e-hentai and exhentai on supportedsites.rst (#365)
This commit is contained in:
parent
3957d27d79
commit
f687052daf
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
## 1.10.1 - 2019-08-02
|
## 1.10.1 - 2019-08-02
|
||||||
## Fixes
|
## Fixes
|
||||||
- Restore functionality of both domains for `exhentai` extractors
|
- Use the correct domain for exhentai.org input URLs
|
||||||
|
|
||||||
## 1.10.0 - 2019-08-01
|
## 1.10.0 - 2019-08-01
|
||||||
### Warning
|
### Warning
|
||||||
|
@ -28,6 +28,7 @@ Dynasty Reader https://dynasty-scans.com/ Chapters, individual Im
|
|||||||
E-Hentai https://e-hentai.org/ Favorites, Galleries, Search Results Optional
|
E-Hentai https://e-hentai.org/ Favorites, Galleries, Search Results Optional
|
||||||
e621 https://e621.net/ Pools, Popular Images, Posts, Tag-Searches
|
e621 https://e621.net/ Pools, Popular Images, Posts, Tag-Searches
|
||||||
EroLord.com http://erolord.com/ Galleries
|
EroLord.com http://erolord.com/ Galleries
|
||||||
|
ExHentai https://exhentai.org/ Favorites, Galleries, Search Results Optional
|
||||||
Fallen Angels Scans https://www.fascans.com/ Chapters, Manga
|
Fallen Angels Scans https://www.fascans.com/ Chapters, Manga
|
||||||
Fashion Nova https://www.fashionnova.com/ Collections, Products
|
Fashion Nova https://www.fashionnova.com/ Collections, Products
|
||||||
Fireden https://boards.fireden.net/ Threads
|
Fireden https://boards.fireden.net/ Threads
|
||||||
|
@ -24,7 +24,8 @@ CATEGORY_MAP = {
|
|||||||
"dynastyscans" : "Dynasty Reader",
|
"dynastyscans" : "Dynasty Reader",
|
||||||
"e621" : "e621",
|
"e621" : "e621",
|
||||||
"erolord" : "EroLord.com",
|
"erolord" : "EroLord.com",
|
||||||
"exhentai" : "E-Hentai",
|
"e-hentai" : "E-Hentai",
|
||||||
|
"exhentai" : "ExHentai",
|
||||||
"fallenangels" : "Fallen Angels Scans",
|
"fallenangels" : "Fallen Angels Scans",
|
||||||
"fashionnova" : "Fashion Nova",
|
"fashionnova" : "Fashion Nova",
|
||||||
"hbrowse" : "HBrowse",
|
"hbrowse" : "HBrowse",
|
||||||
@ -109,6 +110,7 @@ SUBCATEGORY_MAP = {
|
|||||||
AUTH_MAP = {
|
AUTH_MAP = {
|
||||||
"danbooru" : "Optional",
|
"danbooru" : "Optional",
|
||||||
"deviantart" : "Optional (OAuth)",
|
"deviantart" : "Optional (OAuth)",
|
||||||
|
"e-hentai" : "Optional",
|
||||||
"exhentai" : "Optional",
|
"exhentai" : "Optional",
|
||||||
"flickr" : "Optional (OAuth)",
|
"flickr" : "Optional (OAuth)",
|
||||||
"idolcomplex": "Optional",
|
"idolcomplex": "Optional",
|
||||||
@ -203,6 +205,15 @@ def build_extractor_list():
|
|||||||
for extrlist in extractors.values():
|
for extrlist in extractors.values():
|
||||||
extrlist.sort(key=subcategory_key)
|
extrlist.sort(key=subcategory_key)
|
||||||
|
|
||||||
|
# ugly hack to add e-hentai.org
|
||||||
|
eh = []
|
||||||
|
for extr in extractors["exhentai"]:
|
||||||
|
class eh_extr(extr):
|
||||||
|
category = "e-hentai"
|
||||||
|
root = "https://e-hentai.org"
|
||||||
|
eh.append(eh_extr)
|
||||||
|
extractors["e-hentai"] = eh
|
||||||
|
|
||||||
# sort lists by category
|
# sort lists by category
|
||||||
return sorted(
|
return sorted(
|
||||||
extractors.values(),
|
extractors.values(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user