Skip to content

Releases: insidegui/MultipeerKit

Version 0.4

07 Jul 17:59
ee013fd
Compare
Choose a tag to compare
  • Introduces new callbacks: peerConnected and peerDisconnected
  • Fixes a crash that could occur when stopping/resuming the transceiver multiple times during its lifetime (#12)
  • Adds DocC documentation

Version 0.3.1

30 Sep 16:14
0fabe19
Compare
Choose a tag to compare

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

08 Jul 23:16
8dd6524
Compare
Choose a tag to compare

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

14 May 12:24
a135dbd
Compare
Choose a tag to compare

Adds localPeerId property so that the your own peer ID can be accessed through the transceiver.

0.2.0: Merge pull request #6 from finestructure/master

17 Apr 15:11
f02d1d3
Compare
Choose a tag to compare