mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-25 19:52:56 +01:00
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:
parent
739dde6009
commit
9ca1523933
10
src/fr/inovascanmanga/build.gradle
Normal file
10
src/fr/inovascanmanga/build.gradle
Normal 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"
|
BIN
src/fr/inovascanmanga/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/fr/inovascanmanga/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.2 KiB |
BIN
src/fr/inovascanmanga/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/fr/inovascanmanga/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
BIN
src/fr/inovascanmanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/fr/inovascanmanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
src/fr/inovascanmanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/fr/inovascanmanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
src/fr/inovascanmanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/fr/inovascanmanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
@ -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
|
||||||
|
*/
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user