Remove Aisha (#8682)
This commit is contained in:
parent
302ac4b0cb
commit
fd023a8000
@ -1,10 +0,0 @@
|
||||
ext {
|
||||
extName = 'Aisha'
|
||||
extClass = '.Aisha'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://aisha.manhuaen.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
Binary file not shown.
Before Width: | Height: | Size: 40 KiB |
Binary file not shown.
Before Width: | Height: | Size: 71 KiB |
@ -1,38 +0,0 @@
|
||||
package eu.kanade.tachiyomi.extension.en.aisha
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.source.model.FilterList
|
||||
import eu.kanade.tachiyomi.source.model.MangasPage
|
||||
import eu.kanade.tachiyomi.source.model.SManga
|
||||
import rx.Observable
|
||||
|
||||
class Aisha : Madara(
|
||||
"Aisha",
|
||||
"https://aisha.manhuaen.com",
|
||||
"en",
|
||||
) {
|
||||
override val supportsLatest = false
|
||||
override val useNewChapterEndpoint = true
|
||||
|
||||
override fun fetchSearchManga(
|
||||
page: Int,
|
||||
query: String,
|
||||
filters: FilterList,
|
||||
): Observable<MangasPage> {
|
||||
return fetchPopularManga(page)
|
||||
}
|
||||
|
||||
override fun fetchPopularManga(page: Int): Observable<MangasPage> {
|
||||
val manga = SManga.create().apply {
|
||||
setUrlWithoutDomain("$baseUrl/manhua/aisha/")
|
||||
title = "Aisha"
|
||||
thumbnail_url = "$baseUrl/wp-content/uploads/2022/10/cover.jpg.webp"
|
||||
}
|
||||
|
||||
return Observable.just(MangasPage(listOf(manga), false))
|
||||
}
|
||||
|
||||
override fun getFilterList(): FilterList {
|
||||
return FilterList()
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user