HolyManga: Update theme to FMReader (#7131)

* fix: update theme to FMReader

* fix: update versionId
This commit is contained in:
Hellkaros 2025-01-12 06:29:45 -03:00 committed by Draff
parent f5708a63fc
commit b088ba606b
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 5 additions and 9 deletions

View File

@ -1,9 +1,9 @@
ext {
extName = 'HolyManga'
extClass = '.HolyManga'
themePkg = 'zbulu'
themePkg = 'fmreader'
baseUrl = 'https://w34.holymanga.net'
overrideVersionCode = 4
overrideVersionCode = 2
isNsfw = true
}

View File

@ -1,15 +1,11 @@
package eu.kanade.tachiyomi.extension.en.holymanga
import eu.kanade.tachiyomi.multisrc.zbulu.Zbulu
import eu.kanade.tachiyomi.network.GET
import okhttp3.Request
import eu.kanade.tachiyomi.multisrc.fmreader.FMReader
class HolyManga : Zbulu(
class HolyManga : FMReader(
"HolyManga",
"https://w34.holymanga.net",
"en",
) {
override fun popularMangaRequest(page: Int): Request {
return GET("$baseUrl/popular-manga/page-$page/", headers)
}
override val versionId = 2
}