diff --git a/src/th/mangatitan/build.gradle b/src/th/mangatitan/build.gradle new file mode 100644 index 000000000..5bd24711b --- /dev/null +++ b/src/th/mangatitan/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Manga-Titan' + extClass = '.MangaTitan' + themePkg = 'madara' + baseUrl = 'https://manga-titans.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/th/mangatitan/res/mipmap-hdpi/ic_launcher.png b/src/th/mangatitan/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..ed4cfc511 Binary files /dev/null and b/src/th/mangatitan/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/th/mangatitan/res/mipmap-mdpi/ic_launcher.png b/src/th/mangatitan/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..208543ae3 Binary files /dev/null and b/src/th/mangatitan/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/th/mangatitan/res/mipmap-xhdpi/ic_launcher.png b/src/th/mangatitan/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..1af2aa869 Binary files /dev/null and b/src/th/mangatitan/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/th/mangatitan/res/mipmap-xxhdpi/ic_launcher.png b/src/th/mangatitan/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..98998414f Binary files /dev/null and b/src/th/mangatitan/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/th/mangatitan/res/mipmap-xxxhdpi/ic_launcher.png b/src/th/mangatitan/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..09144cd34 Binary files /dev/null and b/src/th/mangatitan/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/th/mangatitan/src/eu/kanade/tachiyomi/extension/th/mangatitan/MangaTitan.kt b/src/th/mangatitan/src/eu/kanade/tachiyomi/extension/th/mangatitan/MangaTitan.kt new file mode 100644 index 000000000..b9942dd8c --- /dev/null +++ b/src/th/mangatitan/src/eu/kanade/tachiyomi/extension/th/mangatitan/MangaTitan.kt @@ -0,0 +1,15 @@ +package eu.kanade.tachiyomi.extension.th.mangatitan + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class MangaTitan : Madara( + "Manga-Titan", + "https://manga-titans.com", + "th", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false +}