Add BRMangasTop (#5499)
This commit is contained in:
parent
a248121b04
commit
1cfbe474eb
|
@ -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 |
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue