diff --git a/src/es/manhwases/build.gradle b/src/es/manhwases/build.gradle new file mode 100644 index 000000000..a7545ae3f --- /dev/null +++ b/src/es/manhwases/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Manhwas.es' + extClass = '.ManhwasEs' + themePkg = 'madara' + baseUrl = 'https://www.manhwas.es' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/manhwases/res/mipmap-hdpi/ic_launcher.png b/src/es/manhwases/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..575479e90 Binary files /dev/null and b/src/es/manhwases/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/manhwases/res/mipmap-mdpi/ic_launcher.png b/src/es/manhwases/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..b0eac8cce Binary files /dev/null and b/src/es/manhwases/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/manhwases/res/mipmap-xhdpi/ic_launcher.png b/src/es/manhwases/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..5e3c5c688 Binary files /dev/null and b/src/es/manhwases/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/manhwases/res/mipmap-xxhdpi/ic_launcher.png b/src/es/manhwases/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..9fd12a304 Binary files /dev/null and b/src/es/manhwases/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/manhwases/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/manhwases/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..b794e244d Binary files /dev/null and b/src/es/manhwases/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/manhwases/src/eu/kanade/tachiyomi/extension/es/manhwases/ManhwasEs.kt b/src/es/manhwases/src/eu/kanade/tachiyomi/extension/es/manhwases/ManhwasEs.kt new file mode 100644 index 000000000..60a072d3c --- /dev/null +++ b/src/es/manhwases/src/eu/kanade/tachiyomi/extension/es/manhwases/ManhwasEs.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.es.manhwases + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class ManhwasEs : Madara( + "Manhwas.es", + "https://manhwas.es", + "es", + dateFormat = SimpleDateFormat("MMM dd, yy", Locale("es")), +) { + override val useNewChapterEndpoint = true +}