Add CatharsisWorld (#5308)
This commit is contained in:
parent
9fe318655e
commit
d74fec37c2
|
@ -0,0 +1,10 @@
|
|||
ext {
|
||||
extName = 'Catharsis World'
|
||||
extClass = '.CatharsisWorld'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://catharsisworld.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
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.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
|
@ -0,0 +1,14 @@
|
|||
package eu.kanade.tachiyomi.extension.es.catharsisworld
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
|
||||
class CatharsisWorld : MangaThemesia(
|
||||
"Catharsis World",
|
||||
"https://catharsisworld.com",
|
||||
"es",
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue