Remove TempestFansub (#6024)

This commit is contained in:
Chopper 2024-11-14 03:28:12 -03:00 committed by GitHub
parent eabcd829be
commit c0028b9732
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 0 additions and 37 deletions

View File

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

View File

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