Add LichSubs (#5586)

This commit is contained in:
Chopper 2024-10-19 09:45:11 -03:00 committed by Draff
parent d2d69b3dcf
commit 033f5cb3e6
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Lich Subs'
extClass = '.LichSubs'
themePkg = 'madara'
baseUrl = 'https://lichsubs.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.tr.lichsubs
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class LichSubs : Madara(
"Lich Subs",
"https://lichsubs.com",
"tr",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("tr")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}