YuraManga: change theme (#5606)

* YuraManga: change theme

Closes #5604

* update version
This commit is contained in:
Luqman 2024-10-20 19:31:25 +07:00 committed by GitHub
parent 24c4747541
commit 60265d2f87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 9 deletions

View File

@ -1,9 +1,9 @@
ext {
extName = 'YuraManga'
extClass = '.YuraManga'
themePkg = 'madara'
themePkg = 'zmanga'
baseUrl = 'https://yuramanga.my.id'
overrideVersionCode = 0
overrideVersionCode = 36
}
apply from: "$rootDir/common.gradle"

View File

@ -1,11 +1,9 @@
package eu.kanade.tachiyomi.extension.id.yuramanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.multisrc.zmanga.ZManga
import java.text.SimpleDateFormat
class YuraManga : Madara("YuraManga", "https://yuramanga.my.id", "id") {
// Moved from Makaru to Madara
override val versionId = 2
// If .list-chapter is empty the link is 404
override fun popularMangaSelector() = "div.page-item-detail:not(:has(a[href*='bilibilicomics.com']))$mangaEntrySelector:has(.chapter-item)"
class YuraManga : ZManga("YuraManga", "https://yuramanga.my.id", "id", SimpleDateFormat("dd/MM/yyyy")) {
// Moved from Madara to ZManga
override val versionId = 3
}