Remove MangaLivre (#6526)
This commit is contained in:
parent
d434d470f3
commit
a900c6cdfc
|
@ -1,10 +0,0 @@
|
||||||
ext {
|
|
||||||
extName = 'Manga Livre'
|
|
||||||
extClass = '.MangaLivre'
|
|
||||||
themePkg = 'etoshore'
|
|
||||||
baseUrl = 'https://mangalivre.one'
|
|
||||||
overrideVersionCode = 1
|
|
||||||
isNsfw = true
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Binary file not shown.
Before Width: | Height: | Size: 4.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 6.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 17 KiB |
|
@ -1,23 +0,0 @@
|
||||||
package eu.kanade.tachiyomi.extension.pt.mangalivre
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.etoshore.Etoshore
|
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
||||||
import okhttp3.Response
|
|
||||||
import org.jsoup.nodes.Element
|
|
||||||
|
|
||||||
class MangaLivre : Etoshore(
|
|
||||||
name = "Manga Livre",
|
|
||||||
baseUrl = "https://mangalivre.one",
|
|
||||||
lang = "pt-BR",
|
|
||||||
) {
|
|
||||||
override val versionId = 2
|
|
||||||
|
|
||||||
override val client = network.cloudflareClient.newBuilder()
|
|
||||||
.rateLimit(2)
|
|
||||||
.build()
|
|
||||||
|
|
||||||
override fun chapterListParse(response: Response) =
|
|
||||||
super.chapterListParse(response).reversed()
|
|
||||||
|
|
||||||
override fun imageFromElement(element: Element): String? = element.attr("abs:src")
|
|
||||||
}
|
|
Loading…
Reference in New Issue