parent
9feb6a165e
commit
cbc2e8fa18
|
@ -53,4 +53,3 @@ class YugenMangasBr : YugenMangas(
|
||||||
|
|
||||||
override val useNewChapterEndpoint: Boolean = true
|
override val useNewChapterEndpoint: Boolean = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
|
@ -0,0 +1,18 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.id.komiksay
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.lib.ratelimit.RateLimitInterceptor
|
||||||
|
import eu.kanade.tachiyomi.multisrc.wpmangastream.WPMangaStream
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
|
class Komiksay : WPMangaStream("Komiksay", "https://komiksay.com", "id") {
|
||||||
|
private val rateLimitInterceptor = RateLimitInterceptor(4)
|
||||||
|
|
||||||
|
override val client: OkHttpClient = network.cloudflareClient.newBuilder()
|
||||||
|
.connectTimeout(10, TimeUnit.SECONDS)
|
||||||
|
.readTimeout(30, TimeUnit.SECONDS)
|
||||||
|
.addNetworkInterceptor(rateLimitInterceptor)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val hasProjectPage = true
|
||||||
|
}
|
|
@ -55,6 +55,7 @@ class WPMangaStreamGenerator : ThemeSourceGenerator {
|
||||||
SingleLang("Omega Scans", "https://omegascans.org", "en", isNsfw = true),
|
SingleLang("Omega Scans", "https://omegascans.org", "en", isNsfw = true),
|
||||||
SingleLang("Geass Hentai", "https://geassscan.xyz", "pt-BR", isNsfw = true, overrideVersionCode = 2),
|
SingleLang("Geass Hentai", "https://geassscan.xyz", "pt-BR", isNsfw = true, overrideVersionCode = 2),
|
||||||
SingleLang("TukangKomik", "https://tukangkomik.com", "id"),
|
SingleLang("TukangKomik", "https://tukangkomik.com", "id"),
|
||||||
|
SingleLang("Komiksay", "https://komiksay.com", "id"),
|
||||||
)
|
)
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
|
Loading…
Reference in New Issue