Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
BIN
multisrc/overrides/foolslide/hniscantrad/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/foolslide/hniscantrad/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 426 KiB |
@@ -0,0 +1,19 @@
|
||||
package eu.kanade.tachiyomi.extension.all.hniscantrad
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.foolslide.FoolSlide
|
||||
import eu.kanade.tachiyomi.source.SourceFactory
|
||||
import okhttp3.Response
|
||||
|
||||
class HNIScantradFactory : SourceFactory {
|
||||
override fun createSources() = listOf(HNIScantradFR(), HNIScantradEN())
|
||||
}
|
||||
|
||||
class HNIScantradFR : FoolSlide("HNI-Scantrad", "https://hni-scantrad.com", "fr", "/lel") {
|
||||
override fun chapterListParse(response: Response) =
|
||||
super.chapterListParse(response).filter { "/fr/" in it.url }
|
||||
}
|
||||
|
||||
class HNIScantradEN : FoolSlide("HNI-Scantrad", "https://hni-scantrad.com", "en", "/lel") {
|
||||
override fun chapterListParse(response: Response) =
|
||||
super.chapterListParse(response).filter { "/en-us/" in it.url }
|
||||
}
|
||||
Reference in New Issue
Block a user