Initial commit

This commit is contained in:
FourTOne5
2024-01-09 04:12:39 +06:00
commit 600c345dfe
8593 changed files with 150590 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

View File

@@ -0,0 +1,25 @@
package eu.kanade.tachiyomi.extension.en.readallcomicscom
import eu.kanade.tachiyomi.multisrc.readallcomics.ReadAllComics
import eu.kanade.tachiyomi.source.model.SManga
import org.jsoup.nodes.Element
class ReadAllComicsCom : ReadAllComics("ReadAllComics", "https://readallcomics.com", "en") {
override fun nullablePopularManga(element: Element): SManga? {
return super.nullablePopularManga(element)?.apply {
title = title.let {
titleRegex.find(it)?.value?.trim()
?.removeSuffix("v")?.trim()
?.substringBeforeLast("vol")
?: it
}
}
}
override fun pageListSelector() = "body img:not(body div[id=\"logo\"] img)"
companion object {
private val titleRegex = Regex("""^([a-zA-Z_.\s\-:]*)""")
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

View File

@@ -0,0 +1,23 @@
package eu.kanade.tachiyomi.extension.en.readallmanga
import eu.kanade.tachiyomi.multisrc.readallcomics.ReadAllComics
import eu.kanade.tachiyomi.source.model.SManga
import org.jsoup.nodes.Document
class ReadAllManga : ReadAllComics("ReadAllManga", "https://readallmanga.com", "en") {
override fun searchType() = "manga"
override fun popularMangaTitleSelector() = "div > center"
override fun mangaDetailsParse(document: Document): SManga {
return super.mangaDetailsParse(document).apply {
genre = document.select(mangaDetailsGenreSelector()).text()
.split("").joinToString { it.trim() }
}
}
override fun mangaDetailsDescriptionSelector() = ".b > span"
override fun mangaDetailsGenreSelector() = ".b > p > strong:nth-child(8)"
override fun mangaDetailsAuthorSelector() = ".b > p > strong:nth-child(5)"
}