Skip to content

Commit da5b5dc

Browse files
committed
Update version code and version string for 4.0-beta.3. Update Release Notes.
1 parent 8abc09a commit da5b5dc

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

owncloudApp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ android {
100100

101101
testInstrumentationRunner "com.owncloud.android.utils.OCTestAndroidJUnitRunner"
102102

103-
versionCode = 30000402
104-
versionName = "4.0-beta.2"
103+
versionCode = 30000403
104+
versionName = "4.0-beta.3"
105105

106106
buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
107107
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""

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
@@ -75,6 +75,21 @@ class ReleaseNotesViewModel(
7575
subtitle = R.string.release_notes_4_0_subtitle_6,
7676
type = ReleaseNoteType.ENHANCEMENT
7777
),
78+
ReleaseNote(
79+
title = R.string.release_notes_4_0_title_8,
80+
subtitle = R.string.release_notes_4_0_subtitle_8,
81+
type = ReleaseNoteType.ENHANCEMENT
82+
),
83+
ReleaseNote(
84+
title = R.string.release_notes_4_0_title_9,
85+
subtitle = R.string.release_notes_4_0_subtitle_9,
86+
type = ReleaseNoteType.ENHANCEMENT
87+
),
88+
ReleaseNote(
89+
title = R.string.release_notes_4_0_title_10,
90+
subtitle = R.string.release_notes_4_0_subtitle_10,
91+
type = ReleaseNoteType.ENHANCEMENT
92+
),
7893
ReleaseNote(
7994
title = R.string.release_notes_4_0_title_7,
8095
subtitle = R.string.release_notes_4_0_subtitle_7,

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -726,6 +726,12 @@
726726
<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>
727727
<string name="release_notes_4_0_title_7">Minor bugfixes and improvements</string>
728728
<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>
729+
<string name="release_notes_4_0_title_8">Markdown support</string>
730+
<string name="release_notes_4_0_subtitle_8">Markdown files rendered and displayed with proper format</string>
731+
<string name="release_notes_4_0_title_9">List of providers (oCIS)</string>
732+
<string name="release_notes_4_0_subtitle_9">If your server supports app providers to open specific kind of files, all of them will be listed in Details view</string>
733+
<string name="release_notes_4_0_title_10">Themed icons supported</string>
734+
<string name="release_notes_4_0_subtitle_10">Android 13 feature "Themed icons" will let you set app icon in monochrome</string>
729735

730736
<!-- Open in web -->
731737
<string name="ic_action_open_in_web">Open in web</string>

0 commit comments

Comments
 (0)