Add spectral (#7367)
This commit is contained in:
parent
e6753d4ea5
commit
9a6a106b38
|
@ -0,0 +1,10 @@
|
|||
ext {
|
||||
extName = 'Spectral Scan'
|
||||
extClass = '.SpectralScan'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://spectralscan.xyz'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
|
@ -0,0 +1,16 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.spectralscan
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class SpectralScan : Madara(
|
||||
"Spectral Scan",
|
||||
"https://spectralscan.xyz",
|
||||
"pt-BR",
|
||||
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
override val useNewChapterEndpoint = true
|
||||
override val mangaDetailsSelectorStatus = "div.post-content_item:contains(Estado) > div.summary-content"
|
||||
}
|
Loading…
Reference in New Issue