diff --git a/src/all/luscious/CHANGELOG.md b/src/all/luscious/CHANGELOG.md index 924b284e7..714eb5450 100644 --- a/src/all/luscious/CHANGELOG.md +++ b/src/all/luscious/CHANGELOG.md @@ -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 \ No newline at end of file +* first version diff --git a/src/all/luscious/README.md b/src/all/luscious/README.md index db324677a..07ff8a3b7 100644 --- a/src/all/luscious/README.md +++ b/src/all/luscious/README.md @@ -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) \ No newline at end of file +#### 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) diff --git a/src/all/luscious/build.gradle b/src/all/luscious/build.gradle index 62c5c2957..232f9d6bd 100644 --- a/src/all/luscious/build.gradle +++ b/src/all/luscious/build.gradle @@ -6,7 +6,7 @@ ext { extName = 'Luscious' pkgNameSuffix = 'all.luscious' extClass = '.LusciousFactory' - extVersionCode = 18 + extVersionCode = 19 isNsfw = true } diff --git a/src/all/luscious/src/eu/kanade/tachiyomi/extension/all/luscious/Luscious.kt b/src/all/luscious/src/eu/kanade/tachiyomi/extension/all/luscious/Luscious.kt index e8db1c207..1a61d1049 100644 --- a/src/all/luscious/src/eu/kanade/tachiyomi/extension/all/luscious/Luscious.kt +++ b/src/all/luscious/src/eu/kanade/tachiyomi/extension/all/luscious/Luscious.kt @@ -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"