Add LadyEstelarScan (#1694)

This commit is contained in:
Chopper 2024-03-04 07:41:55 -03:00 committed by Draff
parent e78bd29133
commit b68bc4cfd0
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Lady Estelar Scan'
extClass = '.LadyEstelarScan'
themePkg = 'madara'
baseUrl = 'https://ladyestelarscan.com.br'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.ladyestelarscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class LadyEstelarScan : Madara(
"Lady Estelar Scan",
"https://ladyestelarscan.com.br",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
}