mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-15 01:35:07 +08:00
Merge hotfix 1.4.19 into develop
This commit is contained in:
commit
26dcc9bc52
@ -1,3 +1,11 @@
|
|||||||
|
Changes in Element 1.4.19 (2022-06-07)
|
||||||
|
======================================
|
||||||
|
|
||||||
|
Bugfixes 🐛
|
||||||
|
----------
|
||||||
|
- Fix | performance regression on roomlist + proper display of space parents in explore rooms. ([#6233](https://github.com/vector-im/element-android/issues/6233))
|
||||||
|
|
||||||
|
|
||||||
Changes in Element v1.4.18 (2022-05-31)
|
Changes in Element v1.4.18 (2022-05-31)
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
2
fastlane/metadata/android/en-US/changelogs/40104190.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40104190.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Main changes in this version: Various bug fixes and stability improvements.
|
||||||
|
Full changelog: https://github.com/vector-im/element-android/releases
|
@ -226,12 +226,19 @@ interface RoomService {
|
|||||||
): LiveData<PagedList<RoomSummary>>
|
): LiveData<PagedList<RoomSummary>>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Doc.
|
* Get's a live paged list from a filter that can be dynamically updated.
|
||||||
|
*
|
||||||
|
* @param queryParams The filter to use
|
||||||
|
* @param pagedListConfig The paged list configuration (page size, initial load, prefetch distance...)
|
||||||
|
* @param sortOrder defines how to sort the results
|
||||||
|
* @param getFlattenParents When true, the list of known parents and grand parents summaries will be resolved.
|
||||||
|
* This can have significant impact on performance, better be used only on manageable list (filtered by displayName, ..).
|
||||||
*/
|
*/
|
||||||
fun getFilteredPagedRoomSummariesLive(
|
fun getFilteredPagedRoomSummariesLive(
|
||||||
queryParams: RoomSummaryQueryParams,
|
queryParams: RoomSummaryQueryParams,
|
||||||
pagedListConfig: PagedList.Config = defaultPagedListConfig,
|
pagedListConfig: PagedList.Config = defaultPagedListConfig,
|
||||||
sortOrder: RoomSortOrder = RoomSortOrder.ACTIVITY
|
sortOrder: RoomSortOrder = RoomSortOrder.ACTIVITY,
|
||||||
|
getFlattenParents: Boolean = false,
|
||||||
): UpdatableLivePageResult
|
): UpdatableLivePageResult
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -139,9 +139,10 @@ internal class DefaultRoomService @Inject constructor(
|
|||||||
override fun getFilteredPagedRoomSummariesLive(
|
override fun getFilteredPagedRoomSummariesLive(
|
||||||
queryParams: RoomSummaryQueryParams,
|
queryParams: RoomSummaryQueryParams,
|
||||||
pagedListConfig: PagedList.Config,
|
pagedListConfig: PagedList.Config,
|
||||||
sortOrder: RoomSortOrder
|
sortOrder: RoomSortOrder,
|
||||||
|
getFlattenParents: Boolean
|
||||||
): UpdatableLivePageResult {
|
): UpdatableLivePageResult {
|
||||||
return roomSummaryDataSource.getUpdatablePagedRoomSummariesLive(queryParams, pagedListConfig, sortOrder, getFlattenedParents = true)
|
return roomSummaryDataSource.getUpdatablePagedRoomSummariesLive(queryParams, pagedListConfig, sortOrder, getFlattenParents)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getRoomCountLive(queryParams: RoomSummaryQueryParams): LiveData<Int> {
|
override fun getRoomCountLive(queryParams: RoomSummaryQueryParams): LiveData<Int> {
|
||||||
|
@ -71,7 +71,7 @@ class RoomListSectionBuilderGroup(
|
|||||||
},
|
},
|
||||||
{ qpm ->
|
{ qpm ->
|
||||||
val name = stringProvider.getString(R.string.bottom_action_rooms)
|
val name = stringProvider.getString(R.string.bottom_action_rooms)
|
||||||
val updatableFilterLivePageResult = session.roomService().getFilteredPagedRoomSummariesLive(qpm)
|
val updatableFilterLivePageResult = session.roomService().getFilteredPagedRoomSummariesLive(qpm, getFlattenParents = true)
|
||||||
onUpdatable(updatableFilterLivePageResult)
|
onUpdatable(updatableFilterLivePageResult)
|
||||||
|
|
||||||
val itemCountFlow = updatableFilterLivePageResult.livePagedList.asFlow()
|
val itemCountFlow = updatableFilterLivePageResult.livePagedList.asFlow()
|
||||||
|
@ -332,7 +332,7 @@ class RoomListSectionBuilderSpace(
|
|||||||
},
|
},
|
||||||
{ queryParams ->
|
{ queryParams ->
|
||||||
val name = stringProvider.getString(R.string.bottom_action_rooms)
|
val name = stringProvider.getString(R.string.bottom_action_rooms)
|
||||||
val updatableFilterLivePageResult = session.roomService().getFilteredPagedRoomSummariesLive(queryParams)
|
val updatableFilterLivePageResult = session.roomService().getFilteredPagedRoomSummariesLive(queryParams, getFlattenParents = true)
|
||||||
onUpdatable(updatableFilterLivePageResult)
|
onUpdatable(updatableFilterLivePageResult)
|
||||||
|
|
||||||
val itemCountFlow = updatableFilterLivePageResult.livePagedList.asFlow()
|
val itemCountFlow = updatableFilterLivePageResult.livePagedList.asFlow()
|
||||||
|
@ -207,7 +207,7 @@ class RoomSummaryItemFactory @Inject constructor(
|
|||||||
|
|
||||||
private fun getSearchResultSubtitle(roomSummary: RoomSummary): String {
|
private fun getSearchResultSubtitle(roomSummary: RoomSummary): String {
|
||||||
val userId = roomSummary.directUserId
|
val userId = roomSummary.directUserId
|
||||||
val spaceName = roomSummary.spaceParents?.firstOrNull()?.roomSummary?.name
|
val spaceName = roomSummary.flattenParents.lastOrNull()?.name
|
||||||
val canonicalAlias = roomSummary.canonicalAlias
|
val canonicalAlias = roomSummary.canonicalAlias
|
||||||
|
|
||||||
return (userId ?: spaceName ?: canonicalAlias).orEmpty()
|
return (userId ?: spaceName ?: canonicalAlias).orEmpty()
|
||||||
|
Loading…
Reference in New Issue
Block a user