2021-02-15 15:43:14 +00:00
|
|
|
package eu.kanade.tachiyomi.extension.id.sheamanga
|
|
|
|
|
2022-08-16 11:24:35 +00:00
|
|
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
2022-06-05 21:51:18 +00:00
|
|
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
2022-02-27 14:46:25 +00:00
|
|
|
import okhttp3.Dns
|
2021-08-22 15:29:08 +00:00
|
|
|
import okhttp3.OkHttpClient
|
2021-02-15 15:43:14 +00:00
|
|
|
import java.text.SimpleDateFormat
|
|
|
|
import java.util.Locale
|
|
|
|
|
2022-08-16 11:24:35 +00:00
|
|
|
class SheaManga : MangaThemesia(
|
2021-02-15 15:43:14 +00:00
|
|
|
"Shea Manga",
|
2022-06-17 01:59:50 +00:00
|
|
|
"https://sheakomik.com",
|
2021-02-15 15:43:14 +00:00
|
|
|
"id",
|
2023-02-11 19:21:03 +00:00
|
|
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.forLanguageTag("id")),
|
2021-02-15 15:43:14 +00:00
|
|
|
) {
|
|
|
|
|
2023-07-15 22:52:35 +00:00
|
|
|
override val client: OkHttpClient = super.client.newBuilder()
|
2022-06-05 21:51:18 +00:00
|
|
|
.rateLimit(4)
|
2022-02-27 14:46:25 +00:00
|
|
|
.dns(Dns.SYSTEM)
|
2021-02-15 15:43:14 +00:00
|
|
|
.build()
|
|
|
|
|
2021-06-08 21:51:36 +00:00
|
|
|
override val hasProjectPage = true
|
2021-02-15 15:43:14 +00:00
|
|
|
}
|