Add LerMangas (#2068)

This commit is contained in:
Chopper 2024-03-24 01:23:05 -03:00 committed by Draff
parent d2fec71228
commit 217846f693
7 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Ler Mangas'
extClass = '.LerMangas'
themePkg = 'madara'
baseUrl = 'https://lermangas.me'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

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.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,19 @@
package eu.kanade.tachiyomi.extension.pt.lermangas
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class LerMangas : Madara(
"Ler Mangas",
"https://lermangas.me",
"pt-BR",
SimpleDateFormat("dd 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
}