diff --git a/fastlane/metadata/android/en-US/changelogs/40100720.txt b/fastlane/metadata/android/en-US/changelogs/40100720.txt new file mode 100644 index 0000000000..b8546034c4 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100720.txt @@ -0,0 +1,10 @@ +- Update codebase to Element v1.3.8 +- Fix some edge cases when counting unread chats +- Sort subspaces by alphabet +- Fix crash of the color selection preference on older devices +- Hide "member made no changes" events in the timeline +- Enable "Mark as unread" by default +- Sort room members strictly by power level, instead of using a "custom" category +- Fix displayname color by power level in reply composer +- Apply presence to all DMs with a user +- Link privacy policy from the login splash screen diff --git a/vector/build.gradle b/vector/build.gradle index 5e54bb001e..65903d424a 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -17,7 +17,7 @@ ext.versionMajor = 1 ext.versionMinor = 3 ext.versionPatch = 8 -ext.scVersion = 46 +ext.scVersion = 47 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -125,10 +125,10 @@ android { // `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode. // Other branches (main, features, etc.) will have version code based on application version. - versionCode 40100700 + versionCode 40100720 // Required for sonar analysis - versionName "1.3.6.sc46" + versionName "1.3.8.sc47" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -270,7 +270,7 @@ android { dimension "store" isDefault = true - versionName "1.3.6.sc46" + versionName "1.3.8.sc47" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -282,7 +282,7 @@ android { fdroid { dimension "store" - versionName "1.3.6.sc46" + versionName "1.3.8.sc47" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"