Skip to content

Commit

Permalink
Add KofiScans (#5309)
Browse files Browse the repository at this point in the history
  • Loading branch information
choppeh authored and cuong-tran committed Sep 30, 2024
1 parent ed358a4 commit 5f4ad62
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/id/kofiscans/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ext {
extName = 'Kofi Scans'
extClass = '.KofiScans'
themePkg = 'mangathemesia'
baseUrl = 'https://kofiscans.me'
overrideVersionCode = 0
}

apply from: "$rootDir/common.gradle"
Binary file added src/id/kofiscans/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/id/kofiscans/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/id/kofiscans/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.id.kofiscans

import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient

class KofiScans : MangaThemesia(
"Kofi Scans",
"https://kofiscans.me",
"id",
"/manhwa",
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(3)
.build()
}

0 comments on commit 5f4ad62

Please sign in to comment.