msfs-simconnect-api-wrapper
Advanced tools
Comparing version 3.2.0 to 4.0.0
@@ -0,1 +1,5 @@ | ||
v4.0.0 | ||
- Fixed an issue with runway slope values being double-converted. This is a breaking change for any code that relied on runway slope. | ||
v3.2.0 | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "msfs-simconnect-api-wrapper", | ||
"version": "3.2.0", | ||
"version": "4.0.0", | ||
"description": "A convenient SimConnect API for playing with Microsoft Flight Simulator 2020", | ||
@@ -5,0 +5,0 @@ "main": "msfs-api.js", |
@@ -375,4 +375,4 @@ /** | ||
const patternAltitude = data.readFloat32(); | ||
const slope = degrees(data.readFloat32()); | ||
const slopeTrue = degrees(data.readFloat32()); | ||
const slope = data.readFloat32(); | ||
const slopeTrue = data.readFloat32(); | ||
const surface = RUNWAY_SURFACES[data.readInt32()]; | ||
@@ -379,0 +379,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6372370