Add AnisaScans (#5068)

This commit is contained in:
Chopper 2024-09-15 04:31:25 -03:00 committed by Draff
parent e74443b530
commit 8c426ce4fb
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Anisa Scans'
extClass = '.AnisaScans'
themePkg = 'madara'
baseUrl = 'https://anisascans.in'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.anisascans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class AnisaScans : Madara(
"Anisa Scans",
"https://anisascans.in",
"en",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}