diff --git a/src/tr/hyperionscans/build.gradle b/src/tr/hyperionscans/build.gradle index 233476223..458aff25b 100644 --- a/src/tr/hyperionscans/build.gradle +++ b/src/tr/hyperionscans/build.gradle @@ -1,8 +1,8 @@ ext { - extName = 'Hyperion Scans' + extName = 'Seraph Manga' extClass = '.HyperionScans' - themePkg = 'zeistmanga' - baseUrl = 'https://www.hyperionscans.site' + themePkg = 'mangathemesia' + baseUrl = 'https://www.seraphmanga.com' overrideVersionCode = 0 } diff --git a/src/tr/hyperionscans/res/mipmap-hdpi/ic_launcher.png b/src/tr/hyperionscans/res/mipmap-hdpi/ic_launcher.png index 6dbefee28..0e1357fc7 100644 Binary files a/src/tr/hyperionscans/res/mipmap-hdpi/ic_launcher.png and b/src/tr/hyperionscans/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/tr/hyperionscans/res/mipmap-mdpi/ic_launcher.png b/src/tr/hyperionscans/res/mipmap-mdpi/ic_launcher.png index 62822a11d..31d04ca10 100644 Binary files a/src/tr/hyperionscans/res/mipmap-mdpi/ic_launcher.png and b/src/tr/hyperionscans/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/tr/hyperionscans/res/mipmap-xhdpi/ic_launcher.png b/src/tr/hyperionscans/res/mipmap-xhdpi/ic_launcher.png index 575ae45ac..4acbaf9ee 100644 Binary files a/src/tr/hyperionscans/res/mipmap-xhdpi/ic_launcher.png and b/src/tr/hyperionscans/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/tr/hyperionscans/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/hyperionscans/res/mipmap-xxhdpi/ic_launcher.png index 0b25ac9d1..4feb8adfd 100644 Binary files a/src/tr/hyperionscans/res/mipmap-xxhdpi/ic_launcher.png and b/src/tr/hyperionscans/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/tr/hyperionscans/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/hyperionscans/res/mipmap-xxxhdpi/ic_launcher.png index 0b0558059..e6b075c22 100644 Binary files a/src/tr/hyperionscans/res/mipmap-xxxhdpi/ic_launcher.png and b/src/tr/hyperionscans/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/tr/hyperionscans/src/eu/kanade/tachiyomi/extension/tr/hyperionscans/HyperionScans.kt b/src/tr/hyperionscans/src/eu/kanade/tachiyomi/extension/tr/hyperionscans/HyperionScans.kt index 371a45160..93e65e6af 100644 --- a/src/tr/hyperionscans/src/eu/kanade/tachiyomi/extension/tr/hyperionscans/HyperionScans.kt +++ b/src/tr/hyperionscans/src/eu/kanade/tachiyomi/extension/tr/hyperionscans/HyperionScans.kt @@ -1,18 +1,19 @@ package eu.kanade.tachiyomi.extension.tr.hyperionscans -import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia import eu.kanade.tachiyomi.network.interceptor.rateLimit +import java.text.SimpleDateFormat +import java.util.Locale -class HyperionScans : ZeistManga( - "Hyperion Scans", - "https://www.hyperionscans.site", +class HyperionScans : MangaThemesia( + "Seraph Manga", + "https://www.seraphmanga.com", "tr", + dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("tr")), ) { + override val versionId = 2 + override val client = super.client.newBuilder() .rateLimit(3) .build() - - override val popularMangaSelector = "div#PopularPosts3 article" - override val popularMangaSelectorTitle = "h3" - override val popularMangaSelectorUrl = "a" }