Add IchiroManga (#4992)
This commit is contained in:
parent
1883e7a889
commit
4559cdf121
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'IchiroManga'
|
||||
extClass = '.IchiroManga'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://ichiromanga.my.id'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
|
@ -0,0 +1,14 @@
|
|||
package eu.kanade.tachiyomi.extension.id.ichiromanga
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
|
||||
class IchiroManga : MangaThemesia("IchiroManga", "https://ichiromanga.my.id", "id") {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(4)
|
||||
.build()
|
||||
|
||||
override val hasProjectPage = false
|
||||
}
|
Loading…
Reference in New Issue