mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 02:41:39 +00:00
Merge branch 'main' into novel/annasarchive
This commit is contained in:
@@ -7,7 +7,7 @@ const mangayomiSources = [{
|
||||
"typeSource": "single",
|
||||
"itemType": 1,
|
||||
"isNsfw": false,
|
||||
"version": "0.3.7",
|
||||
"version": "0.3.8",
|
||||
"dateFormat": "",
|
||||
"dateFormatLocale": "",
|
||||
"pkgPath": "anime/src/de/aniworld.js"
|
||||
@@ -122,7 +122,11 @@ class DefaultExtension extends MProvider {
|
||||
.filter(e => e.outerHtml.includes("Produzent:"));
|
||||
let author = "";
|
||||
if (produzent.length > 0) {
|
||||
author = produzent[0].select("li").map(e => e.text).join(", ");
|
||||
author = produzent[0]
|
||||
.select("li")
|
||||
.map((e) => e.text)
|
||||
.filter((text) => !/^\s\&\s\d+\sweitere$/.test(text))
|
||||
.join(", ");
|
||||
}
|
||||
const seasonsElements = document.select("#stream > ul:nth-child(1) > li > a");
|
||||
// Use asyncPool to limit concurrency while processing seasons
|
||||
|
||||
@@ -7,7 +7,7 @@ const mangayomiSources = [{
|
||||
"typeSource": "single",
|
||||
"itemType": 1,
|
||||
"isNsfw": false,
|
||||
"version": "0.0.8",
|
||||
"version": "0.0.9",
|
||||
"dateFormat": "",
|
||||
"dateFormatLocale": "",
|
||||
"pkgPath": "anime/src/de/serienstream.js"
|
||||
@@ -122,7 +122,11 @@ class DefaultExtension extends MProvider {
|
||||
.filter(e => e.outerHtml.includes("Produzent:"));
|
||||
let author = "";
|
||||
if (produzent.length > 0) {
|
||||
author = produzent[0].select("li").map(e => e.text).join(", ");
|
||||
author = produzent[0]
|
||||
.select("li")
|
||||
.map((e) => e.text)
|
||||
.filter((text) => !/^\s\&\s\d+\sweitere$/.test(text))
|
||||
.join(", ");
|
||||
}
|
||||
const seasonsElements = document.select("#stream > ul:nth-child(1) > li > a");
|
||||
// Use asyncPool to limit concurrency while processing seasons
|
||||
|
||||
Reference in New Issue
Block a user