diff --git a/fastlane/metadata/android/en-US/changelogs/40100340.txt b/fastlane/metadata/android/en-US/changelogs/40100340.txt new file mode 100644 index 0000000000..534a015548 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100340.txt @@ -0,0 +1,9 @@ +- Allow for timestamps at the bubble bottom +- Add a few scenarios to hide sender names +- Only use direct chat layout for direct chats with exactly 2 members +- Account for past membership changes when hiding sender names in direct chats +- Add an icon indicator for unsent messages +- Fix send button color for attachments +- Hide deleted messages by default +- Don't collapse room summaries if we just need one more line +- Allow for one more collapsed room summary line diff --git a/vector/build.gradle b/vector/build.gradle index b43b05b688..505d6a0f6e 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -19,7 +19,7 @@ ext.versionMajor = 1 ext.versionMinor = 0 ext.versionPatch = 9 -ext.scVersion = 24 +ext.scVersion = 25 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -122,10 +122,10 @@ android { // `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode. // Other branches (master, features, etc.) will have version code based on application version. - versionCode 40100330 + versionCode 40100340 // Required for sonar analysis - versionName "1.0.9.sc.24" + versionName "1.0.9.sc.25" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -237,7 +237,7 @@ android { gplay { dimension "store" - versionName "1.0.9.sc.24" + versionName "1.0.9.sc.25" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -248,7 +248,7 @@ android { fdroid { dimension "store" - versionName "1.0.9.sc.24" + versionName "1.0.9.sc.25" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"