Add Euphoria Scan (#3101)
This commit is contained in:
parent
e0bffdb80c
commit
fb6ae7f7c0
|
@ -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 |
|
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue