Update MadaraGenerator.kt (#6356)
* Update MadaraGenerator.kt added GalaxyDegenScans * Update MadaraGenerator.kt Added Sleepytranslations * Update MadaraGenerator.kt Updated Sleepy Translations name * Update MadaraGenerator.kt Added SocialWeebs to MadaraGenerator.kt Added Manga Too to MadaraGenerator.kt * Update Generator.kt added Mangazuki to Generator.kt for manga-reader-cms (MMRCMS) * Create Hyakuro.kt Updated Foolslide Mutisource to include - Hyakuro * Update FoolSlideGenerator.kt Updated to include Hyakuro * Update FoolSlideGenerator.kt Corrected missing quote
This commit is contained in:
parent
e2eb12b068
commit
75b78b2dfa
|
@ -0,0 +1,15 @@
|
|||
package eu.kanade.tachiyomi.extension.en.hyakuro
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.foolslide.FoolSlide
|
||||
import eu.kanade.tachiyomi.source.model.SManga
|
||||
import org.jsoup.nodes.Document
|
||||
|
||||
class Hyakuro : FoolSlide("Hyakuro", "https://hyakuro.com/reader/", "en") {
|
||||
override fun mangaDetailsParse(document: Document): SManga {
|
||||
return SManga.create().apply {
|
||||
description = document.select("$mangaDetailsInfoSelector li:has(b:contains(description))")
|
||||
.first()?.ownText()?.substringAfter(":")
|
||||
thumbnail_url = getDetailsThumbnail(document)
|
||||
}
|
||||
}
|
||||
}
|
|
@ -47,6 +47,7 @@ class FoolSlideGenerator : ThemeSourceGenerator {
|
|||
SingleLang("Tortuga Ceviri", "http://tortuga-ceviri.com", "tr"),
|
||||
SingleLang("Rama", "https://www.ramareader.it", "it"),
|
||||
SingleLang("Mabushimajo", "http://mabushimajo.com", "tr"),
|
||||
SingleLang("Hyakuro", "https://hyakuro.com/reader", "en"),
|
||||
)
|
||||
|
||||
companion object {
|
||||
|
|
|
@ -58,6 +58,7 @@ class MadaraGenerator : ThemeSourceGenerator {
|
|||
SingleLang("FreeWebtoonCoins", "https://freewebtooncoins.com", "en"),
|
||||
SingleLang("Furio Scans", "https://furioscans.com", "pt-BR"),
|
||||
SingleLang("موقع لترجمة المانجا", "https://golden-manga.com", "ar", className = "GoldenManga"),
|
||||
SingleLang("GalaxyDegenScans", "https://gdegenscans.xyz/", "en"),
|
||||
SingleLang("Graze Scans", "https://grazescans.com/", "en"),
|
||||
SingleLang("GuncelManga", "https://guncelmanga.com", "tr"),
|
||||
SingleLang("Hero Manhua", "https://heromanhua.com", "en"),
|
||||
|
@ -128,6 +129,7 @@ class MadaraGenerator : ThemeSourceGenerator {
|
|||
SingleLang("Mangasushi", "https://mangasushi.net", "en", overrideVersionCode = 1),
|
||||
SingleLang("Manga SY", "https://www.mangasy.com", "en"),
|
||||
SingleLang("MangaTeca", "https://www.mangateca.com", "pt-BR"),
|
||||
SingleLang("Manga Too", "https://mangatoo.com/", "en"),
|
||||
SingleLang("Manga Turf", "https://mangaturf.com", "en"),
|
||||
SingleLang("MangaTX", "https://mangatx.com", "en"),
|
||||
SingleLang("Mangauptocats", "https://mangauptocats.online", "th"),
|
||||
|
@ -203,6 +205,8 @@ class MadaraGenerator : ThemeSourceGenerator {
|
|||
SingleLang("SiXiang Scans", "http://www.sixiangscans.com", "en"),
|
||||
SingleLang("Siyahmelek", "https://siyahmelek.com", "tr", isNsfw = true, overrideVersionCode = 1),
|
||||
SingleLang("Skymanga", "https://skymanga.co", "en"),
|
||||
SingleLang("Sleepy Translations", "https://sleepytranslations.com/", "en"),
|
||||
SingleLang("SocialWeebs", "https://socialweebs.in/", "en"),
|
||||
SingleLang("SoloScanlation", "https://soloscanlation.site", "en"),
|
||||
SingleLang("Spooky Scanlations", "https://spookyscanlations.xyz", "es"),
|
||||
SingleLang("StageComics", "https://stagecomics.com", "pt-BR"),
|
||||
|
|
|
@ -258,6 +258,7 @@ class Generator {
|
|||
SourceData("fr", "Lelscan-VF", "https://lelscan-vf.co"),
|
||||
SourceData("id", "Komik Manga", "https://adm.komikmanga.com"),
|
||||
SourceData("ko", "Mangazuki Raws", "https://raws.mangazuki.co"),
|
||||
SourceData("en", "Mangazuki", "https://mangazuki.co/"),
|
||||
SourceData("pt-BR", "Remangas", "https://remangas.top"),
|
||||
SourceData("pt-BR", "AnimaRegia", "https://animaregia.net"),
|
||||
SourceData("tr", "MangaVadisi", "http://manga-v2.mangavadisi.org"),
|
||||
|
|
Loading…
Reference in New Issue