Skip to content

Commit

Permalink
Merge pull request #90 from opensky-to/beacon-for-strobe
Browse files Browse the repository at this point in the history
Added support for strobe for beacon
  • Loading branch information
sushiat authored Dec 3, 2023
2 parents 750b38a + e80c7a0 commit 15ed56d
Show file tree
Hide file tree
Showing 6 changed files with 342 additions and 314 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/discord-release-msg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
color: "1711650"
username: "Client Release Changelog"
avatar_url: "https://cdn.discordapp.com/icons/837475420923756544/941238cca4a5e355f16a9d710b423c0e.webp?size=96"
content: "||@everyone||"
content: "||@progress_ping||"
footer_title: "Changelog"
footer_icon_url: "https://cdn.discordapp.com/icons/837475420923756544/941238cca4a5e355f16a9d710b423c0e.webp?size=96"
footer_timestamp: true
7 changes: 7 additions & 0 deletions OpenSky.Client/OpenAPIs/swagger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9506,6 +9506,13 @@ public partial class AircraftType
[Newtonsoft.Json.JsonProperty("uploaderName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UploaderName { get; set; }

/// <summary>
/// Gets or sets a value indicating whether this aircraft uses the strobe light instead of the
/// <br/>beacon - most likely because it doesn't have a beacon.
/// </summary>
[Newtonsoft.Json.JsonProperty("usesStrobeForBeacon", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public bool UsesStrobeForBeacon { get; set; }

/// <summary>
/// Gets or sets the variants of this aircraft.
/// </summary>
Expand Down
4 changes: 4 additions & 0 deletions OpenSky.Client/OpenAPIs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -4824,6 +4824,10 @@
"nullable": true,
"readOnly": true
},
"usesStrobeForBeacon": {
"type": "boolean",
"description": "Gets or sets a value indicating whether this aircraft uses the strobe light instead of the\r\nbeacon - most likely because it doesn't have a beacon."
},
"variants": {
"type": "array",
"items": {
Expand Down
Loading

0 comments on commit 15ed56d

Please sign in to comment.