Remove Cartel de Manhwas (#10666)

dead source
This commit is contained in:
bapeey 2025-09-21 13:45:16 -05:00 committed by Draff
parent 2a5d28df53
commit 1905a3c8dc
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 34 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Cartel de Manhwas'
extClass = '.CarteldeManhwas'
themePkg = 'mangathemesia'
baseUrl = 'https://carteldemanhwas.net'
overrideVersionCode = 8
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

View File

@ -1,24 +0,0 @@
package eu.kanade.tachiyomi.extension.es.carteldemanhwas
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.source.model.SChapter
import okhttp3.Response
import java.text.SimpleDateFormat
import java.util.Locale
class CarteldeManhwas : MangaThemesia(
"Cartel de Manhwas",
"https://carteldemanhwas.net",
"es",
mangaUrlDirectory = "/serie",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override fun searchMangaSelector() = ".utao .uta .imgu:not(:has(span.novelabel)), " +
".listupd .bs .bsx:not(:has(span.novelabel)), " +
".listo .bs .bsx:not(:has(span.novelabel))"
override fun chapterListParse(response: Response): List<SChapter> {
return super.chapterListParse(response).reversed()
}
}