Add Shojo Scans (#4127)

This commit is contained in:
Vetle Ledaal 2024-07-21 09:16:26 +02:00 committed by GitHub
parent 1b4523d4bf
commit 2d8e75869f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Shojo Scans'
extClass = '.ShojoScans'
themePkg = 'mangathemesia'
baseUrl = 'https://shojoscans.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.shojoscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.source.model.SManga
class ShojoScans : MangaThemesia(
"Shojo Scans",
"https://shojoscans.com",
"en",
mangaUrlDirectory = "/comics",
) {
override fun String?.parseStatus() = when {
this == null -> SManga.UNKNOWN
this.contains("ongoing", ignoreCase = true) -> SManga.ONGOING
this.contains("mass released", ignoreCase = true) -> SManga.ONGOING
else -> SManga.UNKNOWN
}
}