parent
1bd2f6cd65
commit
bf3e698542
|
@ -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 |
|
@ -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()
|
||||
}
|
Loading…
Reference in New Issue