Skip to content

Commit

Permalink
[optimize|fix] Increase the upper limit of the minimum width of the a…
Browse files Browse the repository at this point in the history
…rticle screen item and the search screen item; fix a incorrect string
  • Loading branch information
SkyD666 committed Jul 10, 2024
1 parent 6d54a32 commit 4299e88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
minSdk = 24
targetSdk = 34
versionCode = 18
versionName = "1.1-beta52"
versionName = "1.1-beta53"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ internal fun ItemMinWidthDialog(
onDismissRequest = onDismissRequest,
value = value,
onValueChange = { value = it },
valueRange = 200f..600f,
valueRange = 200f..1000f,
valueLabel = {
Box(modifier = Modifier.fillMaxWidth()) {
Text(
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
<string name="feed_screen_rss_icon_source_network">来自网络</string>
<string name="feed_screen_rss_icon_source_network_hint">以 http 或 https 开头的网址</string>
<string name="reset">重置</string>
<string name="save_picture_to_media_store_saved">图片以保存!</string>
<string name="save_picture_to_media_store_saved">图片已保存!</string>
<string name="article_screen_favorite">收藏</string>
<string name="article_screen_unfavorite">取消收藏</string>
<string name="article_screen_mark_as_unread">标为未读</string>
Expand Down

0 comments on commit 4299e88

Please sign in to comment.