Add Euphoria Scan (#3101)

This commit is contained in:
Vetle Ledaal 2024-05-18 14:54:31 +00:00 committed by GitHub
parent e5343785b9
commit d4e189e0e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Euphoria Scan'
extClass = '.EuphoriaScan'
themePkg = 'madara'
baseUrl = 'https://euphoriascan.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.pt.euphoriascan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class EuphoriaScan : Madara(
"Euphoria Scan",
"https://euphoriascan.com",
"pt-BR",
dateFormat = SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("pt", "BR")),
) {
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}