diff --git a/src/tr/lowerworld/build.gradle b/src/tr/lowerworld/build.gradle new file mode 100644 index 000000000..b66f9d094 --- /dev/null +++ b/src/tr/lowerworld/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'LowerWorld' + extClass = '.LowerWorld' + themePkg = 'madara' + baseUrl = 'https://lower-world.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/tr/lowerworld/res/mipmap-hdpi/ic_launcher.png b/src/tr/lowerworld/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..fe7d51cf7 Binary files /dev/null and b/src/tr/lowerworld/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/tr/lowerworld/res/mipmap-mdpi/ic_launcher.png b/src/tr/lowerworld/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..b62b67537 Binary files /dev/null and b/src/tr/lowerworld/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/tr/lowerworld/res/mipmap-xhdpi/ic_launcher.png b/src/tr/lowerworld/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..9f7a8e5cb Binary files /dev/null and b/src/tr/lowerworld/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/tr/lowerworld/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/lowerworld/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..40f8dea40 Binary files /dev/null and b/src/tr/lowerworld/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/tr/lowerworld/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/lowerworld/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..0881a5803 Binary files /dev/null and b/src/tr/lowerworld/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/tr/lowerworld/src/eu/kanade/tachiyomi/extension/tr/lowerworld/LowerWorld.kt b/src/tr/lowerworld/src/eu/kanade/tachiyomi/extension/tr/lowerworld/LowerWorld.kt new file mode 100644 index 000000000..27ba92e73 --- /dev/null +++ b/src/tr/lowerworld/src/eu/kanade/tachiyomi/extension/tr/lowerworld/LowerWorld.kt @@ -0,0 +1,15 @@ +package eu.kanade.tachiyomi.extension.tr.lowerworld + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class LowerWorld : Madara( + "LowerWorld", + "https://lower-world.com", + "tr", + dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false +}