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:
Chopper 2024-02-27 11:16:55 -03:00 committed by GitHub
parent 23efcf1482
commit a77ca44655
7 changed files with 24 additions and 0 deletions

View 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"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -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
}