mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
Add AloneScanlator (#1514)
* Add Alone Scanlator * Fix date pattern * Fix overrideVersionCode value Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com> * Set 'useNewChapterEndpoint' to 'true' --------- Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
parent
23efcf1482
commit
a77ca44655
10
src/pt/alonescanlator/build.gradle
Normal file
10
src/pt/alonescanlator/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Alone Scanlator'
|
||||
extClass = '.AloneScanlator'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://alonescanlator.com.br'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
BIN
src/pt/alonescanlator/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/alonescanlator/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
BIN
src/pt/alonescanlator/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/alonescanlator/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
src/pt/alonescanlator/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/alonescanlator/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
BIN
src/pt/alonescanlator/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/alonescanlator/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/pt/alonescanlator/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/alonescanlator/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1,14 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.alonescanlator
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class AloneScanlator : Madara(
|
||||
"Alone Scanlator",
|
||||
"https://alonescanlator.com.br",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val useNewChapterEndpoint: Boolean = true
|
||||
}
|
Loading…
Reference in New Issue
Block a user