diff --git a/src/fr/lunarscanshentai/build.gradle b/src/fr/lunarscanshentai/build.gradle new file mode 100644 index 000000000..7cfb852c3 --- /dev/null +++ b/src/fr/lunarscanshentai/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Lunar Scans Hentai' + extClass = '.LunarScansHentai' + themePkg = 'mangathemesia' + baseUrl = 'https://hentai.lunarscans.fr' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/fr/lunarscanshentai/res/mipmap-hdpi/ic_launcher.png b/src/fr/lunarscanshentai/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..d7f5f3f09 Binary files /dev/null and b/src/fr/lunarscanshentai/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/fr/lunarscanshentai/res/mipmap-mdpi/ic_launcher.png b/src/fr/lunarscanshentai/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..3f9d118fe Binary files /dev/null and b/src/fr/lunarscanshentai/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/fr/lunarscanshentai/res/mipmap-xhdpi/ic_launcher.png b/src/fr/lunarscanshentai/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..f7443b641 Binary files /dev/null and b/src/fr/lunarscanshentai/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/fr/lunarscanshentai/res/mipmap-xxhdpi/ic_launcher.png b/src/fr/lunarscanshentai/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..345e8d664 Binary files /dev/null and b/src/fr/lunarscanshentai/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/fr/lunarscanshentai/res/mipmap-xxxhdpi/ic_launcher.png b/src/fr/lunarscanshentai/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..c41c21ab4 Binary files /dev/null and b/src/fr/lunarscanshentai/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/fr/lunarscanshentai/src/eu/kanade/tachiyomi/extension/fr/lunarscanshentai/LunarScansHentai.kt b/src/fr/lunarscanshentai/src/eu/kanade/tachiyomi/extension/fr/lunarscanshentai/LunarScansHentai.kt new file mode 100644 index 000000000..b37f340be --- /dev/null +++ b/src/fr/lunarscanshentai/src/eu/kanade/tachiyomi/extension/fr/lunarscanshentai/LunarScansHentai.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.fr.lunarscanshentai + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import java.text.SimpleDateFormat +import java.util.Locale + +class LunarScansHentai : MangaThemesia( + "Lunar Scans Hentai", + "https://hentai.lunarscans.fr", + "fr", + dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.FRENCH), +) { + override val supportsLatest = false +}