parent
031ed7b130
commit
966fc5cf0e
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: My Manga Reader CMS (Many sources)'
|
appName = 'Tachiyomi: My Manga Reader CMS (Many sources)'
|
||||||
pkgNameSuffix = 'all.mmrcms'
|
pkgNameSuffix = 'all.mmrcms'
|
||||||
extClass = '.MyMangaReaderCMSSources'
|
extClass = '.MyMangaReaderCMSSources'
|
||||||
extVersionCode = 26
|
extVersionCode = 27
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -249,7 +249,8 @@ class Generator {
|
||||||
Triple("es", "Mangas.pw", "https://mangas.pw"),
|
Triple("es", "Mangas.pw", "https://mangas.pw"),
|
||||||
Triple("es", "Tumangaonline.co", "http://tumangaonline.co"),
|
Triple("es", "Tumangaonline.co", "http://tumangaonline.co"),
|
||||||
Triple("bg", "Utsukushii", "https://manga.utsukushii-bg.com"),
|
Triple("bg", "Utsukushii", "https://manga.utsukushii-bg.com"),
|
||||||
Triple("es", "Universo Yuri", "https://universoyuri.com/"),
|
Triple("es", "Universo Yuri", "https://universoyuri.com"),
|
||||||
|
Triple("pl", "Phoenix-Scans", "https://phoenix-scans.pl"),
|
||||||
//NOTE: THIS SOURCE CONTAINS A CUSTOM LANGUAGE SYSTEM (which will be ignored)!
|
//NOTE: THIS SOURCE CONTAINS A CUSTOM LANGUAGE SYSTEM (which will be ignored)!
|
||||||
Triple("other", "HentaiShark", "https://www.hentaishark.com"))
|
Triple("other", "HentaiShark", "https://www.hentaishark.com"))
|
||||||
//Changed CMS
|
//Changed CMS
|
||||||
|
|
|
@ -145,12 +145,12 @@ class MyMangaReaderCMSSource(override val lang: String,
|
||||||
thumbnail_url = coverGuess(document.select(".row [class^=img-responsive]").firstOrNull()?.attr("abs:src"), document.location())
|
thumbnail_url = coverGuess(document.select(".row [class^=img-responsive]").firstOrNull()?.attr("abs:src"), document.location())
|
||||||
description = document.select(".row .well p").text().trim()
|
description = document.select(".row .well p").text().trim()
|
||||||
|
|
||||||
val detailAuthor = setOf("author(s)","autor(es)","auteur(s)","著作","yazar(lar)","mangaka(lar)","pengarang/penulis","pengarang","penulis","autor","المؤلف","перевод")
|
val detailAuthor = setOf("author(s)","autor(es)","auteur(s)","著作","yazar(lar)","mangaka(lar)","pengarang/penulis","pengarang","penulis","autor","المؤلف","перевод", "autor/autorzy")
|
||||||
val detailArtist = setOf("artist(s)","artiste(s)","sanatçi(lar)","artista(s)","artist(s)/ilustrator","الرسام","seniman")
|
val detailArtist = setOf("artist(s)","artiste(s)","sanatçi(lar)","artista(s)","artist(s)/ilustrator","الرسام","seniman", "rysownik/rysownicy")
|
||||||
val detailGenre = setOf("categories","categorías","catégories","ジャンル","kategoriler","categorias","kategorie","التصنيفات","жанр","kategori" )
|
val detailGenre = setOf("categories","categorías","catégories","ジャンル","kategoriler","categorias","kategorie","التصنيفات","жанр","kategori", "tagi")
|
||||||
val detailStatus = setOf("status","statut","estado","状態","durum","الحالة","статус")
|
val detailStatus = setOf("status","statut","estado","状態","durum","الحالة","статус")
|
||||||
val detailStatusComplete = setOf("complete","مكتملة","complet","completo")
|
val detailStatusComplete = setOf("complete","مكتملة","complet","completo", "zakończone")
|
||||||
val detailStatusOngoing = setOf("ongoing","مستمرة","en cours","em lançamento")
|
val detailStatusOngoing = setOf("ongoing","مستمرة","en cours","em lançamento", "prace w toku")
|
||||||
val detailDescription = setOf("description","resumen")
|
val detailDescription = setOf("description","resumen")
|
||||||
|
|
||||||
for (element in document.select(".row .dl-horizontal dt")) {
|
for (element in document.select(".row .dl-horizontal dt")) {
|
||||||
|
|
Loading…
Reference in New Issue