Add CasaComic (#7116)

* Add CasaComic

* small mistake

* fix

* Update src/en/casacomic/build.gradle

---------

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
mrtear 2025-01-11 16:21:01 +05:00 committed by Draff
parent 4f0481f71d
commit 82ac20e710
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Casa Comic'
extClass = '.CasaComic'
themePkg = 'keyoapp'
baseUrl = 'https://casacomic.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.en.casacomic
import eu.kanade.tachiyomi.multisrc.keyoapp.Keyoapp
class CasaComic : Keyoapp(
"Casa Comic",
"https://casacomic.com",
"en",
) {
override val descriptionSelector: String = "div.grid > div.overflow-hidden > p"
override val statusSelector: String = "div[alt=Status]"
override val authorSelector: String = "div[alt=Author]"
override val artistSelector: String = "div[alt=Artist]"
override val genreSelector: String = "div[alt='Series Type']"
}