Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
[Changelog v0.15.0]
:new: **New Features**
* GEN - added crash handling
* GEN - add crash handling
* a .txt file is generated with a small stacktrace showing the line or offset, depending if the pdb file was present at the time of the crash
* a .dmp file is generated (default is a minidump - a fulldump can be generated by adding a file "create_fulldump" without file ending next to the dll)
* the pdb file is generated during the build process
* FPLN - add "handover" flag for airports where the TWR controller sends pilots over to radar
* flag is shown immediately after takeoff / airborne
* airport config values:
* "autoHandoff" (default: true) - if the pilot has to switch frequency on his own
* "hovWarningAlt" (default: 1500) - cleared altitude minus warning alt is the (actual pressure altitude) threshold after which the color switches to warning
* FPLN - add set / confirmation function for the handover flag to suppress the warning color (confirmation is synced)
* CONF - add color values for the handover flag
* "hovNeutral" (default: orange) - caution / information color
* "hovWarning" (default: red) - warning color

:lady_beetle: **Fixes**
* CONF - fix crash during coordinate conversion while parsing the .ese file for atc stations and vis points
Expand Down
1 change: 1 addition & 0 deletions airport.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ namespace vsid
//bool arrAsDep = false;
int transAlt = 0;
int maxInitialClimb = 0;
bool autoHandoff = true;
std::map<std::string, bool> settings = {};
std::map<std::string, vsid::Controller> controllers = {};
//************************************
Expand Down
3 changes: 2 additions & 1 deletion config/eddf.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"runways": "25C,25L,07C,07R,18",
"transAlt": 5000,
"maxInitialClimb": 7000,
"autoHandoff": false,
"customRules" : {"allnorth":false, "sulus18": false},
"timeMode": true,
"timezone": "Europe/Berlin",
Expand Down Expand Up @@ -926,4 +927,4 @@
}
}
}
}
}
Loading
Loading