VioletScans(ShojoScans): Update domain and rebranding (#7000)
* Update domain * Rebranding * Bump version * Add id
|
@ -1,9 +1,9 @@
|
|||
ext {
|
||||
extName = 'Shojo Scans'
|
||||
extClass = '.ShojoScans'
|
||||
extName = 'Violet Scans'
|
||||
extClass = '.VioletScans'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://shojoscans.com'
|
||||
overrideVersionCode = 0
|
||||
baseUrl = 'https://violetscans.com'
|
||||
overrideVersionCode = 1
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
|
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 20 KiB |
|
@ -1,18 +0,0 @@
|
|||
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
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
package eu.kanade.tachiyomi.extension.en.shojoscans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
|
||||
class VioletScans : MangaThemesia(
|
||||
"Violet Scans",
|
||||
"https://violetscans.com",
|
||||
"en",
|
||||
mangaUrlDirectory = "/comics",
|
||||
) {
|
||||
override val id = 9079184529211162476
|
||||
}
|