Skip to content

Commit

Permalink
Merge pull request #4456 from owncloud/release/4.4.0-beta.1
Browse files Browse the repository at this point in the history
[RELEASE] 4.4.0-beta.1
  • Loading branch information
Aitorbp authored Aug 21, 2024
2 parents 254388d + 995fe81 commit fdaff41
Show file tree
Hide file tree
Showing 3 changed files with 9 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 @@ -96,8 +96,8 @@ android {

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

versionCode = 43000100
versionName = "4.3.1"
versionCode = 43000101
versionName = "4.4.0-beta.1"

buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ class ReleaseNotesViewModel(

companion object {
val releaseNotesList = listOf(
ReleaseNote(
title = R.string.release_notes_4_4_0_title_improved_from_original_folder_auto_upload,
subtitle = R.string.release_notes_4_4_0_subtitle_improved_from_original_folder_auto_upload,
type = ReleaseNoteType.ENHANCEMENT
),
ReleaseNote(
title = R.string.release_notes_4_3_0_title_accessibility_improvements,
subtitle = R.string.release_notes_4_3_0_subtitle_accessibility_improvements,
Expand Down
2 changes: 2 additions & 0 deletions owncloudApp/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,8 @@

<string name="release_notes_4_3_0_title_accessibility_improvements">Improvements in accessibility</string>
<string name="release_notes_4_3_0_subtitle_accessibility_improvements">Some improvements to make the application more accessible</string>
<string name="release_notes_4_4_0_title_improved_from_original_folder_auto_upload">Auto uploads more consistent</string>
<string name="release_notes_4_4_0_subtitle_improved_from_original_folder_auto_upload">Added some mechanisms over retries to improve reliability</string>
<string name="release_notes_bugfixes_title">Minor bugfixes</string>
<string name="release_notes_bugfixes_subtitle">Some bugs were fixed to improve experience in the app</string>

Expand Down

0 comments on commit fdaff41

Please sign in to comment.