Remove Tecno Scan (#3606)

This commit is contained in:
Vetle Ledaal 2024-06-17 14:35:05 +02:00 committed by GitHub
parent 6c6d654281
commit 19f5014b7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 0 additions and 35 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Tecno Scan'
extClass = '.TecnoScan'
themePkg = 'madara'
baseUrl = 'https://visortecno.com'
overrideVersionCode = 2
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

View File

@ -1,25 +0,0 @@
package eu.kanade.tachiyomi.extension.es.tecnoscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class TecnoScan : Madara(
"Tecno Scan",
"https://visortecno.com",
"es",
SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
// Site moved from MangaThemesia to Madara
override val versionId = 4
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1, TimeUnit.SECONDS)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}