Skip to content

Commit

Permalink
Update versionName and versionCode
Browse files Browse the repository at this point in the history
  • Loading branch information
JuancaG05 committed Dec 2, 2022
1 parent a136902 commit 83404e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions owncloudApp/build.gradle
Expand Up @@ -104,8 +104,8 @@ android {

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

versionCode = 22100202
versionName = "3.0-beta.2"
versionCode = 22100203
versionName = "3.0-beta.3"

buildConfigField "String", gitRemote, "\"" + getGitOriginRemote() + "\""
buildConfigField "String", commitSHA1, "\"" + getLatestGitHash() + "\""
Expand Down
Expand Up @@ -46,8 +46,9 @@ class ReleaseNotesViewModel(
}

companion object {
val releaseNotesList = listOf<ReleaseNote>(
val releaseNotesList = listOf(
ReleaseNote(R.string.release_notes_3_0_beta1_title1, R.string.release_notes_3_0_beta1_subtitle1, ReleaseNoteType.CHANGE),
ReleaseNote(R.string.release_notes_3_0_beta3_title2, R.string.release_notes_3_0_beta3_subtitle2, ReleaseNoteType.ENHANCEMENT)
)
}
}
2 changes: 2 additions & 0 deletions owncloudApp/src/main/res/values/strings.xml
Expand Up @@ -707,5 +707,7 @@

<string name="release_notes_3.0_beta1_title1">New sync engine</string>
<string name="release_notes_3.0_beta1_subtitle1">The way in which all files are synced has been redesigned</string>
<string name="release_notes_3.0_beta3_title2">Browser login improved</string>
<string name="release_notes_3.0_beta3_subtitle2">Only typing the URL, browser will be triggered</string>

</resources>

0 comments on commit 83404e9

Please sign in to comment.