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 Draff
parent 01b431754f
commit 1376e3e5dd
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 7 additions and 9 deletions

View File

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

View File

@ -1,11 +1,9 @@
package eu.kanade.tachiyomi.extension.id.yuramanga 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") { class YuraManga : ZManga("YuraManga", "https://yuramanga.my.id", "id", SimpleDateFormat("dd/MM/yyyy")) {
// Moved from Makaru to Madara // Moved from Madara to ZManga
override val versionId = 2 override val versionId = 3
// 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)"
} }