Remove DeManhuas and the old SamuraiScans (#3140)

* remove

* XD
This commit is contained in:
bapeey 2024-05-20 05:53:15 -05:00 committed by Draff
parent 934ca4a97f
commit 72812dc898
14 changed files with 0 additions and 58 deletions

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

View File

@ -1,21 +0,0 @@
package eu.kanade.tachiyomi.extension.es.demanhuas
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
class DeManhuas : Madara(
"DeManhuas",
"https://demanhuas.com",
"es",
SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 2)
.build()
override val mangaSubString = "sm"
override val useNewChapterEndpoint = true
}

View File

@ -1,9 +0,0 @@
ext {
extName = 'SamuraiScan'
extClass = '.SamuraiScan'
themePkg = 'madara'
baseUrl = 'https://samuraiscan.org'
overrideVersionCode = 4
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

View File

@ -1,19 +0,0 @@
package eu.kanade.tachiyomi.extension.es.samuraiscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class SamuraiScan : Madara(
"SamuraiScan",
"https://samuraiscan.org",
"es",
SimpleDateFormat("d MMMM, yyyy", Locale("es")),
) {
override val mangaSubString = "l"
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorDescription = "div.summary_content div.manga-summary"
override val mangaDetailsSelectorStatus = "div.summary_content div.manga-authors"
}