Bato.to: remove broken mirrors, add new mirrors (#17211)

* Bato.to: remove broken mirrors

* Bato.to: add more mirrors

* create MIRROR_PREF_ENTRY_VALUES from MIRROR_PREF_ENTRIES
This commit is contained in:
Vetle Ledaal 2023-07-22 15:47:35 +02:00 committed by GitHub
parent da0e1213a3
commit 630c947027
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 19 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Bato.to'
pkgNameSuffix = 'all.batoto'
extClass = '.BatoToFactory'
extVersionCode = 31
extVersionCode = 32
isNsfw = true
}

View File

@ -938,36 +938,32 @@ open class BatoTo(
private const val MIRROR_PREF_TITLE = "Mirror"
private val MIRROR_PREF_ENTRIES = arrayOf(
"bato.to",
"batocc.com",
"batocomic.com",
"batocomic.net",
"batocomic.org",
"batotoo.com",
"batotwo.com",
"battwo.com",
"comiko.net",
"comiko.org",
"mangatoto.com",
"mangatoto.net",
"mangatoto.org",
"mycordant.co.uk",
"readtoto.com",
"readtoto.net",
"readtoto.org",
"dto.to",
"hto.to",
"mto.to",
"wto.to",
"xbato.com",
"xbato.net",
"xbato.org",
"zbato.com",
"zbato.net",
"zbato.org",
)
private val MIRROR_PREF_ENTRY_VALUES = arrayOf(
"https://bato.to",
"https://batocc.com",
"https://batotoo.com",
"https://batotwo.com",
"https://battwo.com",
"https://comiko.net",
"https://mangatoto.com",
"https://mangatoto.net",
"https://mangatoto.org",
"https://mycordant.co.uk",
"https://dto.to",
"https://hto.to",
"https://mto.to",
"https://wto.to",
)
private val MIRROR_PREF_ENTRY_VALUES = MIRROR_PREF_ENTRIES.map { "https://$it" }.toTypedArray()
private val MIRROR_PREF_DEFAULT_VALUE = MIRROR_PREF_ENTRY_VALUES[0]
private const val ALT_CHAPTER_LIST_PREF_KEY = "ALT_CHAPTER_LIST"