diff --git a/src/id/sobatmanku/build.gradle b/src/id/sobatmanku/build.gradle new file mode 100644 index 000000000..59e11e01f --- /dev/null +++ b/src/id/sobatmanku/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'SobatManKu' + extClass = '.SobatManKu' + themePkg = 'zeistmanga' + baseUrl = 'https://www.sobatmanku19.cab' + overrideVersionCode = 1 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/id/sobatmanku/res/mipmap-hdpi/ic_launcher.png b/src/id/sobatmanku/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..68a17f51b Binary files /dev/null and b/src/id/sobatmanku/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/id/sobatmanku/res/mipmap-mdpi/ic_launcher.png b/src/id/sobatmanku/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..6c936355d Binary files /dev/null and b/src/id/sobatmanku/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/id/sobatmanku/res/mipmap-xhdpi/ic_launcher.png b/src/id/sobatmanku/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..c7699dd2a Binary files /dev/null and b/src/id/sobatmanku/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/id/sobatmanku/res/mipmap-xxhdpi/ic_launcher.png b/src/id/sobatmanku/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..c8faabf66 Binary files /dev/null and b/src/id/sobatmanku/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/id/sobatmanku/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/sobatmanku/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..4b9834a9c Binary files /dev/null and b/src/id/sobatmanku/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/id/sobatmanku/src/eu/kanade/tachiyomi/extension/id/sobatmanku/SobatManKu.kt b/src/id/sobatmanku/src/eu/kanade/tachiyomi/extension/id/sobatmanku/SobatManKu.kt new file mode 100644 index 000000000..62ae4fc58 --- /dev/null +++ b/src/id/sobatmanku/src/eu/kanade/tachiyomi/extension/id/sobatmanku/SobatManKu.kt @@ -0,0 +1,19 @@ +package eu.kanade.tachiyomi.extension.id.sobatmanku + +import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga +import eu.kanade.tachiyomi.source.model.SChapter +import okhttp3.Response + +class SobatManKu : ZeistManga("SobatManKu", "https://www.sobatmanku19.cab", "id") { + + override val hasFilters = true + + override fun chapterListParse(response: Response): List { + return super.chapterListParse(response).onEach { + // fix some chapter name + it.name = it.name.run { + substring(indexOf("Chapter")) + } + } + } +}