kaiscans -> luascans (unoriginal): update domain (#4455)

* kaiscans -> luascans (unoriginal): update domain

* oops
This commit is contained in:
AwkwardPeak7 2024-08-07 08:42:45 +05:00 committed by Draff
parent 271855037e
commit 5fca0cb71f
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 7 additions and 5 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'Kai Scans' extName = 'Lua Scans (Unoriginal)'
extClass = '.KaiScans' extClass = '.LuaScans'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://kaiscans.org' baseUrl = 'https://luacomic.com'
overrideVersionCode = 4 overrideVersionCode = 5
isNsfw = true isNsfw = true
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -3,8 +3,10 @@ package eu.kanade.tachiyomi.extension.en.kaiscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit import eu.kanade.tachiyomi.network.interceptor.rateLimit
class KaiScans : MangaThemesia("Kai Scans", "https://kaiscans.org", "en") { class LuaScans : MangaThemesia("Lua Scans (unoriginal)", "https://luacomic.com", "en") {
override val client = super.client.newBuilder() override val client = super.client.newBuilder()
.rateLimit(2) .rateLimit(2)
.build() .build()
override val id = 4825368993215448425
} }