Add LichSubs (#5586)
This commit is contained in:
parent
d2d69b3dcf
commit
033f5cb3e6
|
@ -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 |
|
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue