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 {
|
||||
|
10
src/ru/mangazavr/build.gradle
Normal file
10
src/ru/mangazavr/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Mangazavr'
|
||||
extClass = '.Mangazavr'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://mangazavr.ru'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/ru/mangazavr/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/ru/mangazavr/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
BIN
src/ru/mangazavr/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/ru/mangazavr/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
BIN
src/ru/mangazavr/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/ru/mangazavr/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
src/ru/mangazavr/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/ru/mangazavr/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
src/ru/mangazavr/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/ru/mangazavr/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
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…
x
Reference in New Issue
Block a user