Luscious: Change default resolution to `Original` (#10718)

* Change default resolution to Original

* Update README.md

* Update CHANGELOG.md

* Update build.gradle
This commit is contained in:
jopejoe1 2022-02-06 11:03:02 +13:00 committed by GitHub
parent 7e2b13f6b5
commit b9bc7e324a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,9 @@
## 1.2.19
### Change
* `Original` image resolution is now default
## 1.2.18
### Features
@ -129,4 +135,4 @@
### Features
* first version
* first version

View File

@ -20,4 +20,7 @@ Features that require login only work when the mirror is changed to the Members
#### Where did the other Luscious extensions go?
They are now mirror options in the Luscious extension.
[Uncomment this if needed]: <> (## Guides)
#### Why are the animated images not loading?
For some `.gif` files when Luscious is resizing them they get turned in to `.jpg` files. Change your Image resolution to `Original`.
[Uncomment this if needed]: <> (## Guides)

View File

@ -6,7 +6,7 @@ ext {
extName = 'Luscious'
pkgNameSuffix = 'all.luscious'
extClass = '.LusciousFactory'
extVersionCode = 18
extVersionCode = 19
isNsfw = true
}

View File

@ -828,7 +828,7 @@ abstract class Luscious(
private const val RESOLUTION_PREF_TITLE = "Image resolution"
private val RESOLUTION_PREF_ENTRIES = arrayOf("Low", "Medium", "High", "Original")
private val RESOLUTION_PREF_ENTRY_VALUES = arrayOf("2", "1", "0", "-1")
private val RESOLUTION_PREF_DEFAULT_VALUE = RESOLUTION_PREF_ENTRY_VALUES[2]
private val RESOLUTION_PREF_DEFAULT_VALUE = RESOLUTION_PREF_ENTRY_VALUES[3]
private const val SORT_PREF_KEY = "SORT"
private const val SORT_PREF_TITLE = "Page Sort"