SeraphManga(HyperionScans): Migrate theme (#5786)

Migrate theme
This commit is contained in:
Chopper 2024-10-30 12:09:08 -03:00 committed by GitHub
parent 5d2badc707
commit f3f74ec7d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 12 additions and 11 deletions

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

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