Add CatManhwas (#7416)

* add catmanhwas

* add nsfw
This commit is contained in:
bapeey 2025-02-01 07:43:16 -05:00 committed by Draff
parent 1bd2f6cd65
commit bf3e698542
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 = 'CatManhwas'
extClass = '.CatManhwas'
themePkg = 'madara'
baseUrl = 'https://catmanhwas.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.es.catmanhwas
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
class CatManhwas : Madara(
"CatManhwas",
"https://catmanhwas.com",
"es",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("es")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(3, 1)
.build()
}