PoseidonScans add (#7003)

* add poseidon scans

* rename
This commit is contained in:
dngonz 2025-01-06 14:17:24 +01:00 committed by Draff
parent ad73175a1f
commit 05aebf390a
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Poseidon Scans'
extClass = '.PoseidonScans'
themePkg = 'madara'
baseUrl = 'https://poseidonscans.fr'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 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.fr.poseidonscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class PoseidonScans : Madara(
"PoseidonScans",
"https://poseidonscans.fr",
"fr",
dateFormat = SimpleDateFormat("dd/mm/yyyy", Locale.FRANCE),
) {
override val useNewChapterEndpoint = true
}