|
|
|
@ -2,16 +2,9 @@ package org.koitharu.kotatsu.parsers.site.mangareader.en
|
|
|
|
|
|
|
|
|
|
|
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
|
|
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
|
|
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
|
|
|
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.model.MangaParserSource
|
|
|
|
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser
|
|
|
|
import org.koitharu.kotatsu.parsers.site.mangareader.MangaReaderParser
|
|
|
|
|
|
|
|
|
|
|
|
@MangaSourceParser("VOIDSCANS", "HiveToon", "en")
|
|
|
|
@MangaSourceParser("VOIDSCANS", "HiveToon", "en")
|
|
|
|
internal class VoidScans(context: MangaLoaderContext) :
|
|
|
|
internal class VoidScans(context: MangaLoaderContext) :
|
|
|
|
MangaReaderParser(context, MangaParserSource.VOIDSCANS, "hivetoon.com", pageSize = 150, searchPageSize = 150) {
|
|
|
|
MangaReaderParser(context, MangaParserSource.VOIDSCANS, "hivetoon.net", pageSize = 15, searchPageSize = 10)
|
|
|
|
override val datePattern = "MMM d, yyyy"
|
|
|
|
|
|
|
|
override val filterCapabilities: MangaListFilterCapabilities
|
|
|
|
|
|
|
|
get() = super.filterCapabilities.copy(
|
|
|
|
|
|
|
|
isTagsExclusionSupported = false,
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|