Skip to content

Commit 995fe81

Browse files
committedAug 21, 2024·
feat: added release notes improve auto-uploads
1 parent 9a585ab commit 995fe81

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
 

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

+5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ class ReleaseNotesViewModel(
4545

4646
companion object {
4747
val releaseNotesList = listOf(
48+
ReleaseNote(
49+
title = R.string.release_notes_4_4_0_title_improved_from_original_folder_auto_upload,
50+
subtitle = R.string.release_notes_4_4_0_subtitle_improved_from_original_folder_auto_upload,
51+
type = ReleaseNoteType.ENHANCEMENT
52+
),
4853
ReleaseNote(
4954
title = R.string.release_notes_4_3_0_title_accessibility_improvements,
5055
subtitle = R.string.release_notes_4_3_0_subtitle_accessibility_improvements,

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

+2
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,8 @@
729729

730730
<string name="release_notes_4_3_0_title_accessibility_improvements">Improvements in accessibility</string>
731731
<string name="release_notes_4_3_0_subtitle_accessibility_improvements">Some improvements to make the application more accessible</string>
732+
<string name="release_notes_4_4_0_title_improved_from_original_folder_auto_upload">Auto uploads more consistent</string>
733+
<string name="release_notes_4_4_0_subtitle_improved_from_original_folder_auto_upload">Added some mechanisms over retries to improve reliability</string>
732734
<string name="release_notes_bugfixes_title">Minor bugfixes</string>
733735
<string name="release_notes_bugfixes_subtitle">Some bugs were fixed to improve experience in the app</string>
734736

0 commit comments

Comments
 (0)
Please sign in to comment.