Add IzanamiScans (#6040)
This commit is contained in:
parent
3784abee0c
commit
51c238bb6e
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Izanami Scans'
|
||||
extClass = '.IzanamiScans'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://izanamiscans.my.id'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.7 KiB |
|
@ -0,0 +1,20 @@
|
|||
package eu.kanade.tachiyomi.extension.id.izanamiscans
|
||||
|
||||
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 IzanamiScans : MangaThemesia(
|
||||
"Izanami Scans",
|
||||
"https://izanamiscans.my.id",
|
||||
"id",
|
||||
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id")),
|
||||
) {
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val seriesAuthorSelector = ".fmed b:contains(Penulis) + span"
|
||||
}
|
Loading…
Reference in New Issue