Add MoonWitchScan (#6009)
This commit is contained in:
parent
f841e5de70
commit
c70d6a710b
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Moon Witch Scan'
|
||||
extClass = '.MoonWitchScan'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://moonwitchscan.com.br'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
|
@ -0,0 +1,21 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.moonwitchscan
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class MoonWitchScan : Madara(
|
||||
"Moon Witch Scan",
|
||||
"https://moonwitchscan.com.br",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
Loading…
Reference in New Issue