Skip to content

Commit

Permalink
Set default fuel override to NotUsed for new types
Browse files Browse the repository at this point in the history
Added changelog, bumped to 5.12
  • Loading branch information
sushiat committed Dec 20, 2023
1 parent fc36cb6 commit 1539403
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions OpenSky.Agent.SimConnectMSFS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("1f9cbede-669d-4510-bca2-e6ad29d6a498")]
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]
4 changes: 2 additions & 2 deletions OpenSky.Agent.Simulator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("30c467e8-2eee-41e5-be01-0142a61ba171")]
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]
[assembly: InternalsVisibleTo("OpenSky.Agent")]
4 changes: 2 additions & 2 deletions OpenSky.Agent.UdpXPlane11/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("dfbda2b8-5775-4766-be86-d729fcf20de1")]
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]
4 changes: 2 additions & 2 deletions OpenSky.Agent/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: AssemblyVersion("0.5.11")]
[assembly: AssemblyFileVersion("0.5.11")]
[assembly: AssemblyVersion("0.5.12")]
[assembly: AssemblyFileVersion("0.5.12")]

// This allows us to detect debug mode in XAML
#if DEBUG
Expand Down
1 change: 1 addition & 0 deletions OpenSky.Agent/Views/Models/AddAircraftViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ private void AddAircraftType()
MaxGrossWeight = Math.Round(this.Simulator.WeightAndBalance.MaxGrossWeight, 0),
FlapsAvailable = this.Simulator.AircraftIdentity.FlapsAvailable,
IsGearRetractable = this.Simulator.AircraftIdentity.GearRetractable,
OverrideFuelType = FuelType.NotUsed,
Name = this.Name,
Comments = this.Comments,
Simulator = this.Simulator.SimulatorType
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
OpenSky Flight Tracking Agent Changelog
======================================================================================

--------------------------------------------------------------------------------------
Version 0.5.12 (ALPHA5)
--------------------------------------------------------------------------------------
- Fixed default AvGas override for new aircraft

--------------------------------------------------------------------------------------
Version 0.5.11 (ALPHA5)
--------------------------------------------------------------------------------------
Expand Down

0 comments on commit 1539403

Please sign in to comment.