Merge tag 'v1.6.1' into develop
tag
This commit is contained in:
commit
e961a8ccb5
17
CHANGES.md
17
CHANGES.md
@ -1,3 +1,20 @@
|
|||||||
|
Changes in Element v1.6.1 (2023-05-25)
|
||||||
|
======================================
|
||||||
|
|
||||||
|
Corrective release for 1.6.0
|
||||||
|
|
||||||
|
Bugfixes 🐛
|
||||||
|
----------
|
||||||
|
- Allow stateloss on verification dialogfragment ([#8439](https://github.com/vector-im/element-android/issues/8439))
|
||||||
|
- Fix: Update verification popup text when a re-verification is needed after rust migration (read only sessions) ([#8445](https://github.com/vector-im/element-android/issues/8445))
|
||||||
|
- Fix several performance issues causing app non responsive issues. ([#8454](https://github.com/vector-im/element-android/issues/8454))
|
||||||
|
- Fix: The device list screen from the member profile page was always showing the current user devices (rust crypto). ([#8457](https://github.com/vector-im/element-android/issues/8457))
|
||||||
|
|
||||||
|
Other changes
|
||||||
|
-------------
|
||||||
|
- Remove UI option to manually verify a specific device of another user (deprecated behaviour) ([#8458](https://github.com/vector-im/element-android/issues/8458))
|
||||||
|
|
||||||
|
|
||||||
Changes in Element v1.6.0 (2023-05-17)
|
Changes in Element v1.6.0 (2023-05-17)
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Allow stateloss on verification dialogfragment
|
|
@ -1 +0,0 @@
|
|||||||
Fix: Update verification popup text when a re-verification is needed after rust migration (read only sessions)
|
|
@ -1 +0,0 @@
|
|||||||
Fix several performance issues causing app non responsive issues.
|
|
@ -1 +0,0 @@
|
|||||||
Fix: The device list screen from the member profile page was always showing the current user devices (rust crypto).
|
|
@ -1 +0,0 @@
|
|||||||
Remove UI option to manually verify a specific device of another user (deprecated behaviour)
|
|
2
fastlane/metadata/android/en-US/changelogs/40106010.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40106010.txt
Normal file
@ -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.
|
// that the app's state is completely cleared between tests.
|
||||||
testInstrumentationRunnerArguments clearPackageData: 'true'
|
testInstrumentationRunnerArguments clearPackageData: 'true'
|
||||||
|
|
||||||
buildConfigField "String", "SDK_VERSION", "\"1.6.2\""
|
buildConfigField "String", "SDK_VERSION", "\"1.6.1\""
|
||||||
|
|
||||||
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
|
||||||
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""
|
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.
|
// 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
|
// When creating a hotfix, you should decrease the value, since the current value
|
||||||
// is the value for the next regular release.
|
// is the value for the next regular release.
|
||||||
ext.versionPatch = 2
|
ext.versionPatch = 1
|
||||||
|
|
||||||
static def getGitTimestamp() {
|
static def getGitTimestamp() {
|
||||||
def cmd = 'git show -s --format=%ct'
|
def cmd = 'git show -s --format=%ct'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user