Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hallidave committed Jul 7, 2022
0 parents commit 2011173
Show file tree
Hide file tree
Showing 27 changed files with 3,610 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
build
project/Packages
project/_PackageInt
project/PackageSources/html_ui/InGamePanels
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 David R. Halliday

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:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Dave's Landing Monitor

**Dave's Landing Monitor** is an in-game toolbar panel for Microsoft Flight Simulator that allows you to monitor your landing rate and other interesting statistics.

![Landing](/images/landing.png)

## Installing

Download the latest release, unzip, and copy the `hallidave-tool-landing` folder to your MSFS Community folder. Remove any old version before copying the new one.

## Building

This project is based on the [MSFS Avionics Framework](https://microsoft.github.io/msfs-avionics-mirror/). You will need to clone and build the framework code before building the Landing Monitor code.

You will need Node, npm, and git installed before building. Full details on setting up your environment are available from the MSFS Avionics Framework site.

You also need to install the [MSFS SDK](https://docs.flightsimulator.com/html/Introduction/SDK_Overview.htm). The build for the Landing Monitor assumes that you have it installed in the `C:\MSFS SDK` directory.

Once everything is installed, execute the follow commands:

```
git clone https://github.com/hallidave/daves-landing-monitor
cd daves-landing-monitor
npm install
npm run package
```

## Contributing

I'm open to feature requests and code contributions. Please file an issue for bugs, features, or code ideas.

I have added hooks to support localisation (see [panel.loc](/src/panel.loc)). If you are able to provide translations for one of the supported languages, please submit a pull request.

## License

This code is made available under the MIT License. See [LICENSE](LICENSE) for details.
Binary file added images/landing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2011173

Please sign in to comment.