diff --git a/src/es/tecnoprojects/build.gradle b/src/es/tecnoprojects/build.gradle new file mode 100644 index 000000000..8e9c757ed --- /dev/null +++ b/src/es/tecnoprojects/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'TecnoProjects' + extClass = '.TecnoProjects' + themePkg = 'madara' + baseUrl = 'https://tecnoprojects.com' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/tecnoprojects/res/mipmap-hdpi/ic_launcher.png b/src/es/tecnoprojects/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..7838b13d4 Binary files /dev/null and b/src/es/tecnoprojects/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/tecnoprojects/res/mipmap-mdpi/ic_launcher.png b/src/es/tecnoprojects/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..69946f9b7 Binary files /dev/null and b/src/es/tecnoprojects/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/tecnoprojects/res/mipmap-xhdpi/ic_launcher.png b/src/es/tecnoprojects/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..d38a52fd0 Binary files /dev/null and b/src/es/tecnoprojects/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/tecnoprojects/res/mipmap-xxhdpi/ic_launcher.png b/src/es/tecnoprojects/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..dcdd257a7 Binary files /dev/null and b/src/es/tecnoprojects/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/tecnoprojects/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/tecnoprojects/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..693497270 Binary files /dev/null and b/src/es/tecnoprojects/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/tecnoprojects/src/eu/kanade/tachiyomi/extension/es/tecnoprojects/TecnoProjects.kt b/src/es/tecnoprojects/src/eu/kanade/tachiyomi/extension/es/tecnoprojects/TecnoProjects.kt new file mode 100644 index 000000000..11688e218 --- /dev/null +++ b/src/es/tecnoprojects/src/eu/kanade/tachiyomi/extension/es/tecnoprojects/TecnoProjects.kt @@ -0,0 +1,15 @@ +package eu.kanade.tachiyomi.extension.es.tecnoprojects + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class TecnoProjects : Madara( + "TecnoProjects", + "https://tecnoprojects.com", + "es", + SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("es")), +) { + override val useLoadMoreRequest = LoadMoreStrategy.Always + override val useNewChapterEndpoint = true +}