Add KomikPix (#3284)
This commit is contained in:
parent
17e79b4b79
commit
1e85171288
10
src/id/komikpix/build.gradle
Normal file
10
src/id/komikpix/build.gradle
Normal 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"
|
BIN
src/id/komikpix/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/id/komikpix/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
src/id/komikpix/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/id/komikpix/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
BIN
src/id/komikpix/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/id/komikpix/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
BIN
src/id/komikpix/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/id/komikpix/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
BIN
src/id/komikpix/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/id/komikpix/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
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…
x
Reference in New Issue
Block a user