Skip to content

Commit 25cd6b6

Browse files
committed
some improvements in beta release notes definition
1 parent 730a934 commit 25cd6b6

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ class ReleaseNotesViewModel(
4747

4848
companion object {
4949
val releaseNotesList = listOf(
50-
ReleaseNote(title = R.string.release_notes_title_1, subtitle = R.string.release_notes_subtitle_1, type = ReleaseNoteType.ENHANCEMENT),
51-
ReleaseNote(title = R.string.release_notes_title_2, subtitle = R.string.release_notes_subtitle_2, type = ReleaseNoteType.ENHANCEMENT),
50+
ReleaseNote(title = R.string.release_notes_title_1, subtitle = R.string.release_notes_subtitle_1, type = ReleaseNoteType.CHANGE),
51+
ReleaseNote(title = R.string.release_notes_title_2, subtitle = R.string.release_notes_subtitle_2, type = ReleaseNoteType.SECURITY),
5252
ReleaseNote(title = R.string.release_notes_title_3, subtitle = R.string.release_notes_subtitle_3, type = ReleaseNoteType.ENHANCEMENT),
5353
ReleaseNote(title = R.string.release_notes_title_4, subtitle = R.string.release_notes_subtitle_4, type = ReleaseNoteType.ENHANCEMENT),
5454
ReleaseNote(title = R.string.release_notes_title_5, subtitle = R.string.release_notes_subtitle_5, type = ReleaseNoteType.ENHANCEMENT),

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -674,22 +674,22 @@
674674
<string name="release_notes_icon">Release note icon</string>
675675

676676
<!-- Release Notes 2.21-beta.1 -->
677-
<string name="release_notes_title_1">Connection Validator</string>
678-
<string name="release_notes_subtitle_1">Improved network connections, eliminated the return to non-secure connections when the secure connection has failed.</string>
677+
<string name="release_notes_title_1">Release Notes</string>
678+
<string name="release_notes_subtitle_1">News in the app will be listed after every update to inform about latest improvements and new features. Available also in settings to recheck.</string>
679679

680-
<string name="release_notes_title_2">Passcode and Pattern redesign</string>
681-
<string name="release_notes_subtitle_2">Integrated the numeric keypad on the screen, improved navigation and graphical interface.</string>
680+
<string name="release_notes_title_2">Secure connections by default</string>
681+
<string name="release_notes_subtitle_2">Https connections by default to establish server connections. Otherwise, it will be explicitly required in URL</string>
682682

683-
<string name="release_notes_title_3">Release Notes</string>
684-
<string name="release_notes_subtitle_3">Added a new screen that will be visible after each update (and from the settings screen) where you will be informed of the latest improvements and new features that each update brings.</string>
683+
<string name="release_notes_title_3">Passcode and Pattern redesign</string>
684+
<string name="release_notes_subtitle_3">Integrated the numeric keypad on the screen, improved navigation and graphical interface.</string>
685685

686686
<string name="release_notes_title_4">Support for SVG files</string>
687-
<string name="release_notes_subtitle_4">Support has been added for .svg files.</string>
687+
<string name="release_notes_subtitle_4">Added support for svg files.</string>
688688

689-
<string name="release_notes_title_5">Thumbnail actions</string>
690-
<string name="release_notes_subtitle_5">Added the possibility to download or view a file from its own detail view.</string>
689+
<string name="release_notes_title_5">Details view redesign</string>
690+
<string name="release_notes_subtitle_5">Information reordered and added the possibility to download and open the file by clicking the thumbnail.</string>
691691

692-
<string name="release_notes_title_6">Decide to show or not hidden files</string>
693-
<string name="release_notes_subtitle_6">A new option in settings will allow the user to show or not these files.</string>
692+
<string name="release_notes_title_6">Hidden files</string>
693+
<string name="release_notes_subtitle_6">Added a new option in settings to decide to show or not hidden files.</string>
694694

695695
</resources>

0 commit comments

Comments
 (0)