Merge branch 'release/1.6.3' into develop
This commit is contained in:
commit
21200266e2
23
CHANGES.md
23
CHANGES.md
|
@ -1,3 +1,26 @@
|
|||
Changes in Element v1.6.3 (2023-06-27)
|
||||
======================================
|
||||
|
||||
Features ✨
|
||||
----------
|
||||
- **Element Android is now using the Crypto Rust SDK**. Migration of user's data should be done at first launch after application upgrade. ([#8390](https://github.com/vector-im/element-android/issues/8390))
|
||||
- [Rich text editor] Add mentions and slash commands ([#8440](https://github.com/vector-im/element-android/issues/8440))
|
||||
|
||||
Bugfixes 🐛
|
||||
----------
|
||||
- Update rich text editor library to support pasting of images. ([#8270](https://github.com/vector-im/element-android/issues/8270))
|
||||
- Fix | Got asked twice about verification #8353 (and other verification banners problems) ([#8353](https://github.com/vector-im/element-android/issues/8353))
|
||||
- Prompt the user when the invited MatrixId is not recognized ([#8468](https://github.com/vector-im/element-android/issues/8468))
|
||||
- The correct title and options are now displayed When a poll that was edited is ended. ([#8471](https://github.com/vector-im/element-android/issues/8471))
|
||||
- In some conditions the room shield is not refreshed correctly ([#8507](https://github.com/vector-im/element-android/issues/8507))
|
||||
- Fix crypto config fallback key sharing strategy ([#8541](https://github.com/vector-im/element-android/issues/8541))
|
||||
|
||||
Other changes
|
||||
-------------
|
||||
- MSC3987 implementation: the 'dont_notify' action for a push_rule is now deprecated and replaced by an empty action list. ([#8503](https://github.com/vector-im/element-android/issues/8503))
|
||||
- Update crypto rust sdk version to 0.3.10 ([#8554](https://github.com/vector-im/element-android/issues/8554))
|
||||
|
||||
|
||||
Changes in Element v1.6.2 (2023-06-02)
|
||||
======================================
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Update rich text editor library to support pasting of images.
|
|
@ -1 +0,0 @@
|
|||
Fix | Got asked twice about verification #8353 (and other verification banners problems)
|
|
@ -1 +0,0 @@
|
|||
[Rich text editor] Add mentions and slash commands
|
|
@ -1 +0,0 @@
|
|||
Prompt the user when the invited MatrixId is not recognized
|
|
@ -1 +0,0 @@
|
|||
The correct title and options are now displayed When a poll that was edited is ended.
|
|
@ -1 +0,0 @@
|
|||
MSC3987 implementation: the 'dont_notify' action for a push_rule is now deprecated and replaced by an empty action list.
|
|
@ -1 +0,0 @@
|
|||
In some conditions the room shield is not refreshed correctly
|
|
@ -1 +0,0 @@
|
|||
Fix crypto config fallback key sharing strategy
|
|
@ -1 +0,0 @@
|
|||
Update crypto rust sdk version to 0.3.10
|
|
@ -0,0 +1,2 @@
|
|||
Main changes in this version: Element Android is now using the Crypto Rust SDK.
|
||||
Full changelog: https://github.com/vector-im/element-android/releases
|
|
@ -63,7 +63,7 @@ android {
|
|||
// that the app's state is completely cleared between tests.
|
||||
testInstrumentationRunnerArguments clearPackageData: 'true'
|
||||
|
||||
buildConfigField "String", "SDK_VERSION", "\"1.6.4\""
|
||||
buildConfigField "String", "SDK_VERSION", "\"1.6.3\""
|
||||
|
||||
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
||||
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""
|
||||
|
|
|
@ -37,7 +37,7 @@ ext.versionMinor = 6
|
|||
// Note: even values are reserved for regular release, odd values for hotfix release.
|
||||
// When creating a hotfix, you should decrease the value, since the current value
|
||||
// is the value for the next regular release.
|
||||
ext.versionPatch = 4
|
||||
ext.versionPatch = 3
|
||||
|
||||
static def getGitTimestamp() {
|
||||
def cmd = 'git show -s --format=%ct'
|
||||
|
|
Loading…
Reference in New Issue