Add GekkouScans (#7678)
This commit is contained in:
parent
165c752b5b
commit
3a3cdded16
|
@ -0,0 +1,9 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Gekkou Scans'
|
||||||
|
extClass = '.GekkouScans'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://gekkou.space'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.pt.gekkouscans
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class GekkouScans : Madara(
|
||||||
|
"Gekkou Scans",
|
||||||
|
"https://gekkou.space",
|
||||||
|
"pt-BR",
|
||||||
|
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||||
|
}
|
Loading…
Reference in New Issue