Merge pull request #5872 from vector-im/release/1.8.7/release

Release 1.8.7
This commit is contained in:
Anderas
2022-03-18 16:55:43 +00:00
committed by GitHub
4 changed files with 12 additions and 5 deletions
+7
View File
@@ -1,3 +1,10 @@
## Changes in 1.8.7 (2022-03-18)
🙌 Improvements
- Room: Allow ignoring invited users that have not joined a room yet ([#5866](https://github.com/vector-im/element-ios/issues/5866))
## Changes in 1.8.6 (2022-03-14)
🙌 Improvements
+2 -2
View File
@@ -15,5 +15,5 @@
//
// Version
MARKETING_VERSION = 1.8.6
CURRENT_PROJECT_VERSION = 1.8.6
MARKETING_VERSION = 1.8.7
CURRENT_PROJECT_VERSION = 1.8.7
@@ -629,7 +629,7 @@
}
// Check whether the option Ignore may be presented
if (RiotSettings.shared.roomMemberScreenShowIgnore && self.mxRoomMember.membership == MXMembershipJoin)
if (RiotSettings.shared.roomMemberScreenShowIgnore)
{
// is he already ignored ?
if (![self.mainSession isUserIgnored:self.mxRoomMember.userId])
@@ -103,8 +103,6 @@ final class SplitViewCoordinator: NSObject, SplitViewCoordinatorType {
// Setup split view controller
self.splitViewController.viewControllers = [tabBarCoordinator.toPresentable(), detailNavigationController]
updateUserIndicatorPresenter()
self.add(childCoordinator: tabBarCoordinator)
@@ -113,6 +111,8 @@ final class SplitViewCoordinator: NSObject, SplitViewCoordinatorType {
self.detailNavigationController = detailNavigationController
self.detailNavigationRouter = NavigationRouter(navigationController: detailNavigationController)
updateUserIndicatorPresenter()
self.parameters.router.setRootModule(self.splitViewController)
self.registerNavigationRouterNotifications()