Skip to content

Commit 04cfd6c

Browse files
Add YaoiScan (#6814)
* Add YaoiScan * Wrong CMS for YaoiScan * Patched status detection * Update src/fr/yaoiscan/build.gradle Co-authored-by: Vetle Ledaal <[email protected]> --------- Co-authored-by: Vetle Ledaal <[email protected]>
1 parent 1bbcabf commit 04cfd6c

File tree

7 files changed

+25
-0
lines changed

7 files changed

+25
-0
lines changed

src/fr/yaoiscan/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ext {
2+
extName = 'YaoiScan'
3+
extClass = '.YaoiScan'
4+
themePkg = 'mangathemesia'
5+
baseUrl = 'https://yaoiscan.fr'
6+
overrideVersionCode = 0
7+
isNsfw = true
8+
}
9+
10+
apply from: "$rootDir/common.gradle"
5.2 KB
Loading
2.68 KB
Loading
7.58 KB
Loading
14.5 KB
Loading
22.3 KB
Loading

src/fr/yaoiscan/src/YaoiScan.kt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package eu.kanade.tachiyomi.extension.fr.yaoiscan
2+
3+
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
4+
import java.text.SimpleDateFormat
5+
import java.util.Locale
6+
7+
class YaoiScan : MangaThemesia(
8+
name = "YaoiScan",
9+
baseUrl = "https://yaoiscan.fr",
10+
lang = "fr",
11+
mangaUrlDirectory = "/catalogue",
12+
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.FRANCE),
13+
) {
14+
override val seriesStatusSelector = ".status-value"
15+
}

0 commit comments

Comments
 (0)