diff --git a/fastlane/metadata/android/en-US/changelogs/40101060.txt b/fastlane/metadata/android/en-US/changelogs/40101060.txt new file mode 100644 index 0000000000..bc1883edac --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40101060.txt @@ -0,0 +1,7 @@ +- Update codebase to Element v1.5.30 +- Button to send supported custom emotes as sticker when entered as only content in the message composer +- Fix sticker style in threads +- Show sticker body instead of "Sticker" text in room previews +- Move custom emojis below standard emojis in autocompletion +- Fix possible crash when rendering certain formatted messages +- Another attempt to fix all cases of wrong read receipt locations diff --git a/vector-app/build.gradle b/vector-app/build.gradle index da1fa4159d..7928bc88d9 100644 --- a/vector-app/build.gradle +++ b/vector-app/build.gradle @@ -39,7 +39,7 @@ ext.versionMinor = 5 // is the value for the next regular release. ext.versionPatch = 30 -ext.scVersion = 65 +ext.scVersion = 66 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -135,8 +135,8 @@ android { renderscriptTargetApi 24 renderscriptSupportModeEnabled true - versionCode 40101050 - versionName "1.5.28.sc65" + versionCode 40101060 + versionName "1.5.30.sc66" // Generate a random app task affinity manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"] @@ -299,14 +299,14 @@ android { } dimension "store" - versionName "1.5.28.sc65" + versionName "1.5.30.sc66" buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\"" buildConfigField "String", "FLAVOR_DESCRIPTION", "\"GooglePlay\"" } fdroid { dimension "store" - versionName "1.5.28.sc65" + versionName "1.5.30.sc66" buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\"" buildConfigField "String", "FLAVOR_DESCRIPTION", "\"FDroid\"" isDefault = true