Remove Dead Sources (#1312)

* Remove Drop Scan

* Remove Turktoon
This commit is contained in:
Chopper 2024-02-17 00:46:53 -03:00 committed by GitHub
parent 599c99521c
commit 86c2168a1e
4 changed files with 0 additions and 60 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'Drope Scan'
extClass = '.DropeScan'
themePkg = 'madara'
baseUrl = 'https://dropescan.com'
overrideVersionCode = 4
}
apply from: "$rootDir/common.gradle"

View File

@ -1,30 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.dropescan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.GET
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import okhttp3.Request
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class DropeScan : Madara(
"Drope Scan",
"https://dropescan.com",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
override val useNewChapterEndpoint = true
override fun popularMangaRequest(page: Int): Request =
GET("$baseUrl/manga/page/$page/?m_orderby=views", headers)
override fun latestUpdatesRequest(page: Int): Request =
GET("$baseUrl/manga/page/$page/?m_orderby=latest", headers)
}

View File

@ -1,9 +0,0 @@
ext {
extName = 'TurkToon'
extClass = '.TurkToon'
themePkg = 'mangathemesia'
baseUrl = 'https://turktoon.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

View File

@ -1,12 +0,0 @@
package eu.kanade.tachiyomi.extension.tr.turktoon
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class TurkToon : MangaThemesia(
"TurkToon",
"https://turktoon.com",
"tr",
dateFormat = SimpleDateFormat("MMM d, yyyy", Locale("tr")),
)