PMscans-Change protocol from HTTP to HTTPS (#5011)
* PMscans-Change protocol from HTTP to HTTPS * Move BestManhua from Madara to WP MangStream
This commit is contained in:
parent
7d826f2c46
commit
8f606df520
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'Madara (multiple sources)'
|
extName = 'Madara (multiple sources)'
|
||||||
pkgNameSuffix = "all.madara"
|
pkgNameSuffix = "all.madara"
|
||||||
extClass = '.MadaraFactory'
|
extClass = '.MadaraFactory'
|
||||||
extVersionCode = 151
|
extVersionCode = 152
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
containsNsfw = true
|
containsNsfw = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,6 @@ class MadaraFactory : SourceFactory {
|
||||||
Azora(),
|
Azora(),
|
||||||
Bakaman(),
|
Bakaman(),
|
||||||
BestManga(),
|
BestManga(),
|
||||||
BestManhua(),
|
|
||||||
BoysLove(),
|
BoysLove(),
|
||||||
CatOnHeadTranslations(),
|
CatOnHeadTranslations(),
|
||||||
CatTranslator(),
|
CatTranslator(),
|
||||||
|
@ -257,10 +256,6 @@ class WebToonily : Madara("WebToonily", "https://webtoonily.com", "en")
|
||||||
|
|
||||||
class Manga18Fun : Madara("Manga18 Fun", "https://manga18.fun", "en")
|
class Manga18Fun : Madara("Manga18 Fun", "https://manga18.fun", "en")
|
||||||
|
|
||||||
class BestManhua : Madara("BestManhua", "https://bestmanhua.com", "en") {
|
|
||||||
override val pageListParseSelector = "li.blocks-gallery-item"
|
|
||||||
}
|
|
||||||
|
|
||||||
class CutiePie : Madara("Cutie Pie", "https://cutiepie.ga", "tr", SimpleDateFormat("dd MMMM yyyy", Locale.forLanguageTag("tr")))
|
class CutiePie : Madara("Cutie Pie", "https://cutiepie.ga", "tr", SimpleDateFormat("dd MMMM yyyy", Locale.forLanguageTag("tr")))
|
||||||
|
|
||||||
class DiamondFansub : Madara("DiamondFansub", "https://diamondfansub.com", "tr", SimpleDateFormat("MMMM dd, yyyy", Locale.forLanguageTag("tr")))
|
class DiamondFansub : Madara("DiamondFansub", "https://diamondfansub.com", "tr", SimpleDateFormat("MMMM dd, yyyy", Locale.forLanguageTag("tr")))
|
||||||
|
@ -999,7 +994,7 @@ class MangaLord : Madara("Manga Lord", "https://mangalord.com", "en")
|
||||||
@Nsfw
|
@Nsfw
|
||||||
class PornComix : Madara("PornComix", "https://www.porncomixonline.net", "en")
|
class PornComix : Madara("PornComix", "https://www.porncomixonline.net", "en")
|
||||||
|
|
||||||
class PMScans : Madara("PMScans", "http://www.pmscans.com", "en")
|
class PMScans : Madara("PMScans", "https://www.pmscans.com", "en")
|
||||||
|
|
||||||
class MangaRead : Madara("Manga Read", "https://mangaread.co", "en", SimpleDateFormat("yyyy-MM-dd", Locale.US))
|
class MangaRead : Madara("Manga Read", "https://mangaread.co", "en", SimpleDateFormat("yyyy-MM-dd", Locale.US))
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'WP MangaStream (multiple sources)'
|
extName = 'WP MangaStream (multiple sources)'
|
||||||
pkgNameSuffix = 'all.wpmangastream'
|
pkgNameSuffix = 'all.wpmangastream'
|
||||||
extClass = '.WPMangaStreamFactory'
|
extClass = '.WPMangaStreamFactory'
|
||||||
extVersionCode = 37
|
extVersionCode = 38
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,6 +50,7 @@ class WPMangaStreamFactory : SourceFactory {
|
||||||
Boosei(),
|
Boosei(),
|
||||||
Mangakyo(),
|
Mangakyo(),
|
||||||
AsuraScans(),
|
AsuraScans(),
|
||||||
|
BestManhua(),
|
||||||
SilenceScan(),
|
SilenceScan(),
|
||||||
SheaManga(),
|
SheaManga(),
|
||||||
FlameScans(),
|
FlameScans(),
|
||||||
|
@ -83,6 +84,7 @@ class SheaManga : WPMangaStream(
|
||||||
class AsuraScans : WPMangaStream("AsuraScans", "https://asurascans.com", "en") {
|
class AsuraScans : WPMangaStream("AsuraScans", "https://asurascans.com", "en") {
|
||||||
override val pageSelector = "div#readerarea img[lazy]"
|
override val pageSelector = "div#readerarea img[lazy]"
|
||||||
}
|
}
|
||||||
|
class BestManhua : WPMangaStream("BestManhua", "https://bestmanhua.com", "en")
|
||||||
|
|
||||||
class SekteKomik : WPMangaStream("Sekte Komik (WP Manga Stream)", "https://sektekomik.com", "id")
|
class SekteKomik : WPMangaStream("Sekte Komik (WP Manga Stream)", "https://sektekomik.com", "id")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue