diff --git a/src/pt/mysticmoon/build.gradle b/src/pt/mysticmoon/build.gradle new file mode 100644 index 000000000..6814c9eaf --- /dev/null +++ b/src/pt/mysticmoon/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Mystic Moon' + extClass = '.MysticMoon' + themePkg = 'madara' + baseUrl = 'https://mysticmagic.com.br' + overrideVersionCode = 1 +} + +apply from: "$rootDir/common.gradle" + diff --git a/src/pt/mysticmoon/res/mipmap-hdpi/ic_launcher.png b/src/pt/mysticmoon/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..b51b328a4 Binary files /dev/null and b/src/pt/mysticmoon/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/pt/mysticmoon/res/mipmap-mdpi/ic_launcher.png b/src/pt/mysticmoon/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..55247c042 Binary files /dev/null and b/src/pt/mysticmoon/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/pt/mysticmoon/res/mipmap-xhdpi/ic_launcher.png b/src/pt/mysticmoon/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..682a42a43 Binary files /dev/null and b/src/pt/mysticmoon/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/pt/mysticmoon/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/mysticmoon/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..170611012 Binary files /dev/null and b/src/pt/mysticmoon/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/pt/mysticmoon/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/mysticmoon/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..c01b0923c Binary files /dev/null and b/src/pt/mysticmoon/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/pt/mysticmoon/src/eu/kanade/tachiyomi/extension/pt/mysticmoon/MysticMoon.kt b/src/pt/mysticmoon/src/eu/kanade/tachiyomi/extension/pt/mysticmoon/MysticMoon.kt new file mode 100644 index 000000000..0046e4d6a --- /dev/null +++ b/src/pt/mysticmoon/src/eu/kanade/tachiyomi/extension/pt/mysticmoon/MysticMoon.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.pt.mysticmoon + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class MysticMoon : Madara( + "Mystic Moon", + "https://mysticmagic.com.br", + "pt-BR", + SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")), +) { + override val useNewChapterEndpoint: Boolean = true +}