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:
parent
7e2b13f6b5
commit
b9bc7e324a
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -6,7 +6,7 @@ ext {
|
|||
extName = 'Luscious'
|
||||
pkgNameSuffix = 'all.luscious'
|
||||
extClass = '.LusciousFactory'
|
||||
extVersionCode = 18
|
||||
extVersionCode = 19
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue