Releases: insidegui/MultipeerKit
Releases · insidegui/MultipeerKit
Version 0.4
Version 0.3.1
Addresses a crash which would occur when the app's Info.plist was missing required keys on iOS 14. See the readme for more information.
0.3.0
Receiver blocks now receive the Peer
the message was sent from. This is a breaking change to the API, but it's very easy to account for in your code.
If you were previously doing something like this:
transceiver.receive(SomeCodableThing.self) { payload in
// handle
}
All you have to do is ignore the sender parameter in the closure, like so:
transceiver.receive(SomeCodableThing.self) { payload, _ in
// handle
}
0.2.1
0.2.0: Merge pull request #6 from finestructure/master
Add dynamic library product