Remove Qixi Manhua (stubbed) (#15840)
This commit is contained in:
parent
a2633d97fd
commit
4324e315b3
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="eu.kanade.tachiyomi.extension" />
|
|
@ -1,12 +0,0 @@
|
|||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-android'
|
||||
apply plugin: 'kotlinx-serialization'
|
||||
|
||||
ext {
|
||||
extName = 'QiXiManhua (Deprecated)'
|
||||
pkgNameSuffix = 'zh.qiximh'
|
||||
extClass = '.QixiStub'
|
||||
extVersionCode = 6
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 8.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 13 KiB |
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
Binary file not shown.
Before Width: | Height: | Size: 26 KiB |
Binary file not shown.
Before Width: | Height: | Size: 99 KiB |
|
@ -1,33 +0,0 @@
|
|||
package eu.kanade.tachiyomi.extension.zh.qiximh
|
||||
|
||||
import eu.kanade.tachiyomi.source.model.FilterList
|
||||
import eu.kanade.tachiyomi.source.model.SChapter
|
||||
import eu.kanade.tachiyomi.source.model.SManga
|
||||
import eu.kanade.tachiyomi.source.online.HttpSource
|
||||
import okhttp3.Response
|
||||
|
||||
class QixiStub : HttpSource() {
|
||||
|
||||
private val migratePrompt = Exception("请迁移到“6漫画”插件,可以在该插件的设置中修改镜像站点")
|
||||
|
||||
override val id get() = 418374491144859437
|
||||
override val name get() = "七夕漫画 (废弃,请使用6漫画)"
|
||||
override val lang get() = "zh"
|
||||
override val supportsLatest get() = false
|
||||
|
||||
override val baseUrl get() = ""
|
||||
|
||||
override fun popularMangaRequest(page: Int) = throw migratePrompt
|
||||
override fun popularMangaParse(response: Response) = throw migratePrompt
|
||||
override fun latestUpdatesRequest(page: Int) = throw migratePrompt
|
||||
override fun latestUpdatesParse(response: Response) = throw migratePrompt
|
||||
override fun searchMangaRequest(page: Int, query: String, filters: FilterList) = throw migratePrompt
|
||||
override fun searchMangaParse(response: Response) = throw migratePrompt
|
||||
override fun mangaDetailsRequest(manga: SManga) = throw migratePrompt
|
||||
override fun mangaDetailsParse(response: Response) = throw migratePrompt
|
||||
override fun chapterListRequest(manga: SManga) = throw migratePrompt
|
||||
override fun chapterListParse(response: Response) = throw migratePrompt
|
||||
override fun pageListRequest(chapter: SChapter) = throw migratePrompt
|
||||
override fun pageListParse(response: Response) = throw migratePrompt
|
||||
override fun imageUrlParse(response: Response) = throw migratePrompt
|
||||
}
|
Loading…
Reference in New Issue