Add IrisScans (#2916)
This commit is contained in:
parent
c1e5450946
commit
6a329074e1
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Iris Scans'
|
||||
extClass = '.IrisScans'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://irisscans.xyz'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
|
@ -0,0 +1,15 @@
|
|||
package eu.kanade.tachiyomi.extension.en.irisscans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
|
||||
class IrisScans : MangaThemesia(
|
||||
"Iris Scans",
|
||||
"https://irisscans.xyz",
|
||||
"en",
|
||||
) {
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(4)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue