Releases: iZettle/Presentation
Releases · iZettle/Presentation
Presentation v1.13.3
- [Bug fix] Fix bug related to presenting a
UINavigationController
modally without an explicit rootUIViewController
, resulting in unexpected behaviour ofUITextField
input cursors.
Presentation v1.13.2
- Update project settings for Xcode 12 and fix some deprecation warnings
Presentation v1.13.1
- [Bug fix] Prevent a crash in sheet presentation style when a source view is not provided.
Presentation v1.13.0
- [Change] Move to Flow version 1.8.4
- [Bugfix] Fix compile time error in
public extension SignalProvider where Value: Collection {
for swift 5.2 - [Change] Remove
noTrailingClosure: () = ()
frominit<Result>
forPresentation
to avoidAmbiguous use of 'init' for Signals
compile time errors on call site
Presentation v1.12.0
- [Addition] Make swipe-to-dismiss blockable through protocol conformance.
Presentation v1.11.0
- [Addition] Extracted the modal dismiss setup to a separate function, to be able to supply a custom presentation controller if needed.
Presentation v1.10.0
- [Addition] Make it possible to embed a Presentable wrapped in a navigation controller within another view.
Presentation v1.9.2
- [Bug fix] Use view controller's modal presentation preferences when it's embedded in a navigation controller during presentation.
Presentation v1.9.1
- [Bug fix] Dissmissal happends on worker threads if the result future is mutated by the .succeed() or .fail() methods
Presentation v1.9.0
- [Addition] Add a new
isCollapsedState
signal to DualNavigationControllersSplitDelegate that has anil
value until the collapsed state is known. OldisCollapsedSignal
is deprecated. - [Addition] Add a new
init(collapsedState:)
method to DualNavigationControllersSplitDelegate that takes a future to get notified of a known collapsed state. Theinit
without parameters is deprecated. - [Change] Deprecate MasterDetailSelection's init with
isCollapsed
signal in favour of init that can handle anil
collapsed state - [Bug fix] DualNavigationControllersSplitDelegate's
isCollapsedSignal
didn't signalfalse
when moving from collapsed state to not collapsed (multitasking/rotation) - [Bug fix] DualNavigationControllersSplitDelegate's
isCollapsedSignal
didn't signal anything on iOS 13 (issue #54)