Add LikeMangaIn (#6177)

* Add LikeMangaIn

* LikeMangaIn: fix import

* LikeMangaIn: change locale tu US
This commit is contained in:
dngonz 2024-11-20 11:07:20 +01:00 committed by Draff
parent 151548c0f9
commit bb362356c2
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'LikeManga.in'
extClass = '.LikeMangaIn'
themePkg = 'madara'
baseUrl = 'https://likemanga.in'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.en.likemangain
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class LikeMangaIn : Madara(
"LikeMangaIn",
"https://likemanga.in",
"en",
dateFormat = SimpleDateFormat("dd MMMM, yyyy", Locale.US),
) {
override val useNewChapterEndpoint = true
}