Add Mangazavr (#2782)
This commit is contained in:
parent
bd8979d4b8
commit
f436ebf6ab
|
@ -613,6 +613,7 @@ abstract class Madara(
|
|||
"已完结",
|
||||
"Tamamlandı",
|
||||
"Đã hoàn thành",
|
||||
"Завершено",
|
||||
)
|
||||
|
||||
protected val ongoingStatusList: Array<String> = arrayOf(
|
||||
|
@ -632,6 +633,7 @@ abstract class Madara(
|
|||
"Đang chờ",
|
||||
"متوقف",
|
||||
"En Pause",
|
||||
"Заморожено",
|
||||
)
|
||||
|
||||
protected val canceledStatusList: Array<String> = arrayOf(
|
||||
|
@ -642,6 +644,7 @@ abstract class Madara(
|
|||
"Đã hủy",
|
||||
"ملغي",
|
||||
"Abandonné",
|
||||
"Заброшено",
|
||||
)
|
||||
|
||||
override fun mangaDetailsParse(document: Document): SManga {
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
ext {
|
||||
extName = 'Mangazavr'
|
||||
extClass = '.Mangazavr'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://mangazavr.ru'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
|
@ -0,0 +1,17 @@
|
|||
package eu.kanade.tachiyomi.extension.ru.mangazavr
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class Mangazavr : Madara(
|
||||
"Mangazavr",
|
||||
"https://mangazavr.ru",
|
||||
"ru",
|
||||
dateFormat = SimpleDateFormat("dd.MM.yyyy", Locale.ROOT),
|
||||
) {
|
||||
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Статус) + div.summary-content"
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Always
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
Loading…
Reference in New Issue