diff --git a/src/id/hwago/build.gradle b/src/id/hwago/build.gradle new file mode 100644 index 000000000..3953e18c5 --- /dev/null +++ b/src/id/hwago/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Hwago' + extClass = '.Hwago' + themePkg = 'madara' + baseUrl = 'https://hwago.org' + overrideVersionCode = 0 + isNsfw = false +} + +apply from: "$rootDir/common.gradle" diff --git a/src/id/hwago/res/mipmap-hdpi/ic_launcher.png b/src/id/hwago/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..4961ce503 Binary files /dev/null and b/src/id/hwago/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/id/hwago/res/mipmap-mdpi/ic_launcher.png b/src/id/hwago/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..8d5d2152f Binary files /dev/null and b/src/id/hwago/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/id/hwago/res/mipmap-xhdpi/ic_launcher.png b/src/id/hwago/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..4e4b34286 Binary files /dev/null and b/src/id/hwago/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/id/hwago/res/mipmap-xxhdpi/ic_launcher.png b/src/id/hwago/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..c26c290b4 Binary files /dev/null and b/src/id/hwago/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/id/hwago/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/hwago/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..22b6ac56c Binary files /dev/null and b/src/id/hwago/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/id/hwago/src/eu/kanade/tachiyomi/extension/id/hwago/Hwago.kt b/src/id/hwago/src/eu/kanade/tachiyomi/extension/id/hwago/Hwago.kt new file mode 100644 index 000000000..3029e97b0 --- /dev/null +++ b/src/id/hwago/src/eu/kanade/tachiyomi/extension/id/hwago/Hwago.kt @@ -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" +}