Skip to content

Commit 12dfa2b

Browse files
committed
Add changelog files and release notes for issue #4351
1 parent 080a944 commit 12dfa2b

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

changelog/unreleased/4351

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Bugfix: Resolve incorrect truncation of long display names in Manage Accounts view
2+
3+
Resolved the bug where long display names were truncated incorrectly in the Manage Accounts view.
4+
Now, display names are properly truncated in the middle with ellipsis (...) to maintain readability.
5+
6+
Affected Issue:
7+
- Fixes #4351

owncloudApp/src/main/java/com/owncloud/android/presentation/releasenotes/ReleaseNotesViewModel.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ class ReleaseNotesViewModel(
105105
subtitle = R.string.release_notes_4_3_0_subtitle_password_generator,
106106
type = ReleaseNoteType.ENHANCEMENT
107107
),
108+
ReleaseNote(
109+
title = R.string.release_notes_4_3_0_title_bug_fix_display_name_truncation,
110+
subtitle = R.string.release_notes_4_3_0_subtitle_bug_fix_display_name_truncation,
111+
type = ReleaseNoteType.ENHANCEMENT
112+
),
108113
)
109114
}
110115
}
116+

owncloudApp/src/main/res/values/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,8 @@
748748
<string name="release_notes_4_3_0_subtitle_improvements_remove_dialog">Added a custom dialog when the file that is going to be deleted has thumbnail and added the number of files that are going to be deleted in a multiple selection</string>
749749
<string name="release_notes_4_3_0_title_password_generator">Password generator for public links</string>
750750
<string name="release_notes_4_3_0_subtitle_password_generator">Passwords for public links can be now generated via a new generator in Infinite Scale accounts</string>
751+
<string name="release_notes_4_3_0_title_bug_fix_display_name_truncation">Resolved the bug where long display names were truncated incorrectly</string>
752+
<string name="release_notes_4_3_0_subtitle_bug_fix_display_name_truncation">Display names are now properly truncated in the middle with ellipsis (...) to maintain readability.</string>
751753

752754
<!-- Open in web -->
753755
<string name="ic_action_open_in_web">Open in web</string>

0 commit comments

Comments
 (0)