Re-add InariPikav (#4656)

Readd
This commit is contained in:
bapeey 2024-08-17 00:50:14 -05:00 committed by Draff
parent 0dc7a9817b
commit dc6189f4c2
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'InariPikav'
extClass = '.InariPikav'
themePkg = 'mangathemesia'
baseUrl = 'https://inaripikav.org'
overrideVersionCode = 11
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,20 @@
package eu.kanade.tachiyomi.extension.es.inarimanga
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat
import java.util.Locale
class InariPikav : MangaThemesia(
"Inari Pikav",
"https://inaripikav.org",
"es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override val id = 7949577653918285764
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build()
}