Add Royal Manga (#8643)
* Add Royal Manga * Update src/fr/royalmanga/build.gradle
This commit is contained in:
parent
38f511b815
commit
590f013578
9
src/fr/royalmanga/build.gradle
Normal file
9
src/fr/royalmanga/build.gradle
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Royal Manga'
|
||||||
|
extClass = '.RoyalManga'
|
||||||
|
themePkg = 'zeistmanga'
|
||||||
|
baseUrl = 'https://www.royalmanga.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/fr/royalmanga/res/mipmap-hdpi/ic_launcher_royalmanga.png
Normal file
BIN
src/fr/royalmanga/res/mipmap-hdpi/ic_launcher_royalmanga.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
BIN
src/fr/royalmanga/res/mipmap-mdpi/ic_launcher_royalmanga.png
Normal file
BIN
src/fr/royalmanga/res/mipmap-mdpi/ic_launcher_royalmanga.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
BIN
src/fr/royalmanga/res/mipmap-xhdpi/ic_launcher_royalmanga.png
Normal file
BIN
src/fr/royalmanga/res/mipmap-xhdpi/ic_launcher_royalmanga.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
BIN
src/fr/royalmanga/res/mipmap-xxhdpi/ic_launcher_royalmanga.png
Normal file
BIN
src/fr/royalmanga/res/mipmap-xxhdpi/ic_launcher_royalmanga.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/fr/royalmanga/res/mipmap-xxxhdpi/ic_launcher_royalmanga.png
Normal file
BIN
src/fr/royalmanga/res/mipmap-xxxhdpi/ic_launcher_royalmanga.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
@ -0,0 +1,20 @@
|
|||||||
|
package eu.kanade.tachiyomi.extension.fr.royalmanga
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
|
||||||
|
class RoyalManga : ZeistManga("Royal Manga", "https://www.royalmanga.com", "fr") {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val popularMangaSelector = "div#PopularPosts2 div.grid > article"
|
||||||
|
override val popularMangaSelectorTitle = "h3 a"
|
||||||
|
override val popularMangaSelectorUrl = popularMangaSelectorTitle
|
||||||
|
|
||||||
|
override val mangaDetailsSelector = "main"
|
||||||
|
override val mangaDetailsSelectorGenres = "dl dt:contains(Genre) + dd a"
|
||||||
|
override val mangaDetailsSelectorAuthor = "u > b:contains(Auteur) + dd"
|
||||||
|
|
||||||
|
override val pageListSelector = "article#reader div.separator"
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user