mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
Add Euphoria Scan (#3101)
This commit is contained in:
parent
e5343785b9
commit
d4e189e0e9
10
src/pt/euphoriascan/build.gradle
Normal file
10
src/pt/euphoriascan/build.gradle
Normal 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"
|
BIN
src/pt/euphoriascan/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/euphoriascan/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
BIN
src/pt/euphoriascan/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/euphoriascan/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
src/pt/euphoriascan/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/euphoriascan/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
src/pt/euphoriascan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/euphoriascan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
BIN
src/pt/euphoriascan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/euphoriascan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
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
Block a user