Add "De Todo Un Poco Scan" (#2200)

add
This commit is contained in:
bapeey 2024-04-01 06:29:26 -05:00 committed by Draff
parent 49b3b90db3
commit 49ccd590b8
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'De Todo Un Poco Scan'
extClass = '.DtupScan'
themePkg = 'mangathemesia'
baseUrl = 'https://dtupscan.com'
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.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.es.dtupscan
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat
import java.util.Locale
class DtupScan : MangaThemesia(
"De Todo Un Poco Scan",
"https://dtupscan.com",
"es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build()
}