Add InovaScanManga (#5502)

* Add InovaScanManga

* Use Long Month format

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>

* Added missing selectors

---------

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
Romain 2024-10-14 13:44:27 +02:00 committed by GitHub
parent 739dde6009
commit 9ca1523933
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Inova Scan Manga'
extClass = '.InovaScanManga'
themePkg = 'madara'
baseUrl = 'https://inovascanmanga.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -0,0 +1,29 @@
package eu.kanade.tachiyomi.extension.fr.inovascanmanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class InovaScanManga : Madara(
"Inova Scans Manga",
"https://inovascanmanga.com",
"fr",
SimpleDateFormat("dd MMMM yyyy", Locale.FRENCH),
) {
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val mangaDetailsSelectorDescription = "div.manga-summary > p"
override val mangaDetailsSelectorAuthor = "div.manga-authors > a"
/*
Not implemented by the website
* mangaDetailsSelectorStatus
* mangaDetailsSelectorArtist
* seriesTypeSelector
* altNameSelector
* altName
* updatingRegex
*/
}