Add KomikPix (#3284)

This commit is contained in:
Chopper 2024-05-29 01:57:39 -03:00 committed by Draff
parent 17e79b4b79
commit 1e85171288
7 changed files with 29 additions and 0 deletions

View File

@ -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

View File

@ -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()
}