diff --git a/src/en/boratscans/build.gradle b/src/en/boratscans/build.gradle new file mode 100644 index 000000000..6f354587a --- /dev/null +++ b/src/en/boratscans/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Borat Scans' + extClass = '.BoratScans' + themePkg = 'madara' + baseUrl = 'https://boratscans.com' + overrideVersionCode = 0 + isNsfw = false +} + +apply from: "$rootDir/common.gradle" diff --git a/src/en/boratscans/res/mipmap-hdpi/ic_launcher.png b/src/en/boratscans/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..305e74871 Binary files /dev/null and b/src/en/boratscans/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/en/boratscans/res/mipmap-mdpi/ic_launcher.png b/src/en/boratscans/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..a41541ad4 Binary files /dev/null and b/src/en/boratscans/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/en/boratscans/res/mipmap-xhdpi/ic_launcher.png b/src/en/boratscans/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..88d73fedb Binary files /dev/null and b/src/en/boratscans/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/en/boratscans/res/mipmap-xxhdpi/ic_launcher.png b/src/en/boratscans/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..c69a5270e Binary files /dev/null and b/src/en/boratscans/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/en/boratscans/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/boratscans/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..d078c575e Binary files /dev/null and b/src/en/boratscans/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/en/boratscans/src/eu/kanade/tachiyomi/extension/en/boratscans/BoratScans.kt b/src/en/boratscans/src/eu/kanade/tachiyomi/extension/en/boratscans/BoratScans.kt new file mode 100644 index 000000000..36331702e --- /dev/null +++ b/src/en/boratscans/src/eu/kanade/tachiyomi/extension/en/boratscans/BoratScans.kt @@ -0,0 +1,12 @@ +package eu.kanade.tachiyomi.extension.en.boratscans + +import eu.kanade.tachiyomi.multisrc.madara.Madara + +class BoratScans : Madara( + "Borat Scans", + "https://boratscans.com", + "en", +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = true +}