parent
af89f42251
commit
14cff0d651
@ -1 +1 @@
|
||||
total: 1239
|
||||
total: 1240
|
||||
@ -0,0 +1,28 @@
|
||||
package org.koitharu.kotatsu.parsers.site.mangareader.en
|
||||
|
||||
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||
import org.koitharu.kotatsu.parsers.model.MangaListFilterCapabilities
|
||||
import org.koitharu.kotatsu.parsers.model.MangaParserSource
|
||||
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser
|
||||
import java.util.Locale
|
||||
|
||||
@MangaSourceParser("ROKARICOMICS", "Rokari Comics", "en")
|
||||
internal class RokariComics(context: MangaLoaderContext) :
|
||||
MangaReaderParser(
|
||||
context = context,
|
||||
source = MangaParserSource.ROKARICOMICS,
|
||||
domain = "rokaricomics.com",
|
||||
pageSize = 20,
|
||||
searchPageSize = 10,
|
||||
) {
|
||||
|
||||
override val sourceLocale: Locale = Locale.ENGLISH
|
||||
override val selectChapter = "#chapterlist > ul > li:has(a[href])"
|
||||
|
||||
override val filterCapabilities: MangaListFilterCapabilities
|
||||
get() = super.filterCapabilities.copy(
|
||||
isTagsExclusionSupported = false,
|
||||
)
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue