Skip to content

Commit 494b2f7

Browse files
committed
Added release notes for 3.0
1 parent c335e2f commit 494b2f7

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

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

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

4848
companion object {
4949
val releaseNotesList = listOf(
50-
ReleaseNote(R.string.release_notes_3_0_beta1_title1, R.string.release_notes_3_0_beta1_subtitle1, ReleaseNoteType.CHANGE),
51-
ReleaseNote(R.string.release_notes_3_0_beta3_title2, R.string.release_notes_3_0_beta3_subtitle2, ReleaseNoteType.ENHANCEMENT)
50+
ReleaseNote(R.string.release_notes_3_0_title1, R.string.release_notes_3_0_subtitle1, ReleaseNoteType.ENHANCEMENT),
51+
ReleaseNote(R.string.release_notes_3_0_title2, R.string.release_notes_3_0_subtitle2, ReleaseNoteType.ENHANCEMENT),
52+
ReleaseNote(R.string.release_notes_3_0_title3, R.string.release_notes_3_0_subtitle3, ReleaseNoteType.BUGFIX),
53+
ReleaseNote(R.string.release_notes_3_0_title4, R.string.release_notes_3_0_subtitle4, ReleaseNoteType.ENHANCEMENT),
54+
ReleaseNote(R.string.release_notes_3_0_title5, R.string.release_notes_3_0_subtitle5, ReleaseNoteType.ENHANCEMENT),
55+
ReleaseNote(R.string.release_notes_3_0_title6, R.string.release_notes_3_0_subtitle6, ReleaseNoteType.ENHANCEMENT)
5256
)
5357
}
5458
}

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

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -705,9 +705,17 @@
705705
<string name="open_in_web_error_not_supported">there are no apps that support this file type</string>
706706
<string name="open_in_web_error_too_early">The requested file is not yet available, please try again later</string>
707707

708-
<string name="release_notes_3.0_beta1_title1">New sync engine</string>
709-
<string name="release_notes_3.0_beta1_subtitle1">The way in which all files are synced has been redesigned</string>
710-
<string name="release_notes_3.0_beta3_title2">Browser login improved</string>
711-
<string name="release_notes_3.0_beta3_subtitle2">Only typing the URL, browser will be triggered</string>
708+
<string name="release_notes_3.0_title1">New sync engine</string>
709+
<string name="release_notes_3.0_subtitle1">The way in which all files are synced has been redesigned to improve it</string>
710+
<string name="release_notes_3.0_title2">Automatic conflicts propagation</string>
711+
<string name="release_notes_3.0_subtitle2">Conflicts are now automatically propagated (and cleaned) to parent folders</string>
712+
<string name="release_notes_3.0_title3">Fix for thumbnails</string>
713+
<string name="release_notes_3.0_subtitle3">Thumbnails are now shown correctly in the file list</string>
714+
<string name="release_notes_3.0_title4">Empty views improved</string>
715+
<string name="release_notes_3.0_subtitle4">A new and more attractive view has been added to screens with no items (files, uploads and logs)</string>
716+
<string name="release_notes_3.0_title5">Several transfers running simultaneously</string>
717+
<string name="release_notes_3.0_subtitle5">With the redesign of the sync engine, now several downloads and uploads can run at the same time</string>
718+
<string name="release_notes_3.0_title6">Browser login improved</string>
719+
<string name="release_notes_3.0_subtitle6">Only typing the URL, browser will be triggered</string>
712720

713721
</resources>

0 commit comments

Comments
 (0)