diff --git a/src/en/mangatxto/build.gradle b/src/en/mangatxto/build.gradle new file mode 100644 index 000000000..3e4a70bc1 --- /dev/null +++ b/src/en/mangatxto/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Manga Tx.to' + extClass = '.MangaTxTo' + themePkg = 'madara' + baseUrl = 'https://mangatx.to' + overrideVersionCode = 0 + isNsfw = false +} + +apply from: "$rootDir/common.gradle" diff --git a/src/en/mangatxto/res/mipmap-hdpi/ic_launcher.png b/src/en/mangatxto/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..a9ac5de8b Binary files /dev/null and b/src/en/mangatxto/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/en/mangatxto/res/mipmap-mdpi/ic_launcher.png b/src/en/mangatxto/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..adfbef7ba Binary files /dev/null and b/src/en/mangatxto/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/en/mangatxto/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangatxto/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..94595ea71 Binary files /dev/null and b/src/en/mangatxto/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/en/mangatxto/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangatxto/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..be0736842 Binary files /dev/null and b/src/en/mangatxto/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/en/mangatxto/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangatxto/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..16438b4f8 Binary files /dev/null and b/src/en/mangatxto/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/en/mangatxto/src/eu/kanade/tachiyomi/extension/en/mangatxto/MangaTxTo.kt b/src/en/mangatxto/src/eu/kanade/tachiyomi/extension/en/mangatxto/MangaTxTo.kt new file mode 100644 index 000000000..f214f1624 --- /dev/null +++ b/src/en/mangatxto/src/eu/kanade/tachiyomi/extension/en/mangatxto/MangaTxTo.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.en.mangatxto + +import eu.kanade.tachiyomi.multisrc.madara.Madara + +class MangaTxTo : Madara( + "Manga Tx.to", + "https://mangatx.to", + "en", +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false + + override val mangaSubString = "manhua" +}