diff --git a/src/th/doujinza/build.gradle b/src/th/doujinza/build.gradle new file mode 100644 index 000000000..0039a0c98 --- /dev/null +++ b/src/th/doujinza/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'DoujinZa' + extClass = '.DoujinZa' + themePkg = 'madara' + baseUrl = 'https://doujinza.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/th/doujinza/res/mipmap-hdpi/ic_launcher.png b/src/th/doujinza/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..9daefdc3b Binary files /dev/null and b/src/th/doujinza/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/th/doujinza/res/mipmap-mdpi/ic_launcher.png b/src/th/doujinza/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..bf5d1cbfe Binary files /dev/null and b/src/th/doujinza/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/th/doujinza/res/mipmap-xhdpi/ic_launcher.png b/src/th/doujinza/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..df3cdb360 Binary files /dev/null and b/src/th/doujinza/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/th/doujinza/res/mipmap-xxhdpi/ic_launcher.png b/src/th/doujinza/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..c789bdedd Binary files /dev/null and b/src/th/doujinza/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/th/doujinza/res/mipmap-xxxhdpi/ic_launcher.png b/src/th/doujinza/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..c3dce39fb Binary files /dev/null and b/src/th/doujinza/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/th/doujinza/src/eu/kanade/tachiyomi/extension/th/doujinza/DoujinZa.kt b/src/th/doujinza/src/eu/kanade/tachiyomi/extension/th/doujinza/DoujinZa.kt new file mode 100644 index 000000000..d6ccba9c1 --- /dev/null +++ b/src/th/doujinza/src/eu/kanade/tachiyomi/extension/th/doujinza/DoujinZa.kt @@ -0,0 +1,17 @@ +package eu.kanade.tachiyomi.extension.th.doujinza + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class DoujinZa : Madara( + "DoujinZa", + "https://doujinza.com", + "th", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false + + override val mangaSubString = "doujin" +}