Remove MangaLivre (#6526)

This commit is contained in:
Chopper 2024-12-09 09:59:30 -03:00 committed by Draff
parent d434d470f3
commit a900c6cdfc
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 33 deletions

View File

@ -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

View File

@ -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")
}