Add SMA-15 to SilentMangaAudition. (#6909)

This commit is contained in:
Alessandro Jean 2021-05-08 19:04:51 -03:00 committed by GitHub
parent 4424edf879
commit b146544ab2
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 = 2
extVersionCode = 3
libVersion = '1.2'
}

View File

@ -8,6 +8,12 @@ data class SmaEntry(
)
val SMA_ENTRIES = listOf(
SmaEntry(
"SMA-15 “Moments of CRYING, SMILING or LOVE”",
"/sma15-silent-manga-audition-2021-award-winners",
"/v/sma15/blossom-by-enewald/?lang=en",
"https://www.manga-audition.com/wp/wp-content/themes/gridlove-child/assets/img/award-result/sma15/header_sp.png"
),
SmaEntry(
"SMA-14 “Creature, Spirits & Monsters”",
"/sma14-silent-manga-audition-2020-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/89.0.4389.114 Safari/537.36"
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36"
}
}