diff --git a/src/id/manhwalistid/build.gradle b/src/id/manhwalistid/build.gradle new file mode 100644 index 000000000..ac9dcd62a --- /dev/null +++ b/src/id/manhwalistid/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Manhwa List' + extClass = '.ManhwaList' + themePkg = 'mangathemesia' + baseUrl = 'https://manhwalist.xyz' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/id/manhwalistid/res/mipmap-hdpi/ic_launcher.png b/src/id/manhwalistid/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..2b17b6eeb Binary files /dev/null and b/src/id/manhwalistid/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/id/manhwalistid/res/mipmap-mdpi/ic_launcher.png b/src/id/manhwalistid/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..4f69f703c Binary files /dev/null and b/src/id/manhwalistid/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/id/manhwalistid/res/mipmap-xhdpi/ic_launcher.png b/src/id/manhwalistid/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..6ade5ef8e Binary files /dev/null and b/src/id/manhwalistid/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/id/manhwalistid/res/mipmap-xxhdpi/ic_launcher.png b/src/id/manhwalistid/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..e0c758c73 Binary files /dev/null and b/src/id/manhwalistid/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/id/manhwalistid/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/manhwalistid/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..42e7f5505 Binary files /dev/null and b/src/id/manhwalistid/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/id/manhwalistid/src/eu/kanade/tachiyomi/extension/id/manhwalistid/ManhwaList.kt b/src/id/manhwalistid/src/eu/kanade/tachiyomi/extension/id/manhwalistid/ManhwaList.kt new file mode 100644 index 000000000..120b60a1b --- /dev/null +++ b/src/id/manhwalistid/src/eu/kanade/tachiyomi/extension/id/manhwalistid/ManhwaList.kt @@ -0,0 +1,15 @@ +package eu.kanade.tachiyomi.extension.id.manhwalistid + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import eu.kanade.tachiyomi.network.interceptor.rateLimit +import okhttp3.OkHttpClient + +class ManhwaList : MangaThemesia( + "Manhwa List", + "https://manhwalist.xyz", + "id", +) { + override val client: OkHttpClient = super.client.newBuilder() + .rateLimit(3) + .build() +}