diff --git a/src/th/doujinlc/build.gradle b/src/th/doujinlc/build.gradle new file mode 100644 index 000000000..fdc9c85c7 --- /dev/null +++ b/src/th/doujinlc/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Doujin-Lc' + extClass = '.DoujinLc' + themePkg = 'madara' + baseUrl = 'https://doujin-lc.net' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/th/doujinlc/res/mipmap-hdpi/ic_launcher.png b/src/th/doujinlc/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..c01cabd4f Binary files /dev/null and b/src/th/doujinlc/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/th/doujinlc/res/mipmap-mdpi/ic_launcher.png b/src/th/doujinlc/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..49a8994c1 Binary files /dev/null and b/src/th/doujinlc/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/th/doujinlc/res/mipmap-xhdpi/ic_launcher.png b/src/th/doujinlc/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..ede6d9de6 Binary files /dev/null and b/src/th/doujinlc/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/th/doujinlc/res/mipmap-xxhdpi/ic_launcher.png b/src/th/doujinlc/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..41288cd76 Binary files /dev/null and b/src/th/doujinlc/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/th/doujinlc/res/mipmap-xxxhdpi/ic_launcher.png b/src/th/doujinlc/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..fa4e57dbc Binary files /dev/null and b/src/th/doujinlc/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/th/doujinlc/src/eu/kanade/tachiyomi/extension/th/doujinlc/DoujinLc.kt b/src/th/doujinlc/src/eu/kanade/tachiyomi/extension/th/doujinlc/DoujinLc.kt new file mode 100644 index 000000000..8cd2f85b1 --- /dev/null +++ b/src/th/doujinlc/src/eu/kanade/tachiyomi/extension/th/doujinlc/DoujinLc.kt @@ -0,0 +1,20 @@ +package eu.kanade.tachiyomi.extension.th.doujinlc + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class DoujinLc : Madara( + "Doujin-Lc", + "https://doujin-lc.net", + "th", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")), +) { + override val pageListParseSelector = ".reading-content img" + + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false + + override val mangaSubString = "doujin" + override val filterNonMangaItems = false +}