Add L Scans (#2772)

* Add L Scans

* isNsfw = false

* lint
This commit is contained in:
Vetle Ledaal 2024-05-03 10:33:25 +00:00 committed by Draff
parent 158402d0db
commit 01e2f9db9f
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.lscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class LScans : Madara(
"L Scans",
"https://lscans.com",
"pt-BR",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}