Releases: mihai-dinculescu/simconnect-sdk-rs
Releases · mihai-dinculescu/simconnect-sdk-rs
v0.2.2
Changed
- Updated to MSFS SDK v0.20.5.0.
SimConnect::get_next_dispatch
now takes a&mut self
in order to be able to clean up requests that have returned all the results they ever will.
Fixed
SimConnect::request_facilities_list
calls now automatically clean up the request after all the data is received.
v0.2.1
Added
#[derive(PartialEq)]
has been added toCondition
,DataType
,FacilityType
,NotificationGroup
,Period
,ViewType
,ClientEvent
,SystemEventRequest
andSystemEvent
.#[derive(Eq)]
has been added toCondition
,DataType
,FacilityType
,NotificationGroup
,Period
,ViewType
,ClientEvent
andSystemEventRequest
.
Changed
- The GitHub repository has been renamed from
mihai-dinculescu/simconnect-sdk
tomihai-dinculescu/simconnect-sdk-rs
.
v0.2.0
Added
Notification::SystemEvent
,SystemEventRequest
andSystemEvent
have been added. System Events can be subscribed to by usingSimConnect::subscribe_to_system_event
and unsubscribed from by usingSimConnect::unsubscribe_from_system_event
.
Changed
Notification::Event
has been renamed toNotification::ClientEvent
.Event
has been renamed toClientEvent
and marked asnon_exhaustive
.
v0.1.3
Changed
SimConnect::get_next_dispatch
will now return an error of typeSimConnectError::UnimplementedMessageType
instead of panicking on unrecognized notification types.SimConnect::get_next_dispatch
will now return an error of typeSimConnectError::SimConnectException
instead ofNotification::Exception
.SimConnectError::SimConnectUnrecognizedEvent
has been renamed toSimConnectError::UnimplementedEventType
.#[non_exhaustive]
has been added to theSimConnectError
andNotification
enums.- The tracing information has been adjusted to be at the
info
anddebug
levels instead ofinfo
.
v0.1.2
Added
Condition
,DataType
,FacilityType
andPeriod
now deriveDebug
.
Fixed
- Docs.rs build should now pass. Take 2.
v0.1.1
Changed
- The docs and README files have been improved.
Fixed
- Docs.rs build should now pass.
v0.1.0
Added
- Initial Release of simconnect-sdk