This commit is contained in:
Vetle Ledaal 2024-04-28 03:12:01 +00:00 committed by Draff
parent 2d6fd42c9d
commit 1c07987326
7 changed files with 28 additions and 0 deletions

10
src/id/hwago/build.gradle Normal file
View File

@ -0,0 +1,10 @@
ext {
extName = 'Hwago'
extClass = '.Hwago'
themePkg = 'madara'
baseUrl = 'https://hwago.org'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.id.hwago
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Hwago : Madara(
"Hwago",
"https://hwago.org",
"id",
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("en")),
) {
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
override val mangaSubString = "komik"
}