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:
FunnyTiming 2024-12-27 07:04:15 +01:00 committed by Draff
parent 065ff132a0
commit 70efa61570
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 = '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

View File

@ -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"
}