Add LuaScans (#2734)

This commit is contained in:
Chopper 2024-05-01 22:06:13 -03:00 committed by Draff
parent 31cca03e4e
commit 02a6fb32ba
7 changed files with 24 additions and 0 deletions

View File

@ -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

View File

@ -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()
}