VioletScans(ShojoScans): Update domain and rebranding (#7000)

* Update domain

* Rebranding

* Bump version

* Add id
This commit is contained in:
Chopper 2025-01-06 10:13:21 -03:00 committed by Draff
parent f64996d23c
commit c88b8b28aa
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
8 changed files with 16 additions and 22 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'Shojo Scans' extName = 'Violet Scans'
extClass = '.ShojoScans' extClass = '.VioletScans'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://shojoscans.com' baseUrl = 'https://violetscans.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false isNsfw = false
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

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

View File

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