Remove kdt & add Armageddon (#9346)

remove kdt & add Armageddon
This commit is contained in:
AwkwardPeak7 2025-06-21 15:54:42 +05:00 committed by Draff
parent 6ee4ab2521
commit 621dc6c121
Signed by: Draff
GPG Key ID: E8A89F3211677653
14 changed files with 19 additions and 52 deletions

View File

@ -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"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -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))"
}

View 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"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

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