@ -1,10 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'KDT Scans'
|
|
||||||
extClass = '.KdtScans'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://kdtscans.com'
|
|
||||||
overrideVersionCode = 2
|
|
||||||
isNsfw = true
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,42 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.all.kdtscans
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
||||||
import eu.kanade.tachiyomi.source.model.SManga
|
|
||||||
import org.jsoup.nodes.Document
|
|
||||||
import org.jsoup.nodes.Element
|
|
||||||
|
|
||||||
class KdtScans : Madara(
|
|
||||||
"KDT Scans",
|
|
||||||
"https://kdtscans.com",
|
|
||||||
"all",
|
|
||||||
) {
|
|
||||||
override val useNewChapterEndpoint = true
|
|
||||||
override val fetchGenres = false
|
|
||||||
|
|
||||||
override fun popularMangaFromElement(element: Element): SManga {
|
|
||||||
return super.popularMangaFromElement(element).apply {
|
|
||||||
title = title.cleanupTitle()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun searchMangaSelector() = "div.c-tabs-item__content:not(:contains([LN]))"
|
|
||||||
|
|
||||||
override fun searchMangaFromElement(element: Element): SManga {
|
|
||||||
return super.searchMangaFromElement(element).apply {
|
|
||||||
title = title.cleanupTitle()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun mangaDetailsParse(document: Document): SManga {
|
|
||||||
return super.mangaDetailsParse(document).apply {
|
|
||||||
title = title.cleanupTitle()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun String.cleanupTitle() = replace(titleCleanupRegex, "").trim()
|
|
||||||
|
|
||||||
private val titleCleanupRegex =
|
|
||||||
Regex("""^\[(ESPAÑOL|English|HD|VIP)\]\s+(–\s+)?""", RegexOption.IGNORE_CASE)
|
|
||||||
|
|
||||||
override fun chapterListSelector() = "li.wp-manga-chapter:not(:has(.required-login))"
|
|
||||||
}
|
|
10
src/en/armageddon/build.gradle
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Armageddon'
|
||||||
|
extClass = '.Armageddon'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://www.silentquill.net'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/en/armageddon/res/mipmap-hdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
src/en/armageddon/res/mipmap-mdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
src/en/armageddon/res/mipmap-xhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
src/en/armageddon/res/mipmap-xxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
src/en/armageddon/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 25 KiB |
@ -0,0 +1,9 @@
|
|||||||
|
package eu.kanade.tachiyomi.extension.en.armageddon
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
|
||||||
|
class Armageddon : MangaThemesia(
|
||||||
|
name = "Armageddon",
|
||||||
|
baseUrl = "https://www.silentquill.net",
|
||||||
|
lang = "en",
|
||||||
|
)
|