Crowscans(Hadess) rebranding ()

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
src/ar/crowscans
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/ar/crowscans

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

Binary file not shown.

Before

(image error) Size: 4.6 KiB

After

(image error) Size: 6.1 KiB

Binary file not shown.

Before

(image error) Size: 2.6 KiB

After

(image error) Size: 3.1 KiB

Binary file not shown.

Before

(image error) Size: 7.1 KiB

After

(image error) Size: 8.9 KiB

Binary file not shown.

Before

(image error) Size: 13 KiB

After

(image error) Size: 17 KiB

Binary file not shown.

Before

(image error) Size: 21 KiB

After

(image error) Size: 26 KiB

@ -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")),
)

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