diff --git a/src/id/manhwalistorg/build.gradle b/src/id/manhwalistorg/build.gradle new file mode 100644 index 000000000..c3c69b841 --- /dev/null +++ b/src/id/manhwalistorg/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Manhwalist.org' + extClass = '.ManhwalistOrg' + themePkg = 'mangathemesia' + baseUrl = 'https://manhwalist.org' + overrideVersionCode = 0 + isNsfw = false +} + +apply from: "$rootDir/common.gradle" diff --git a/src/id/manhwalistorg/res/mipmap-hdpi/ic_launcher.png b/src/id/manhwalistorg/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..caa31a77e Binary files /dev/null and b/src/id/manhwalistorg/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/id/manhwalistorg/res/mipmap-mdpi/ic_launcher.png b/src/id/manhwalistorg/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..8bf68b4be Binary files /dev/null and b/src/id/manhwalistorg/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/id/manhwalistorg/res/mipmap-xhdpi/ic_launcher.png b/src/id/manhwalistorg/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..f174c09cf Binary files /dev/null and b/src/id/manhwalistorg/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/id/manhwalistorg/res/mipmap-xxhdpi/ic_launcher.png b/src/id/manhwalistorg/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..0a48d564a Binary files /dev/null and b/src/id/manhwalistorg/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/id/manhwalistorg/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/manhwalistorg/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..624d8368e Binary files /dev/null and b/src/id/manhwalistorg/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/id/manhwalistorg/src/eu/kanade/tachiyomi/extension/id/manhwalistorg/ManhwalistOrg.kt b/src/id/manhwalistorg/src/eu/kanade/tachiyomi/extension/id/manhwalistorg/ManhwalistOrg.kt new file mode 100644 index 000000000..b6d4dee38 --- /dev/null +++ b/src/id/manhwalistorg/src/eu/kanade/tachiyomi/extension/id/manhwalistorg/ManhwalistOrg.kt @@ -0,0 +1,13 @@ +package eu.kanade.tachiyomi.extension.id.manhwalistorg + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class ManhwalistOrg : MangaThemesia( + "Manhwalist.org", + "https://manhwalist.org", + "id", + mangaUrlDirectory = "/manhwa", + dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id")), +)