Add BRMangasTop (#5499)

This commit is contained in:
Chopper 2024-10-12 22:52:30 -03:00 committed by GitHub
parent 028a92ff55
commit 78ada59c69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'BR Mangás'
extClass = '.BRMangasTop'
themePkg = 'madara'
baseUrl = 'https://brmangas.top'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,19 @@
package eu.kanade.tachiyomi.extension.pt.brmangastop
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class BRMangasTop : Madara(
"BR Mangás",
"https://brmangas.top",
"pt-BR",
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never
}