Add KomikPix (#3284)
This commit is contained in:
parent
17e79b4b79
commit
1e85171288
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Komik Pix'
|
||||||
|
extClass = '.KomikPix'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://komikpix.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,19 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.id.komikpix
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class KomikPix : MangaThemesia(
|
||||||
|
"Komik Pix",
|
||||||
|
"https://komikpix.com",
|
||||||
|
"id",
|
||||||
|
"/hentai",
|
||||||
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id")),
|
||||||
|
) {
|
||||||
|
override val client: OkHttpClient = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
}
|
Loading…
Reference in New Issue