mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +03:00
Merge branch 'hotfix/1.5.7' into main
This commit is contained in:
commit
4b7f030dfc
5 changed files with 14 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Changes in Element v1.5.7 (2022-11-07)
|
||||||
|
======================================
|
||||||
|
|
||||||
|
Bugfixes 🐛
|
||||||
|
----------
|
||||||
|
- Fix regression when syncing with homeserver < 1.4. ([#7534](https://github.com/vector-im/element-android/issues/7534))
|
||||||
|
|
||||||
Changes in Element v1.5.6 (2022-11-02)
|
Changes in Element v1.5.6 (2022-11-02)
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
|
|
2
fastlane/metadata/android/en-US/changelogs/40105070.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40105070.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Main changes in this version: new UI for selecting an attachment.
|
||||||
|
Full changelog: https://github.com/vector-im/element-android/releases
|
|
@ -62,7 +62,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.5.6\""
|
buildConfigField "String", "SDK_VERSION", "\"1.5.7\""
|
||||||
|
|
||||||
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()}\""
|
||||||
|
|
|
@ -67,7 +67,9 @@ internal object FilterFactory {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun createElementTimelineFilter(): RoomEventFilter? {
|
private fun createElementTimelineFilter(): RoomEventFilter? {
|
||||||
return RoomEventFilter(enableUnreadThreadNotifications = true)
|
// we need to check if homeserver supports thread notifications before setting this param
|
||||||
|
// return RoomEventFilter(enableUnreadThreadNotifications = true)
|
||||||
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun createElementStateFilter(): RoomEventFilter {
|
private fun createElementStateFilter(): RoomEventFilter {
|
||||||
|
|
|
@ -37,7 +37,7 @@ ext.versionMinor = 5
|
||||||
// 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 = 6
|
ext.versionPatch = 7
|
||||||
|
|
||||||
static def getGitTimestamp() {
|
static def getGitTimestamp() {
|
||||||
def cmd = 'git show -s --format=%ct'
|
def cmd = 'git show -s --format=%ct'
|
||||||
|
|
Loading…
Reference in a new issue