Skip to content

Commit 4766b4d

Browse files
authored
Merge pull request #4003 from owncloud/release/4.0-beta.2
[Release] 4.0 beta.2
2 parents e180584 + 4bba80b commit 4766b4d

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

owncloudApp/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ android {
9393

9494
testInstrumentationRunner "com.owncloud.android.utils.OCTestAndroidJUnitRunner"
9595

96-
versionCode = 30000401
97-
versionName = "4.0-beta.1"
96+
versionCode = 30000402
97+
versionName = "4.0-beta.2"
9898

9999
buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
100100
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""

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

+20
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,26 @@ class ReleaseNotesViewModel(
6060
subtitle = R.string.release_notes_4_0_subtitle_3,
6161
type = ReleaseNoteType.CHANGE
6262
),
63+
ReleaseNote(
64+
title = R.string.release_notes_4_0_title_4,
65+
subtitle = R.string.release_notes_4_0_subtitle_4,
66+
type = ReleaseNoteType.ENHANCEMENT
67+
),
68+
ReleaseNote(
69+
title = R.string.release_notes_4_0_title_5,
70+
subtitle = R.string.release_notes_4_0_subtitle_5,
71+
type = ReleaseNoteType.ENHANCEMENT
72+
),
73+
ReleaseNote(
74+
title = R.string.release_notes_4_0_title_6,
75+
subtitle = R.string.release_notes_4_0_subtitle_6,
76+
type = ReleaseNoteType.ENHANCEMENT
77+
),
78+
ReleaseNote(
79+
title = R.string.release_notes_4_0_title_7,
80+
subtitle = R.string.release_notes_4_0_subtitle_7,
81+
type = ReleaseNoteType.BUGFIX
82+
)
6383
)
6484
}
6585
}

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

+8
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,14 @@
717717
<string name="release_notes_4_0_subtitle_2">Reordered some tabs</string>
718718
<string name="release_notes_4_0_title_3">End of support Lollipop</string>
719719
<string name="release_notes_4_0_subtitle_3">This will be the last release with support for Android Lollipop (v5.0)</string>
720+
<string name="release_notes_4_0_title_4">Updated WebFinger flow</string>
721+
<string name="release_notes_4_0_subtitle_4">For WebFinger servers, lookup server will be requested first, and if not successful, regular authentication flow will be followed</string>
722+
<string name="release_notes_4_0_title_5">Permission handling</string>
723+
<string name="release_notes_4_0_subtitle_5">Now, when there is lack of permissions to perform some actions over a folder or a file, those actions will be hidden</string>
724+
<string name="release_notes_4_0_title_6">New "Manage notifications" setting</string>
725+
<string name="release_notes_4_0_subtitle_6">A new item has been added in the settings, which redirects to the app notifications settings of the device</string>
726+
<string name="release_notes_4_0_title_7">Minor bugfixes and improvements</string>
727+
<string name="release_notes_4_0_subtitle_7">Some minor bugs have been fixed, and minor technical improvements were introduced to improve the experience in the app</string>
720728

721729
<!-- Open in web -->
722730
<string name="ic_action_open_in_web">Open in web</string>

0 commit comments

Comments
 (0)