Add LuaScans (#2734)
This commit is contained in:
parent
31cca03e4e
commit
02a6fb32ba
|
@ -0,0 +1,9 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Lua Scans'
|
||||||
|
extClass = '.LuaScans'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://luascans.com'
|
||||||
|
overrideVersionCode = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,15 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.en.luascans
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
|
||||||
|
class LuaScans : MangaThemesia(
|
||||||
|
"Lua Scans",
|
||||||
|
"https://luascans.com",
|
||||||
|
"en",
|
||||||
|
) {
|
||||||
|
override val client: OkHttpClient = super.client.newBuilder()
|
||||||
|
.rateLimit(4)
|
||||||
|
.build()
|
||||||
|
}
|
Loading…
Reference in New Issue