Releases: iZettle/Flow
Releases · iZettle/Flow
Flow 1.4.2
- Fixed a bug with some of
Future
's repeat methods where the delaydelayBetweenRepetitions
was added after the last repetition as well. - Fixed bug where the predicate passed to
onResultRepeat
was not always scheduled correctly.
Flow 1.4.1
- Fixes a problem where onErrorRepeat would not respect the specified delay interval.
- Fixed issues with tvOS support.
- Updates some transforms such as
toVoid()
to schedule on.none
instead of.current
so these transforms won't cause a re-schedule.
Flow 1.4.0
- Updated the
Signal.flatMapLatest()
transformation to allow more flexible mixing of signal types betweenself
and the signal returned fromtransform
. - Added
Signal.toogle()
method for read-write boolean signals. - Added
didWrite()
transformations to read-write signals. - Added
UIControl
valueChanged
that will signal with the latest value when the control event.valueChanged
is signaled.
Flow 1.3.1
- Bug-fix: Updated
Future.abort(forFutures:)
to more correctly handle repetition.
Flow 1.3.0
- Added versions of
bindTo()
that can bind a non optional to an optional value. - Added
enable()
toEnablable
similar asdisable()
. - Added more defaulted parameters to
Scheduler.init
for dispatch queues. - Fixes a crash on Swift 4.2 when immediately (on the same line) modifying a
ReadWriteSignal
'svalue
. - Added
Scheduler
perform
helper. - Added signal
withLatestFrom
transformation.
Flow 1.2.1
- Conditionally conform
Either
to Hashable whenLeft
andRight
conforms toHashable
. - Conforms UISlider to SignalProvider.
Flow 1.2.0
- Added
NSManagedObjectContext.scheduler
property for scheduling work on managed object contexts when CoreData is available.
Flow 1.1.0
- Added
DisposeBag.hold()
convenience method for holding a reference to an object. - Added
UITextField
delegates forshouldEndEditing
andshouldReturn
l - Added
UITextField.isEditingSignal
signal. - Added
UIView.install()
for installing gesture recognizers. - Added
UIView
signals for displaying editing menu for copy, cut and paste. - Added
orientationSignal
that will signal on orientation changes. - Added
UIRefreshControl
animate()
andrefersh()
helpers. - Added
disableActiveEventListeners()
helper