Added MangaRuhu extension for Turkish manga source. (#5830)

* Add: MangaRuhu extension

* res updated

* Update build.gradle

* Update MangaRuhu.kt

---------

Co-authored-by: Forza <email@ornek.com>
This commit is contained in:
Forza06 2024-11-07 14:16:53 +03:00 committed by Draff
parent fefd4b85c3
commit bdc4f38a6f
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Manga Ruhu'
extClass = '.MangaRuhu'
themePkg = 'madara'
baseUrl = 'https://mangaruhu.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.mangaruhu
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaRuhu : Madara(
"Manga Ruhu",
"https://mangaruhu.com",
"tr",
SimpleDateFormat("d MMMM yyyy", Locale("tr")),
) {
override val filterNonMangaItems = false
}