diff --git a/src/pt/lunarscan/build.gradle b/src/pt/lunarscan/build.gradle new file mode 100644 index 000000000..7229cc0dc --- /dev/null +++ b/src/pt/lunarscan/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Lunar Scan' + extClass = '.LunarScan' + themePkg = 'madara' + baseUrl = 'https://lunarscan.com.br' + overrideVersionCode = 1 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/pt/lunarscan/res/mipmap-hdpi/ic_launcher.png b/src/pt/lunarscan/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..dd5aa3136 Binary files /dev/null and b/src/pt/lunarscan/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/pt/lunarscan/res/mipmap-mdpi/ic_launcher.png b/src/pt/lunarscan/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..a19078c69 Binary files /dev/null and b/src/pt/lunarscan/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/pt/lunarscan/res/mipmap-xhdpi/ic_launcher.png b/src/pt/lunarscan/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..602ef9cc7 Binary files /dev/null and b/src/pt/lunarscan/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/pt/lunarscan/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/lunarscan/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..c1c643aea Binary files /dev/null and b/src/pt/lunarscan/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/pt/lunarscan/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/lunarscan/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..749eba7a8 Binary files /dev/null and b/src/pt/lunarscan/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/pt/lunarscan/src/eu/kanade/tachiyomi/extension/pt/lunarscan/LunarScan.kt b/src/pt/lunarscan/src/eu/kanade/tachiyomi/extension/pt/lunarscan/LunarScan.kt new file mode 100644 index 000000000..c4248f189 --- /dev/null +++ b/src/pt/lunarscan/src/eu/kanade/tachiyomi/extension/pt/lunarscan/LunarScan.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.pt.lunarscan + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class LunarScan : Madara( + "Lunar Scan", + "https://lunarscan.com.br", + "pt-BR", + SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")), +) { + override val mangaSubString = "obra" +}