diff --git a/src/th/goddoujin/build.gradle b/src/th/goddoujin/build.gradle new file mode 100644 index 000000000..cb898b5e5 --- /dev/null +++ b/src/th/goddoujin/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'God-Doujin' + extClass = '.GodDoujin' + themePkg = 'mangathemesia' + baseUrl = 'https://god-doujin.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/th/goddoujin/res/mipmap-hdpi/ic_launcher.png b/src/th/goddoujin/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..8d8b42c59 Binary files /dev/null and b/src/th/goddoujin/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/th/goddoujin/res/mipmap-mdpi/ic_launcher.png b/src/th/goddoujin/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..129ae3f6b Binary files /dev/null and b/src/th/goddoujin/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/th/goddoujin/res/mipmap-xhdpi/ic_launcher.png b/src/th/goddoujin/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..38887f1e9 Binary files /dev/null and b/src/th/goddoujin/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/th/goddoujin/res/mipmap-xxhdpi/ic_launcher.png b/src/th/goddoujin/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..9e63b09aa Binary files /dev/null and b/src/th/goddoujin/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/th/goddoujin/res/mipmap-xxxhdpi/ic_launcher.png b/src/th/goddoujin/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..eb228ca5c Binary files /dev/null and b/src/th/goddoujin/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/th/goddoujin/src/eu/kanade/tachiyomi/extension/th/goddoujin/GodDoujin.kt b/src/th/goddoujin/src/eu/kanade/tachiyomi/extension/th/goddoujin/GodDoujin.kt new file mode 100644 index 000000000..b43c0230d --- /dev/null +++ b/src/th/goddoujin/src/eu/kanade/tachiyomi/extension/th/goddoujin/GodDoujin.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.th.goddoujin + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class GodDoujin : MangaThemesia( + "God-Doujin", + "https://god-doujin.com", + "th", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")), +) { + override val seriesTypeSelector = ".imptdt:contains(ประเภท) a" +}