diff --git a/src/th/ecchidoujin/build.gradle b/src/th/ecchidoujin/build.gradle new file mode 100644 index 000000000..96920830e --- /dev/null +++ b/src/th/ecchidoujin/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Ecchi-Doujin' + extClass = '.EcchiDoujin' + themePkg = 'mangathemesia' + baseUrl = 'https://ecchi-doujin.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/th/ecchidoujin/res/mipmap-hdpi/ic_launcher.png b/src/th/ecchidoujin/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..146509c40 Binary files /dev/null and b/src/th/ecchidoujin/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/th/ecchidoujin/res/mipmap-mdpi/ic_launcher.png b/src/th/ecchidoujin/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..5cfc7a4d8 Binary files /dev/null and b/src/th/ecchidoujin/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/th/ecchidoujin/res/mipmap-xhdpi/ic_launcher.png b/src/th/ecchidoujin/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..e6e9413ef Binary files /dev/null and b/src/th/ecchidoujin/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/th/ecchidoujin/res/mipmap-xxhdpi/ic_launcher.png b/src/th/ecchidoujin/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..5c372f66d Binary files /dev/null and b/src/th/ecchidoujin/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/th/ecchidoujin/res/mipmap-xxxhdpi/ic_launcher.png b/src/th/ecchidoujin/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..c1cef2710 Binary files /dev/null and b/src/th/ecchidoujin/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/th/ecchidoujin/src/eu/kanade/tachiyomi/extension/th/ecchidoujin/EcchiDoujin.kt b/src/th/ecchidoujin/src/eu/kanade/tachiyomi/extension/th/ecchidoujin/EcchiDoujin.kt new file mode 100644 index 000000000..4c1c665bc --- /dev/null +++ b/src/th/ecchidoujin/src/eu/kanade/tachiyomi/extension/th/ecchidoujin/EcchiDoujin.kt @@ -0,0 +1,13 @@ +package eu.kanade.tachiyomi.extension.th.ecchidoujin + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class EcchiDoujin : MangaThemesia( + "Ecchi-Doujin", + "https://ecchi-doujin.com", + "th", + "/doujin", + SimpleDateFormat("MMMM d, yyyy", Locale("th")), +)