Add GekkouScans (#7678)

This commit is contained in:
Chopper 2025-02-17 09:25:32 -03:00 committed by Draff
parent 165c752b5b
commit 3a3cdded16
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 30 additions and 0 deletions

View File

@ -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

View File

@ -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
}