diff --git a/src/pt/wintersun/build.gradle b/src/pt/wintersun/build.gradle new file mode 100644 index 000000000..e95359f62 --- /dev/null +++ b/src/pt/wintersun/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Winter Sun' + extClass = '.WinterSun' + themePkg = 'madara' + baseUrl = 'https://wintersunscan.xyz' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/pt/wintersun/res/mipmap-hdpi/ic_launcher.png b/src/pt/wintersun/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..fff4b7e5e Binary files /dev/null and b/src/pt/wintersun/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/pt/wintersun/res/mipmap-mdpi/ic_launcher.png b/src/pt/wintersun/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..0787b331c Binary files /dev/null and b/src/pt/wintersun/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/pt/wintersun/res/mipmap-xhdpi/ic_launcher.png b/src/pt/wintersun/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..06163e549 Binary files /dev/null and b/src/pt/wintersun/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/pt/wintersun/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/wintersun/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..e95a14893 Binary files /dev/null and b/src/pt/wintersun/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/pt/wintersun/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/wintersun/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..fbcd53e48 Binary files /dev/null and b/src/pt/wintersun/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/pt/wintersun/src/eu/kanade/tachiyomi/extension/pt/wintersun/WinterSun.kt b/src/pt/wintersun/src/eu/kanade/tachiyomi/extension/pt/wintersun/WinterSun.kt new file mode 100644 index 000000000..873300bd4 --- /dev/null +++ b/src/pt/wintersun/src/eu/kanade/tachiyomi/extension/pt/wintersun/WinterSun.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.pt.wintersun + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class WinterSun : Madara( + "Winter Sun", + "https://wintersunscan.xyz", + "pt-BR", + SimpleDateFormat("dd 'de' MMMMM 'de' yyyy", Locale("pt", "BR")), +) { + override val useNewChapterEndpoint = true +}