Crowscans(Hadess) rebranding (#4169)

Crowscans rebranding
This commit is contained in:
Chopper 2024-07-24 08:53:14 -03:00 committed by Draff
parent 888ec79b29
commit 94539a9923
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
8 changed files with 30 additions and 16 deletions

View File

@ -1,8 +1,8 @@
ext {
extName = 'Crow Scans'
extClass = '.CrowScans'
themePkg = 'mangathemesia'
baseUrl = 'https://crowscans.com'
extName = 'Hadess'
extClass = '.Hadess'
themePkg = 'madara'
baseUrl = 'https://www.hadess.xyz'
overrideVersionCode = 0
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,12 +0,0 @@
package eu.kanade.tachiyomi.extension.ar.crowscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class CrowScans : MangaThemesia(
"Crow Scans",
"https://crowscans.com",
"ar",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("ar")),
)

View File

@ -0,0 +1,26 @@
package eu.kanade.tachiyomi.extension.ar.crowscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class Hadess : Madara(
"Hadess",
"https://www.hadess.xyz",
"ar",
dateFormat = SimpleDateFormat("dd MMMM، yyyy", Locale("ar")),
) {
override val versionId = 2
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val mangaDetailsSelectorStatus =
".summary-heading:contains(الحالة) + ${super.mangaDetailsSelectorStatus}"
}