diff --git a/src/es/legendscanlations/build.gradle b/src/es/legendscanlations/build.gradle new file mode 100644 index 000000000..15e67ee12 --- /dev/null +++ b/src/es/legendscanlations/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'LegendScanlations' + extClass = '.LegendScanlations' + themePkg = 'madara' + baseUrl = 'https://legendscanlations.com' + overrideVersionCode = 0 + isNsfw = false +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/legendscanlations/res/mipmap-hdpi/ic_launcher.png b/src/es/legendscanlations/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..00cebd958 Binary files /dev/null and b/src/es/legendscanlations/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/legendscanlations/res/mipmap-mdpi/ic_launcher.png b/src/es/legendscanlations/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..7c59828c7 Binary files /dev/null and b/src/es/legendscanlations/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/legendscanlations/res/mipmap-xhdpi/ic_launcher.png b/src/es/legendscanlations/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..677f2d7cb Binary files /dev/null and b/src/es/legendscanlations/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/legendscanlations/res/mipmap-xxhdpi/ic_launcher.png b/src/es/legendscanlations/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..2f4f91e37 Binary files /dev/null and b/src/es/legendscanlations/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/legendscanlations/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/legendscanlations/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..75d69a7dd Binary files /dev/null and b/src/es/legendscanlations/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/legendscanlations/src/eu/kanade/tachiyomi/extension/es/legendscanlations/LegendScanlations.kt b/src/es/legendscanlations/src/eu/kanade/tachiyomi/extension/es/legendscanlations/LegendScanlations.kt new file mode 100644 index 000000000..6378b385b --- /dev/null +++ b/src/es/legendscanlations/src/eu/kanade/tachiyomi/extension/es/legendscanlations/LegendScanlations.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.es.legendscanlations + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class LegendScanlations : Madara( + "LegendScanlations", + "https://legendscanlations.com", + "es", + SimpleDateFormat("dd/MM/yyyy", Locale("es")), +) { + override val useNewChapterEndpoint = true +}