mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 02:12:42 +01:00
Remove TempestFansub (#6024)
This commit is contained in:
parent
eabcd829be
commit
c0028b9732
@ -1,10 +0,0 @@
|
||||
ext {
|
||||
extName = 'Tempest Fansub'
|
||||
extClass = '.TempestFansub'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://tempestfansub.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
@ -1,27 +0,0 @@
|
||||
package eu.kanade.tachiyomi.extension.tr.tempestfansub
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
|
||||
import eu.kanade.tachiyomi.source.model.SManga
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
|
||||
class TempestFansub : MangaThemesia(
|
||||
"Tempest Fansub",
|
||||
"https://tempestfansub.com",
|
||||
"tr",
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimitHost(baseUrl.toHttpUrl(), 2)
|
||||
.build()
|
||||
|
||||
// =========================== Manga Details ============================
|
||||
override val seriesArtistSelector = ".tsinfo .imptdt:contains(İllüstratör) i"
|
||||
override val seriesAuthorSelector = ".tsinfo .imptdt:contains(Yazar) i"
|
||||
override val seriesStatusSelector = ".tsinfo .imptdt:contains(Seri Durumu) i"
|
||||
|
||||
override fun String?.parseStatus(): Int = when (this?.trim()?.lowercase()) {
|
||||
"devam ediyor" -> SManga.ONGOING
|
||||
"bitti" -> SManga.COMPLETED
|
||||
else -> SManga.UNKNOWN
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user