Add source Manga Time "ar" (#1852)

* Add source Manga Time "ar"

* Update MangaTime.kt

* Update MangaTime.kt
This commit is contained in:
mohamedotaku 2024-03-13 11:23:17 +00:00 committed by GitHub
parent 992945eb6f
commit cc6e67f0e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Manga Time'
extClass = '.MangaTime'
themePkg = 'madara'
baseUrl = 'https://anime-time.net'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.ar.mangatime
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaTime : Madara(
"Manga Time",
"https://anime-time.net",
"ar",
dateFormat = SimpleDateFormat("dd MMMM، yyyy", Locale("ar")),
) {
override val useNewChapterEndpoint = true
}