diff --git a/src/pt/dropescan/build.gradle b/src/pt/dropescan/build.gradle deleted file mode 100644 index 932763e24..000000000 --- a/src/pt/dropescan/build.gradle +++ /dev/null @@ -1,9 +0,0 @@ -ext { - extName = 'Drope Scan' - extClass = '.DropeScan' - themePkg = 'madara' - baseUrl = 'https://dropescan.com' - overrideVersionCode = 4 -} - -apply from: "$rootDir/common.gradle" diff --git a/src/pt/dropescan/res/mipmap-hdpi/ic_launcher.png b/src/pt/dropescan/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index ede63d0cc..000000000 Binary files a/src/pt/dropescan/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/dropescan/res/mipmap-mdpi/ic_launcher.png b/src/pt/dropescan/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 4a832eb89..000000000 Binary files a/src/pt/dropescan/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/dropescan/res/mipmap-xhdpi/ic_launcher.png b/src/pt/dropescan/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 720fa7870..000000000 Binary files a/src/pt/dropescan/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/dropescan/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/dropescan/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index be0656321..000000000 Binary files a/src/pt/dropescan/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/dropescan/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/dropescan/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 814461bb6..000000000 Binary files a/src/pt/dropescan/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/dropescan/src/eu/kanade/tachiyomi/extension/pt/dropescan/DropeScan.kt b/src/pt/dropescan/src/eu/kanade/tachiyomi/extension/pt/dropescan/DropeScan.kt deleted file mode 100644 index b777e1e32..000000000 --- a/src/pt/dropescan/src/eu/kanade/tachiyomi/extension/pt/dropescan/DropeScan.kt +++ /dev/null @@ -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) -} diff --git a/src/tr/turktoon/build.gradle b/src/tr/turktoon/build.gradle deleted file mode 100644 index 5f25a6ed3..000000000 --- a/src/tr/turktoon/build.gradle +++ /dev/null @@ -1,9 +0,0 @@ -ext { - extName = 'TurkToon' - extClass = '.TurkToon' - themePkg = 'mangathemesia' - baseUrl = 'https://turktoon.com' - overrideVersionCode = 0 -} - -apply from: "$rootDir/common.gradle" diff --git a/src/tr/turktoon/res/mipmap-hdpi/ic_launcher.png b/src/tr/turktoon/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index debab0c63..000000000 Binary files a/src/tr/turktoon/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/tr/turktoon/res/mipmap-mdpi/ic_launcher.png b/src/tr/turktoon/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 07c3a9dfe..000000000 Binary files a/src/tr/turktoon/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/tr/turktoon/res/mipmap-xhdpi/ic_launcher.png b/src/tr/turktoon/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index b8e973b1b..000000000 Binary files a/src/tr/turktoon/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/tr/turktoon/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/turktoon/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index eaf1910aa..000000000 Binary files a/src/tr/turktoon/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/tr/turktoon/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/turktoon/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 08ef9267e..000000000 Binary files a/src/tr/turktoon/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/tr/turktoon/src/eu/kanade/tachiyomi/extension/tr/turktoon/TurkToon.kt b/src/tr/turktoon/src/eu/kanade/tachiyomi/extension/tr/turktoon/TurkToon.kt deleted file mode 100644 index a08ab361d..000000000 --- a/src/tr/turktoon/src/eu/kanade/tachiyomi/extension/tr/turktoon/TurkToon.kt +++ /dev/null @@ -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")), -)