Remove Qixi Manhua (stubbed) (#15840)

This commit is contained in:
stevenyomi 2023-03-26 00:35:53 +08:00 committed by GitHub
parent a2633d97fd
commit 4324e315b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 0 additions and 47 deletions

View File

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="eu.kanade.tachiyomi.extension" />

View File

@ -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

View File

@ -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
}