Add SMA-16 to SilentMangaAudition. (#10255)

This commit is contained in:
Alessandro Jean 2021-12-28 09:52:38 -03:00 committed by GitHub
parent ba8e452eec
commit 3a84dcc893
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Silent Manga Audition'
pkgNameSuffix = 'en.silentmangaaudition'
extClass = '.SilentMangaAudition'
extVersionCode = 3
extVersionCode = 4
}
apply from: "$rootDir/common.gradle"

View File

@ -8,6 +8,12 @@ data class SmaEntry(
)
val SMA_ENTRIES = listOf(
SmaEntry(
"SMA-16 “MOMENTS of FEAR, JOY, or LOVE",
"/sma16-silent-manga-audition-2021-results-announcement",
"/v/sma16/lacrimosa-by-laica-chrose/?lang=en",
"https://www.manga-audition.com/wp/wp-content/uploads/2021/11/hero_sp_new.jpg"
),
SmaEntry(
"SMA-15 “Moments of CRYING, SMILING or LOVE”",
"/sma15-silent-manga-audition-2021-award-winners",

View File

@ -130,6 +130,6 @@ class SilentMangaAudition : HttpSource() {
private const val SMACMAG_URL = "https://smacmag.net"
private const val USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) " +
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36"
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"
}
}