Skip to content

Commit c9ecd6c

Browse files
committed
feat: recover release notes from 4.6.0
1 parent e55b459 commit c9ecd6c

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@ class ReleaseNotesViewModel(
4343

4444
companion object {
4545
val releaseNotesList = listOf(
46+
ReleaseNote(
47+
title = R.string.release_notes_4_6_1_title_duplicated_automatic_uploads,
48+
subtitle = R.string.release_notes_4_6_1_subtitle_duplicated_automatic_uploads,
49+
type = ReleaseNoteType.BUGFIX
50+
),
51+
ReleaseNote(
52+
title = R.string.release_notes_4_6_1_title_bearer_token_handling,
53+
subtitle = R.string.release_notes_4_6_1_subtitle_bearer_token_handling,
54+
type = ReleaseNoteType.BUGFIX
55+
),
56+
ReleaseNote(
57+
title = R.string.release_notes_4_6_1_title_shares_space_docs_provider,
58+
subtitle = R.string.release_notes_4_6_1_subtitle_shares_space_docs_provider,
59+
type = ReleaseNoteType.ENHANCEMENT
60+
),
4661
ReleaseNote(
4762
title = R.string.release_notes_bugfixes_title,
4863
subtitle = R.string.release_notes_bugfixes_subtitle,

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,14 @@
737737
<string name="release_notes_icon">Release note icon</string>
738738
<string name="release_notes_bugfixes_title">Minor bugfixes</string>
739739
<string name="release_notes_bugfixes_subtitle">Some bugs were fixed to improve experience in the app</string>
740+
<string name="release_notes_4_6_1_title_shares_space_docs_provider">Shares space in Android native file explorer</string>
741+
<string name="release_notes_4_6_1_subtitle_shares_space_docs_provider">Shares space now appears next to the other spaces in Documents Provider
742+
for Infinite Scale accounts</string>
743+
<string name="release_notes_4_6_1_title_duplicated_automatic_uploads">Automatic uploads improved</string>
744+
<string name="release_notes_4_6_1_subtitle_duplicated_automatic_uploads">Automatic uploads are more consistent against duplications</string>
745+
<string name="release_notes_4_6_1_title_bearer_token_handling">Multiple accounts on Infinite Scale servers</string>
746+
<string name="release_notes_4_6_1_subtitle_bearer_token_handling">Multiple accounts can be logged in at the same time on the same Infinite
747+
Scale server. Additionally, fixed a problem related with session handling</string>
740748
<!-- Open in web -->
741749
<string name="ic_action_open_in_web">Open in web</string>
742750
<string name="ic_action_open_with_web">Open in %1$s (web)</string>

0 commit comments

Comments
 (0)