mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-17 05:10:02 +02:00
Merge pull request #5872 from vector-im/release/1.8.7/release
Release 1.8.7
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user