Skip to content

Commit 9f7fe2f

Browse files
Add InputEvents support, changed copyright in all files to BARS.
1 parent ea033cc commit 9f7fe2f

115 files changed

Lines changed: 3791 additions & 311 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The client runs a background message loop (`StartMessageProcessingLoopAsync`) wi
2929
- All public members require XML documentation with company copyright headers
3030
- Using directives outside namespace, newline at EOF required
3131
- `TreatWarningsAsErrors=true` in all projects except tests
32-
- File headers: `// <copyright file="FileName.cs" company="AussieScorcher">`
32+
- File headers: `// <copyright file="FileName.cs" company="BARS">`
3333

3434
### Async Patterns
3535

Directory.Build.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project>
22
<PropertyGroup>
33
<Version>0.0.1-alpha</Version>
4-
<Authors>AussieScorcher</Authors>
5-
<Company>AussieScorcher</Company>
6-
<Copyright>Copyright (c) AussieScorcher. All rights reserved.</Copyright>
7-
<RepositoryUrl>https://github.com/AussieScorcher/SimConnect.NET</RepositoryUrl>
4+
<Authors>BARS</Authors>
5+
<Company>BARS</Company>
6+
<Copyright>Copyright (c) BARS. All rights reserved.</Copyright>
7+
<RepositoryUrl>https://github.com/stopbars/SimConnect.NET</RepositoryUrl>
88
<LangVersion>latest</LangVersion>
99
<Nullable>enable</Nullable>
1010
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13-
<PackageProjectUrl>https://github.com/AussieScorcher/SimConnect.NET</PackageProjectUrl>
13+
<PackageProjectUrl>https://github.com/stopbars/SimConnect.NET</PackageProjectUrl>
1414
</PropertyGroup>
1515
<ItemGroup>
1616
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="all" />

LICENCE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2025 AussieScorcher
1+
Copyright 2025 BARS
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ await client.DisconnectAsync();
2828

2929
- ✅ Basic connection and data reading
3030
- ✅ Aircraft position and motion data
31-
- ⏳ More SimVar support
31+
- ✅ Full Simvar support
3232
- ⏳ Event handling
3333
- ⏳ Better error handling
3434
- ⏳ Documentation

src/SimConnect.NET/AI/SimObject.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// <copyright file="SimObject.cs" company="AussieScorcher">
2-
// Copyright (c) AussieScorcher. All rights reserved.
1+
// <copyright file="SimObject.cs" company="BARS">
2+
// Copyright (c) BARS. All rights reserved.
33
// </copyright>
44

55
namespace SimConnect.NET.AI

src/SimConnect.NET/AI/SimObjectManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// <copyright file="SimObjectManager.cs" company="AussieScorcher">
2-
// Copyright (c) AussieScorcher. All rights reserved.
1+
// <copyright file="SimObjectManager.cs" company="BARS">
2+
// Copyright (c) BARS. All rights reserved.
33
// </copyright>
44

55
using System.Collections.Concurrent;

src/SimConnect.NET/AI/SimObjectType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// <copyright file="SimObjectType.cs" company="AussieScorcher">
2-
// Copyright (c) AussieScorcher. All rights reserved.
1+
// <copyright file="SimObjectType.cs" company="BARS">
2+
// Copyright (c) BARS. All rights reserved.
33
// </copyright>
44

55
namespace SimConnect.NET.AI

src/SimConnect.NET/Aircraft/AircraftDataManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// <copyright file="AircraftDataManager.cs" company="AussieScorcher">
2-
// Copyright (c) AussieScorcher. All rights reserved.
1+
// <copyright file="AircraftDataManager.cs" company="BARS">
2+
// Copyright (c) BARS. All rights reserved.
33
// </copyright>
44

55
using System;

src/SimConnect.NET/Aircraft/AircraftEngine.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// <copyright file="AircraftEngine.cs" company="AussieScorcher">
2-
// Copyright (c) AussieScorcher. All rights reserved.
1+
// <copyright file="AircraftEngine.cs" company="BARS">
2+
// Copyright (c) BARS. All rights reserved.
33
// </copyright>
44

55
namespace SimConnect.NET.Aircraft

src/SimConnect.NET/Aircraft/AircraftMotion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// <copyright file="AircraftMotion.cs" company="AussieScorcher">
2-
// Copyright (c) AussieScorcher. All rights reserved.
1+
// <copyright file="AircraftMotion.cs" company="BARS">
2+
// Copyright (c) BARS. All rights reserved.
33
// </copyright>
44

55
namespace SimConnect.NET.Aircraft

0 commit comments

Comments
 (0)