YuraManga: move to Madara (#2257)

This commit is contained in:
Vetle Ledaal 2024-04-05 11:32:26 +00:00 committed by Draff
parent 200ac6fd32
commit 951b3c9d00
2 changed files with 10 additions and 4 deletions

View File

@ -1,8 +1,8 @@
ext {
extName = 'YuraManga'
extClass = '.YuraManga'
themePkg = 'makaru'
baseUrl = 'https://www.yuramanga.my.id'
themePkg = 'madara'
baseUrl = 'https://yuramanga.my.id'
overrideVersionCode = 0
}

View File

@ -1,5 +1,11 @@
package eu.kanade.tachiyomi.extension.id.yuramanga
import eu.kanade.tachiyomi.multisrc.makaru.Makaru
import eu.kanade.tachiyomi.multisrc.madara.Madara
class YuraManga : Makaru("YuraManga", "https://www.yuramanga.my.id", "id")
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)"
}