Add YaoiScan (#6814)
* Add YaoiScan * Wrong CMS for YaoiScan * Patched status detection * Update src/fr/yaoiscan/build.gradle Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com> --------- Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
parent
065ff132a0
commit
70efa61570
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'YaoiScan'
|
||||||
|
extClass = '.YaoiScan'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://yaoiscan.fr'
|
||||||
|
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.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
|
@ -0,0 +1,15 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.fr.yaoiscan
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class YaoiScan : MangaThemesia(
|
||||||
|
name = "YaoiScan",
|
||||||
|
baseUrl = "https://yaoiscan.fr",
|
||||||
|
lang = "fr",
|
||||||
|
mangaUrlDirectory = "/catalogue",
|
||||||
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.FRANCE),
|
||||||
|
) {
|
||||||
|
override val seriesStatusSelector = ".status-value"
|
||||||
|
}
|
Loading…
Reference in New Issue