Skip to content

Releases: mihai-dinculescu/simconnect-sdk-rs

v0.2.2

22 Feb 19:12
Compare
Choose a tag to compare

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

29 Oct 15:02
Compare
Choose a tag to compare

Added

  • #[derive(PartialEq)] has been added to Condition, DataType, FacilityType, NotificationGroup, Period, ViewType, ClientEvent, SystemEventRequest and SystemEvent.
  • #[derive(Eq)] has been added to Condition, DataType, FacilityType, NotificationGroup, Period, ViewType, ClientEvent and SystemEventRequest.

Changed

  • The GitHub repository has been renamed from mihai-dinculescu/simconnect-sdk to mihai-dinculescu/simconnect-sdk-rs.

v0.2.0

29 Oct 13:36
Compare
Choose a tag to compare

Added

  • Notification::SystemEvent, SystemEventRequest and SystemEvent have been added. System Events can be subscribed to by using SimConnect::subscribe_to_system_event and unsubscribed from by using SimConnect::unsubscribe_from_system_event.

Changed

  • Notification::Event has been renamed to Notification::ClientEvent.
  • Event has been renamed to ClientEvent and marked as non_exhaustive.

v0.1.3

24 Oct 19:36
Compare
Choose a tag to compare

Changed

  • SimConnect::get_next_dispatch will now return an error of type SimConnectError::UnimplementedMessageType instead of panicking on unrecognized notification types.
  • SimConnect::get_next_dispatch will now return an error of type SimConnectError::SimConnectException instead of Notification::Exception.
  • SimConnectError::SimConnectUnrecognizedEvent has been renamed to SimConnectError::UnimplementedEventType.
  • #[non_exhaustive] has been added to the SimConnectError and Notification enums.
  • The tracing information has been adjusted to be at the info and debug levels instead of info.

v0.1.2

22 Oct 09:34
Compare
Choose a tag to compare

Added

  • Condition, DataType, FacilityType and Period now derive Debug.

Fixed

  • Docs.rs build should now pass. Take 2.

v0.1.1

21 Oct 14:32
Compare
Choose a tag to compare

Changed

  • The docs and README files have been improved.

Fixed

  • Docs.rs build should now pass.

v0.1.0

20 Oct 20:48
Compare
Choose a tag to compare

Added

  • Initial Release of simconnect-sdk