Add spectral ()

This commit is contained in:
Hellkaros 2025-01-28 08:38:51 -03:00 committed by Draff
parent e6753d4ea5
commit 9a6a106b38
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions
src/pt/spectralscan
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/pt/spectralscan

@ -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

(image error) Size: 8.6 KiB

Binary file not shown.

After

(image error) Size: 4.3 KiB

Binary file not shown.

After

(image error) Size: 14 KiB

Binary file not shown.

After

(image error) Size: 27 KiB

Binary file not shown.

After

(image error) 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"
}