This repository was archived by the owner on Jul 5, 2024. It is now read-only.
Releases: loopystudios/bevy_rtc
Releases · loopystudios/bevy_rtc
v0.3.1
v0.3.0
0.3.0
added
- A
preludemodule.
changed
- To fix name conflicts with
AddProtocolExt, the respective types have changed names.- The
clientfeature trait has changed toAddClientProtocolExt - The
serverfeature trait has changed toAddServerProtocolExt
- The
- Method names have changed:
add_sendonly_protocolhas changed toadd_client_wo_protocolandadd_server_wo_protocoladd_readonly_bounded_protocolhas changed toadd_client_ro_protocolandadd_server_ro_protocoladd_readonly_unbounded_protocolhas changed toadd_client_ro_unbounded_protocolandadd_server_ro_unbounded_protocoladd_bounded_protocolhas changed toadd_client_rw_protocolandadd_server_rw_protocoladd_unbounded_protocolhas changed toadd_client_rw_unbounded_protocolandadd_server_rw_unbounded_protocol
- The
ConnectionRequestevent under theclientfeature has been renamed toRtcClientRequestEvent - The
Payloadderive was renamed toProtocol - Fields on
RtcClientStateandRtcServerStateare now private, with accessor methods, e.g..id()instead of.id
Full Changelog: v0.2.0...v0.3.0
v0.2.0
0.2.0
added
- The
RtcClientandRtcServersystem parameters (prev.NetworkReader/NetworkWriter) have new methods:clear()to clear all incoming messages in the buffer.
changed
- To fix name conflicts with the
serverandclientfeature, the respective types have changed names.RtcStatehas changed toRtcClientStateorRtcServerState, depending on the feature.RtcStatushas changed toRtcClientStatusorRtcServerStatus, depending on the feature.NetworkReader/NetworkWriterhave been both merged and changed toRtcClientorRtcServerrespectively.RtcClient.read()(previouslyNetworkReader) now returns aVec<_>rather than aDrain<'_, _>.
Full Changelog: v0.1.1...v0.2.0