高清质量改为100

This commit is contained in:
Developer
2026-04-17 21:56:21 +08:00
parent 958e232983
commit b85bc11c2a
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@@ -15,6 +15,7 @@ bin/
gen/ gen/
out/ out/
build/ build/
!app/build/outputs/apk/release/app-release.apk
# Gradle files # Gradle files
.gradle/ .gradle/
@@ -96,4 +97,4 @@ app/my-release.jks
push.bat push.bat
#测试文件 #测试文件
test* test*.py

View File

@@ -52,7 +52,7 @@ enum class LocationMode {
* 图片质量 * 图片质量
*/ */
enum class ImageQuality(val quality: Int, val displayName: String) { enum class ImageQuality(val quality: Int, val displayName: String) {
High(95, "高清"), High(100, "高清"),
Standard(85, "标准"), Standard(85, "标准"),
Low(70, "流畅") Low(70, "流畅")
} }