diff --git a/src/tr/mindafansub/build.gradle b/src/tr/mindafansub/build.gradle new file mode 100644 index 000000000..ca3b5ccd8 --- /dev/null +++ b/src/tr/mindafansub/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Minda Fansub' + extClass = '.MindaFansub' + themePkg = 'madara' + baseUrl = 'https://mindafansub.online' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/tr/mindafansub/res/mipmap-hdpi/ic_launcher.png b/src/tr/mindafansub/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..6880066a2 Binary files /dev/null and b/src/tr/mindafansub/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/tr/mindafansub/res/mipmap-mdpi/ic_launcher.png b/src/tr/mindafansub/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..dac168bde Binary files /dev/null and b/src/tr/mindafansub/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/tr/mindafansub/res/mipmap-xhdpi/ic_launcher.png b/src/tr/mindafansub/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..f53b211a9 Binary files /dev/null and b/src/tr/mindafansub/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/tr/mindafansub/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/mindafansub/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..12a562fd0 Binary files /dev/null and b/src/tr/mindafansub/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/tr/mindafansub/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/mindafansub/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..ab12c8874 Binary files /dev/null and b/src/tr/mindafansub/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/tr/mindafansub/src/eu/kanade/tachiyomi/extension/tr/mindafansub/MindaFansub.kt b/src/tr/mindafansub/src/eu/kanade/tachiyomi/extension/tr/mindafansub/MindaFansub.kt new file mode 100644 index 000000000..55b3f605f --- /dev/null +++ b/src/tr/mindafansub/src/eu/kanade/tachiyomi/extension/tr/mindafansub/MindaFansub.kt @@ -0,0 +1,15 @@ +package eu.kanade.tachiyomi.extension.tr.mindafansub + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class MindaFansub : Madara( + "Minda Fansub", + "https://mindafansub.online", + "tr", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("tr")), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Always + override val useNewChapterEndpoint = true +}