@ -1,8 +1,8 @@
|
|||||||
ext {
|
ext {
|
||||||
extName = 'Hyperion Scans'
|
extName = 'Seraph Manga'
|
||||||
extClass = '.HyperionScans'
|
extClass = '.HyperionScans'
|
||||||
themePkg = 'zeistmanga'
|
themePkg = 'mangathemesia'
|
||||||
baseUrl = 'https://www.hyperionscans.site'
|
baseUrl = 'https://www.seraphmanga.com'
|
||||||
overrideVersionCode = 0
|
overrideVersionCode = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 37 KiB |
@ -1,18 +1,19 @@
|
|||||||
package eu.kanade.tachiyomi.extension.tr.hyperionscans
|
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 eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
class HyperionScans : ZeistManga(
|
class HyperionScans : MangaThemesia(
|
||||||
"Hyperion Scans",
|
"Seraph Manga",
|
||||||
"https://www.hyperionscans.site",
|
"https://www.seraphmanga.com",
|
||||||
"tr",
|
"tr",
|
||||||
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("tr")),
|
||||||
) {
|
) {
|
||||||
|
override val versionId = 2
|
||||||
|
|
||||||
override val client = super.client.newBuilder()
|
override val client = super.client.newBuilder()
|
||||||
.rateLimit(3)
|
.rateLimit(3)
|
||||||
.build()
|
.build()
|
||||||
|
|
||||||
override val popularMangaSelector = "div#PopularPosts3 article"
|
|
||||||
override val popularMangaSelectorTitle = "h3"
|
|
||||||
override val popularMangaSelectorUrl = "a"
|
|
||||||
}
|
}
|
||||||
|