Skip to content

Commit

Permalink
Update version code and version string for 4.0-beta.3. Update Release…
Browse files Browse the repository at this point in the history
… Notes.
  • Loading branch information
jesmrec committed Apr 25, 2023
1 parent 8abc09a commit da5b5dc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions owncloudApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ android {

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

versionCode = 30000402
versionName = "4.0-beta.2"
versionCode = 30000403
versionName = "4.0-beta.3"

buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,21 @@ class ReleaseNotesViewModel(
subtitle = R.string.release_notes_4_0_subtitle_6,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_0_title_8,
subtitle = R.string.release_notes_4_0_subtitle_8,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_0_title_9,
subtitle = R.string.release_notes_4_0_subtitle_9,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_0_title_10,
subtitle = R.string.release_notes_4_0_subtitle_10,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_0_title_7,
subtitle = R.string.release_notes_4_0_subtitle_7,
Expand Down
6 changes: 6 additions & 0 deletions owncloudApp/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,12 @@
<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>
<string name="release_notes_4_0_title_7">Minor bugfixes and improvements</string>
<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>
<string name="release_notes_4_0_title_8">Markdown support</string>
<string name="release_notes_4_0_subtitle_8">Markdown files rendered and displayed with proper format</string>
<string name="release_notes_4_0_title_9">List of providers (oCIS)</string>
<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>
<string name="release_notes_4_0_title_10">Themed icons supported</string>
<string name="release_notes_4_0_subtitle_10">Android 13 feature "Themed icons" will let you set app icon in monochrome</string>

<!-- Open in web -->
<string name="ic_action_open_in_web">Open in web</string>
Expand Down

0 comments on commit da5b5dc

Please sign in to comment.