Skip to content

Commit 0417e30

Browse files
chore: update version to 0.1.14-beta and add changelog entries for new features
1 parent da293cc commit 0417e30

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.14-beta] - 2025-08-25
11+
12+
### Added
13+
14+
- Fetch multiple SimVars at once into your own struct with `SimVars.GetAsync<TStruct>()`.
15+
- Annotate your struct fields with the new `[SimConnect("NAME", "unit", dataType?, order?)]` attribute and the library will marshal the values for you in a single request.
16+
- Example use-cases: grab position, speed, and title in one call for low-latency snapshots.
17+
18+
### Notes
19+
20+
- Attributes can infer unit and data type from the built‑in SimVar registry when possible, but specifying all three (name, unit, type) is recommended for clarity.
21+
- Optional `order` lets you control field ordering; otherwise, struct field order is used.
22+
- Non-breaking additive feature. Thanks to @bstudtma for the contribution in PR #9.
23+
1024
## [0.1.13-beta] - 2025-08-24
1125

1226
### Fixed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.1.13-beta</Version>
3+
<Version>0.1.14-beta</Version>
44
<Authors>BARS</Authors>
55
<Company>BARS</Company>
66
<Product>SimConnect.NET</Product>

0 commit comments

Comments
 (0)