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 Draff
parent 0edd4a94c0
commit 71e3830576
14 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"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

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"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

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")),
)