|
@ -1,9 +0,0 @@
|
||||||
ext {
|
|
||||||
extName = 'DeManhuas'
|
|
||||||
extClass = '.DeManhuas'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://demanhuas.com'
|
|
||||||
overrideVersionCode = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 24 KiB |
|
@ -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
|
|
||||||
}
|
|
|
@ -1,9 +0,0 @@
|
||||||
ext {
|
|
||||||
extName = 'SamuraiScan'
|
|
||||||
extClass = '.SamuraiScan'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://samuraiscan.org'
|
|
||||||
overrideVersionCode = 4
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 24 KiB |
|
@ -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"
|
|
||||||
}
|
|