Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
BIN
multisrc/overrides/mangathemesia/komikav/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/mangathemesia/komikav/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 117 KiB |
30
multisrc/overrides/mangathemesia/komikav/src/KomikAV.kt
Normal file
30
multisrc/overrides/mangathemesia/komikav/src/KomikAV.kt
Normal file
@@ -0,0 +1,30 @@
|
||||
package eu.kanade.tachiyomi.extension.id.komikav
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import eu.kanade.tachiyomi.source.model.Page
|
||||
import okhttp3.OkHttpClient
|
||||
import okhttp3.Request
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class KomikAV : MangaThemesia(
|
||||
"Komik AV (WP Manga Stream)",
|
||||
"https://komikav.com",
|
||||
"id",
|
||||
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.forLanguageTag("id")),
|
||||
) {
|
||||
// Formerly "Komik AV (WP Manga Stream)"
|
||||
override val id = 7875815514004535629
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(4)
|
||||
.build()
|
||||
|
||||
override fun imageRequest(page: Page): Request {
|
||||
return GET(page.imageUrl!!, headers)
|
||||
}
|
||||
|
||||
override val hasProjectPage = true
|
||||
}
|
||||
Reference in New Issue
Block a user