-
-
Notifications
You must be signed in to change notification settings - Fork 166
/
CHANGELOG.txt
6398 lines (5397 loc) · 383 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Numbers (#) refer to GitHub issues.
For example: #3 is https://github.com/albar965/littlenavmap/issues/3.
This text is partially Markdown, hence sometimes strange formatting.
==>>=============================================================================
# Version 2.8.9
## Notes
**This is a stable release of Little Navmap fixing crashes and other bugs.**
**X-Plane: Update your Little Xpconnect installation as well with the included version 1.0.34 to
fix wrong TAS and GS speeds.**
**macOS users: Keep in mind that you have to clear the quarantine flag for Little Xpconnect on update. See
[Clearing the Quarantine Flag on macOS]
(https://www.littlenavmap.org/manuals/littlenavmap/release/latest/en/XPCONNECT.html#clearing-the-quarantine-flag-on-macos).**
This version is ready for the latest MSFS and for X-Plane 12. See important known issues below for MSFS.
The online user manual is available here:
[Little Navmap - User Manual](https://www.littlenavmap.org/manuals/littlenavmap/release/latest/en/).
See here for user manual downloads:
[User Manuals - Stable Releases](https://albar965.github.io/manuals.html#stable).
A big thank you to all who reported bugs and issues!
Special thanks to Max Hille for finding the issue with Xpconnect on Linux and X-Plane 12!
## Known Issues MSFS
**Active pause in MSFS breaks the connection and does not allow to reconnect even when restarting *Little Navmap*.
This is a MSFS issue. Use the key `Esc` for normal pause or click the toolbar button for pause to avoid problems.
Note that you can also start active pause the usual way (keyboard or joystick) but end it with the MSFS toolbar button.
This keeps the connection intact.**
**The active pause problem was fixed with the MSFS SU12 Beta version.**
**Loading a flight plan containing user defined points (coordinates) results in some positions of the plan
placed at the North Pole. Note this was fixed with the MSFS SU12 Beta.**
See also [MSFS Common Problems](https://albar965.github.io/littlenavmap-faq.html#problems-msfs) in the FAQ.
## Changes from 2.8.8 to 2.8.9
### Map Display
* AI aircraft with unreliable on-ground status injected by third party traffic tools are now
corrected if there is vertical speed or ground speed. This helps to avoid flying aircraft
hidden wrongly on the map.
* Changed speed display for AI and user aircraft. Now showing ground speed on ground in map display
labels and progress tab for AI if user and AI aircraft are moving. Disabled wrong IAS and TAS display
labels for user aircraft on ground.
* Fixed en-route holdings drawn with the wrong turn direction.
* Added turn direction for en-route holding tooltips and information window.
* Fixed issue where map highlights remained after putting a dock widget like search to the bottom
of dock stack.
* Added margins to map display text labels to improve readability.
* Airport diagrams now shown earlier on map when zooming in.
* Updated map themes on [Little Navmap Downloads - Map Themes](https://www.littlenavmap.org/downloads/Map%20Themes/).
* Removed unneeded Marble map theme legend files.
* Increased maximum number of entries in map position history.
* More adjustments and fixes for better drawing.
### Flight Plan and Export
* Corrected loading of flight plan routing network which was incomplete due to new MSFS RNAV waypoint type.
This resulted in calculated flight plans using too many direct-to instead of airways when using
`Do not use Navigraph Database` in the scenery library menu. #1001
* Better error checking for flight plan export file pattern in multi export options. Added
validation and error messages for export file patterns and file extensions. A file pattern with
errors is now always highlighted red also if not selected for export.
* Now resetting empty file patterns in multiexport to default values on loading. This fixes issues where
the configuration was not migrated correctly from earlier versions and exported files used a flight
plan name without file extension.
* Now falling back to correct default file pattern on flight plan export if the pattern in the
multi export options dialog is empty.
* Fixed crash when loading X-Plane FMS files with negative airport elevation. Made flight plan
loading more robust in general.
* Increased maximum length for user waypoint names to 80 characters in MSFS PLN flight plan file export
to allow descriptions.
* Fixed inconsistencies for course display in flight plan leg in table, aircraft progress,
elevation profile and the map.
* Removed not applicable inbound and outbound VOR course display in aircraft progress at procedure legs.
### User Interface
* Fixed issue where the wrong runways were fetched for ILS in information and tooltips. As a
result ILS were declared `Offset to Runway` showing the wrong runway heading.
* Corrected airport ident to use displayed value from map and flight plan table in context menus
to avoid confusing mismatches of airport idents between map and context menu. Now additionally
showing display ident and internal ident in airport search context menu.
* Added menu item `Tools` -> `Files and Directories` -> `Show Map Installation Directory`
to ease installation of new map themes.
* Changed reading of MSFS scenery library. Now also reading manifest content type `AIRCRAFT` since
aircraft add-ons may contain airports as well.
* Fix for stacked dock windows appearing in the wrong order after un-minimizing main window. #1000
* Updated user manual for customization, map theme installation, SimBrief changes and cold weather
altitude correction.
* Fixed elevation profile losing display reverting to a gray area when resetting view after vertical zoom.
* Fixed issues with dock windows moved to the wrong screen on multi screen configurations.
* Added AirNav.com to airport link list.
* Fixed regression where red warning text for empty database was missing in status bar.
* Several other small text fixes.
### Weather
* Fixed several issues with warnings about X-Plane weather files. Now warning
if simulator is not installed or weather files are missing. Dialogs can be disabled.
* Adapted to read new winds aloft file names from X-Plane which were introduced with version 12.04b2.
* Made reading of GRIB wind files more error tolerant. Checking for wrong or empty files now.
### X-Plane and Little Xpconnect Version 1.0.35 and 1.0.36
* Fixed ground speed used wrongly as true airspeed for X-Plane AI and multiplayer aircraft.
Ground speed is now correctly shown.
* Added fix from Max Hille (https://github.com/maxhille) to avoid X-Plane 12 issues
with light colors and ignored exclusion regions on Linux after installing plugin. #983
==<<=============================================================================
# Version 2.8.8
## Changes from 2.8.7 to 2.8.8
### Flight Plan and Export
* Added export option for X-Plane CIVA Navigation System. Files exported as FMS 3 split up into
partitions containing nine waypoints. Procedure waypoints are included.
* Fixed issues with multi export file selection that appeared when using a file export pattern
without suffix.
* Made loading of X-Plane FMS plans more tolerant for invalid files. Now throwing error messages in
case of invalid coordinates to avoid crash.
* Adjustments for flight plan calculation for better results with less airway usage at the right of
the slider `Prefer`.
* Updated NAT track download address to new `https://www.notams.faa.gov/common/nat.html` to avoid error
messages on download. Addresses can be changed in `little_navmap.ini` in section `[Track]`.
* Fixed wrong flight plan read while importing from SimBrief and changing plan with download dialog open.
### Flight Plan Route Description
* Corrected reading of a flight plan having SID and STAR with the same transition waypoint
resulting in incomplete plans from SimBrief import. Example: MUHA EPMAR3 MAXIM SNDBR2 KMIA KMCO. #975
* Fixed crash while typing when entering incomplete route description texts.
* Fixed several issues when reading and writing a route description using space separated transitions.
This avoids error messages when reading flight plans from SimBrief.
* Flight plan cruise altitude is now adjusted to adhere to airway and procedure altitude
restrictions. This avoids creating new plans with initial restriction errors.
* Tear off drop down menu in route description dialog can now be reopened again after closing dialog.
### Map Display and Elevation Profile
* Fixed issue with disappearing aircraft trail and other map lines near anti-meridian. #976
* Now suppressing VASI display in elevation profile if approach has a large offset course compared
to the runway. The VASI slope cannot be used in these cases.
* Omitting wrong X-Plane runway shoulders for water runways on map.
* Moved flight plan table colors to `little_navmap_mapstyle.ini`. Added new section `[FlightPlan]`.
### Online Flying
* Fixed crash because of missing icon for unknown aircraft types. #973
* Added white aircraft icon with question mark for invalid aircraft types like online boats.
* Now ignoring boat traffic in aircraft shadow resolution.
* Adjusted shadow aircraft detection online vs. simulator to better resolve duplicate aircraft when
flying online.
### Scenery Library
* Fixed several issues with new X-Plane 12 runway surface types. Runways were previously dropped
for unknown surface types. This resulted in airports registered without runways and having a
helipad symbol assigned in some cases.
* Now reading new X-Plane asphalt and concrete textures.
* Corrected behavior when clicking `Load Scenery Database` which could open the loading dialog
again and crash while still waiting for confirmation on database usage.
* Fixed issue with mapped drives on Windows where add-on airports were not detected if having MSFS
installed on such a drive. #967
### User Interface and Other
* Corrected window order when using `Keep in Foreground` to avoid blocked or hidden dialogs after
loading scenery library.
* The `Keep in Foreground` status is now applied to all non-blocking dialog windows like 'Flight
Plan Calculation' and 'Flight Plan Route Description' to avoid windows being blocked and hidden
by main window.
* Added userpoint type `Addon` to highlight airports with a yellow ring similar to detected add-on
airports.
* Fixed issue where bearing and distance to user aircraft was not updated in tooltips for parking spots.
* Fixed regression where tooltips disappeared quickly when being connected to a simulator.
* Now correcting logbook time if off by one day at arrival due to wrong time and date jumps while
flying (caused by warp or similar tools). This previously resulted in negative travel times.
* Corrected logbook and userpoint import functions where first row in CSV files caused an error message
if using quoted names.
* Fix for wrong names in options dialog. #965
* Fixes to avoid crash with duplicate ids when adding userpoints or logbook entries after import. #985
* Solved issue with crash when doing undo or redo quickly using keyboard shortcut repeats.
* Wind calculation functions are now more tolerant for invalid coordinates to avoid crashes.
* Corrections to statusbar and time. Time now correctly suffixed with `UTC`.
* Updated program translation for Brazilian Portuguese by Ricardo.
* Disabled Spanish translation since it did not receive updates for a long time and has other issues.
* Reverted workaround for MSFS unreliable on-ground indication for user aircraft.
* Updated SimConnect.dll to latest from SDK version 0.20.5.0.
* Corrected SSL library in Linux package to fix SSL handshake errors. Now adding correct OpenSSL
version 1.1 to the folder `lib` to avoid loading of a wrong system library version 3. #974
### X-Plane and Little Xpconnect
* Fixed wrong date and timezone calculation in Little Xpconnect 1.0.34 which resulted in wrong or
jumping endurance and turn anticipation display.
=================================================================================
# Version 2.8.7
## Changes from 2.6.19 to 2.8.7
This list describes the most obvious changes. See below for details and changes between the beta
and candidate releases as well as links to the related user manual chapters.
See [Screenshots of new 2.8 Features](https://albar965.github.io/pages/28/littlenavmapscreens.html)
for an overview of new features.
### Help
* Updated English user manual:
[Little Navmap - User Manual](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/).
Adapted to new features and is available online as well as included as PDF
(see [User Manuals - Stable Releases](https://albar965.github.io/manuals.html#stable)).
* Now automatically using HTML help files from folder `help/en` or other supported language codes
if installed. Download help from
[User Manuals - Stable Releases](https://albar965.github.io/manuals.html#stable)
and extract the zip file to `.../Little Navmap/help/en` to use the offline user manual.
* Added changelog item to help menu.
* Removed built-in map legend. This now available either online or in the included PDF user manual.
See online
[Little Navmap User Manual - Legend](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/LEGEND.html)
or from the menu `Help`.
### Windows Builds
**There are two builds of Little Navmap and Little Navconnect for Windows available now:**
* **Windows 64-bit:** For MSFS and all X-Plane versions.
* **Windows 32-bit:** For FSX and Prepar3D.
See [Little Navmap User Manual - Windows Builds](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/INSTALLATION.html#windows-builds) for details.
### User Interface
* Changed status bar to avoid growing and shrinking fields. Now keeping maximum size to avoid
jitter.
* Added option to hide dock window title bars in menu `Window` -> `Show Dock Window Title Bars`.
Uncheck this to get more screen space inside the main window.
* Added airport transition level for X-Plane and Navigraph data.
* Resetting flight plan table, airport search result table and navaid search result table view on
update now to avoid display of wrong columns or missing table columns.
* Added introductory dialog for first time users explaining further steps.
* Swapped `Shift+F11` and `F11` functions. Fullscreen is now `F11` since this is a common shortcut
for most applications.
* All actions for `None` and `All` in toolbar button dropdown menus can now toggle between states
none, all and last selected state. Click `All` a second time to revert to the previous selection.
#762
* Now checking for base folder structure (`Little Navmap Documents`) only on first startup to avoid
issues when changing language. Folder structure can be now be created manually from `Tools` ->
`Create Directory Structure`. #782
* Added warning message when using scenery library with not matching simulator in connect dialog.
This shows up when connecting to MSFS with an active X-Plane scenery database, for example.
* Separated tab bar reset into a new menu item `Reset Tabs to Default` in menu `Window`. Window
layout and and tabs can now be reset separately.
* Added show map cache to menu `Tools` -> `Files`.
* Changed symbol for nautical miles to correct official `NM`.
* Fixed issues with macOS aliases. These can now be used in X-Plane `Custom Scenery` to link to
add-ons.
* Default style on macOS after first start is now Fusion and also reset on update since the default
macOS style is too clunky.
* Removed check for wrong macOS version on program startup to avoid false warnings.
* Raised macOS minimum requirement to 10.13 High Sierra.
* Updated French translations by Patrick.
* Updated Italian translations by Flavio.
### Flight Plan
* Flight plan is now saved to a temporary file on exit. This avoids the question dialog when
exiting the program after building or modifying a plan. This means: You create a new flight plan
from scratch or modify a present one and Little Navmap will not ask to save the plan when exiting.
Instead the same plan is reloaded on next startup. Continue editing without saving and the changed
plan will be reloaded on next startup. You can still use the `Save` and `Save as` functions as
before. You can disable this behavior on options page `Startup and Updates` by disabling `Load last
used flight plan`. The temporary plan is stored in the settings folder as file
`little_navmap.lnmpln` besides `little_navmap.ini`.
* `Avoid overwriting Flight Plan with not matching departure and destination` now enabled per
default on new installations. You can disable this setting in the options dialog on page `Flight
Plan` if needed.
* Now allowing arbitrary points for departure and destination. This covers all navaids, user points
and coordinates which can be used as start or destination points. The elevation profile is now
calculated without error messages for these kind of flight plans. Note that you have to install the
GLOBE elevation data to get the correct elevations for these points. You have to use the `Add to
flight plan` menu item, the `Append to flight plan` menu item, the keyboard shortcut
`Ctrl+Alt+Click` (add), `Shift+Alt+Click` (append) or the drag and drop flight plan editing to add
arbitrary points as departure or destination. Note these flight plans are not supported by all
simulators or add-ons.
* Magnetic course of flight plan legs is now always calculated using normal magnetic declination.
VOR calibrated declination is ignored. Other options to display VOR inbound and outbound magnetic
course are now available. See
[Little Navmap User Manual - Magnetic Declination](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/MAGVAR.html).
* Added optional inbound and outbound VOR course to aircraft progress display considering VOR
calibrated declination. This is always shown when the next or last waypoint is a VOR, VORDME or
VORTAC. Enable this in `Tools` -> `Aircraft progress display options` -> branch `Next Waypoint` ->
`Leg course from` and `Leg course to`.
* Removed `Ignore declination of VOR and other radio navaids` on options page `Flight Plan` since
there are other ways to display VOR inbound and outbound magnetic course now.
* Removed merging (e.g. grouping of multiple deletions into one) of same changes for undo or redo
in flight plan operations. Now single changes can be undone.
* Changed flight plan calculation to a normal non-blocking dialog window also to avoid the short
popping up on start. Note that these non-blocking dialog windows can be put behind the main window
and show up in the Windows or other task lists as well.
* Highlight of active in flight plan table can be disabled in options on page `Flight Plan`. #785
* Removed forced assignment of runways if no parking is set for departure. An airport can now be
used as a departure point. Improved parking selection dialog.
* Related navaids in flight plan table and other places in program now use notation with prefix `R`
like `R090` for radials instead of `°M`.
* Changed flight plan table column selection to use configuration tree dialog including a
description column. Can also be used to disable header and footer labels in flight plan window.
* Added optional footer line in flight plan table which shows distance, time and fuel for selected
flight plan entries. Flight plan table options (menu `Tools` -> `Flight Plan Table Options` ->
`Flight Plan Table Footer` -> `Selected Flight Plan Legs`) allows to disable selection and error
footer lines in flight plan table. #892
* Added safe altitude display in flight plan table (orange line in elevation profile). Can be
enabled in menu `Tools` -> `Flight Plan Table Options`.
* Users can now select departure runway with extended runway center line instead of a SID. See
context menus or menu `Flight Plan´ -> `Select Departure Runway`.
* An offset angle relative to runway heading can now be selected when choosing the destination
runway (former `Create Procedure` function). See context menus or menu `Flight Plan´ -> `Select
Destination Runway`.
* Added departure and approach runway information to flight plan table header.
* Added header label in flight plan tab `Remarks` showing used scenery data, cycle and performance.
* Added column for related/recommended fixes and navaids in flight plan table. These are now shown
with frequency and radial in flight plan table, elevation profile and other places.
* Added latitude/longitude columns shown in user selected format to flight plan table as well as
CSV and HTML export.
* Improved start position selection dialog (menu `Flight Plan` -> `Select a Start Position`). Added
runway dimensions, runway facilities and surface. User can now search for airline codes or other
texts in the parking, runway or helipad entries. Airport center is always added as an option.
* Improved error messages in tooltip on error label in flight plan tab. Removed redundant error
label in elevation profile. Showing aircraft performance related warnings now in flight plan table
footer which can be disabled.
* Fixed issue where flight plan was centered on startup despite using `On startup show on map` ->
`Last position` or `Home position` on options page `Startup and Updates`.
* Resetting flight plan table, airport search result table and navaid search result table view on
update now to avoid display of wrong columns or missing table columns.
### Flight Plan Export
* Added functionality to fetch and send flight plans to/from SimBrief to file menu. Use menu `File`
-> `Open Flight Plan from SimBrief` and `Export Flight Plan to SimBrief`. Follow instructions in
dialog windows. #828
* Waypoints resulting from departure and runway selection (extended runway center line and other
points) are omitted in all export formats for complex aircraft and third-party Garmin units to
avoid issues when loading. Use the aircraft FMS or MCDU to select a departure or approach runway.
* Several fixes for X-Plane flight plan export.
* Added file patterns for multi export which can be set for each format. Improved context menu,
keyboard shortcuts and error messages in multi export options. Added bottom label in multi export
options dialog to preview export file path and name as well as other information. #751
* Added reading support for Garmin GFP flight plan files. These are text files containing the
flight plan after the prefix `FPN/RI:`.
* `File` -> `Export Options` are now unchecked for this update since these often cause issues. Now
showing warning dialog if these options are enabled.
* Added X-Plane 12 FMS export which uses the same X-Plane format but a different folder.
* Added separate export option for PMDG MSFS aircraft.
* Added flight plan export for iFly Jets Advanced Series. #817
* Added GFP flight plan export for TDS GTNXi and MSFS IniBuilds Airbus.
* Added support for MSFS parking suffix to allow reloading LNMPLN flight plans. Example EDDG, 18A
to 18E. MSFS still cannot load parking positions with suffix. Not even its own ones.
* Changes to Flightgear plan import and export: Waypoints with missing coordinates can now be
loaded. Waypoints marked `<type>basic</type>` can now be exported and loaded. Thanks a lot to
[colingeniet](https://github.com/flpduarte) at Github for the fix
* Changed GPX loading and saving to use millisecond accuracy. Fixed timezone issues when loading
and saving GPX. GPX loading now reads both millisecond and second ISO date. #907
### Weather
* Added hours and colored warning for more than 3 (orange) and more than 6 hour (red) old METAR
reports in airport tab, airport tooltip and airport weather tab.
* Added warning message if X-Plane 11 or 12 weather files cannot be read due to broken weather
paths or wrong simulator base path in dialog `Load Scenery Library`.
### Wind
* Resetting wind source to NOAA on update now. Adjust as needed.
* Changed user interface for wind for more consistency. Removed wind checkbox from fuel report
header and added drop down box which mirrors the items in menu `Weather` -> `Wind source`.
* Added manual wind layer altitude to fuel report which is independent from flight plan cruise
altitude.
* Improved indications in wind tooltip to show manually selected wind altitude layer, altitude of
shown wind barbs and flight plan cruise altitude indication.
* Performance optimizations. Wind barbs now drawn sparse at higher zoom levels and near the poles.
#940
* Added more layers for winds aloft download to get more accuracy at lower levels.
* Changed wind altitude levels in toolbar button to use a slider instead of fixed altitude levels.
### Aircraft Performance
* The default performance profile which is created when using menu `Aircraft` -> `New Aircraft
Performance` is now based on the data of a Cessna C172 and named `Example Performance Profile`.
This avoids warning messages when using a new performance profile. Adapt it to your aircraft as
needed.
* Added menu item `Aircraft` -> `Warning for Aircraft Type Mismatch` which is disabled per default.
This allows to enable warnings if aircraft type in the performance profile does not match the one
in the simulator aircraft. Recommended is to disable this when flying MSFS and keep it enabled for
X-Plane and all other simulators.
* Warning for performance file aircraft type mismatch is reset to off on update since MSFS causes
issues with this function. You can enable this again in menu `Aircraft` -> `Warning for aircraft
type mismatch` if you use another simulator than MSFS.
* More warnings for invalid fuel flow and speed values in aircraft performance: `Climb fuel flow is
smaller than cruise fuel flow`, `Descent fuel flow is higher than cruise fuel flow`, `Climb speed
is higher than cruise speed` and `Descent speed is much smaller than cruise speed`.
* Added simulator type to aircraft performance file, edit dialog and display.
* Added display for average wind at cruise level only in tab `Fuel Report`.
### Options
* Reordered pages in options and added new pages `Map Display Keys`, `Map Display Labels`, `Map
Display User` and `Map Display Flight Plan`. Removed page `Map Display 2`.
* Added new page `Map Display Labels` in options and moved tree settings from `Map Display 2` to
it. Setting description is now shown in a second column instead of tooltips.
* Added option for tooltips in menus which is off per default. Option to show tooltips in whole
program is now reset to enabled. Menu tooltips are not available on macOS.
* Now keeping the undock map window state to avoid a messed up layout after a restart when using
`Restore Defaults`. The `Allow to undock the map window` option on page `Map` is now unchanged
after resetting settings.
* Added option to disable startup image screen (splash screen) on page `Startup and Updates`.
* Added option to change main toolbar icon size on page `Display and Text`.
### Undo / Redo
* Added progress dialog for long undo operations in logbook and userpoints which can happen when
undoing the import or a bulk change of large datasets. Operations can be canceled now.
* Fixed performance issues for undo and redo operations resulting in frozen program.
* Fixed issue where import of logbook or userpoint data resulted in a messed up undo state.
* Logbook and userpoint undo function assigned to `Ctrl+Shift+Z` and `Ctrl+Shift+Y` to avoid
overlap with flight plan undo/redo functions.
### Updates
* Simplified update notification dialog to show only a HTML message from the server. Removed
`Download in Browser` button as well as header information and `Download now` to simplify release
management.
* *Little Navmap* now checks regularily for updates instead of only on startup. Update notification
messages might now also pop up after startup except when being connected to a simulator or having a
dialog window open. Note that the update check across the network is still done only every day,
week or month.
### X-Plane 11 and 12
* Scenery library data compilation adapted for X-Plane 12 folder changes. #867
* *Little Navmap* now requires `x-plane_install_11.txt` and `x-plane_install_12.txt` as well as a
valid installation path to be recognized. Run the X-Plane installer or X-Plane once to create this
file so that *Little Navmap* can detect the simulator.
* Now supporting X-Plane 12 METAR airport weather reports and GRIB winds aloft by checking folder
`Output/real weather`. Added folder configuration in options on page `Weather Files`. #926
* Fixed issue where X-Plane 12 add-on airports were not read from `Custom Scenery` in some cases.
Airports not included in the file `scenery_packs.ini` are now treated like enabled. #927
* Corrected userpoint export and import to and from `user_fix.dat` for X-Plane 11 and 12. Exporting
and importing waypoint flags and full name for X-Plane 12 now. The Little Navmap Userpoint tags
field is used to load and save the ID of the airport terminal area as well as the waypoint type.
Waypoint type is based on ARINC 424 field type definition 5.42. Spaces are replaced by underscores
'_' for userpoint tags. Alternatively double quotes and spaces can be used. Example tags:
`EDDF V__` is a VFR Waypoint at airport EDDF, `ENRT "I "` is an en-route unnamed charted intersection
and `ENRT R__` is an en-route named intersection.
### Little Xpconnect
See also
[Little Navmap User Manual - Little Xpconnect](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/XPCONNECT.html).
* Fixed an issue where ICAO type and other values of AI and multiplayer aircraft were messed up.
* Now detecting on-ground status correctly for AI or multiplayer aircraft.
* Little Xpconnect now adds items in the X-Plane plugin menu to set AI fetch and more performance
options.
* Adapted new weather and environment datarefs to X-Plane 12 changes.
* Little Xpconnect now supports Apple Silicon / ARM 64 machines. The Zip file contains two folders
`Little Xpconnect arm64` for Apple Silicon and newer Intel machines and `Little Xpconnect x86` for
older Intel machines. See link above. #923
* Changed Little Xpconnect build for Linux to use a minimum of shared library dependencies.
### Map Display User Interface
* Replaced map theme and map projection boxes in toolbar with a new tool button having a drop down
menu (dark globe icon on toolbar). This saves space in the toolbar area. Removed `Map Projection
and Theme Toolbar`.
* Combined the three toolbar buttons for map detail into one drop down menu button on the toolbar
containing a slider and reset menu item. Moved map detail level settings from menu 'View' to menu
`Map`.
* Added toolbar drop down menu button for a more detailed airport display filter including runway
length, type, procedures and light status.
### Map Display
* Added turn prediction line for user aircraft also having tick marks for one NM distance. This is
disabled by default in menu `View` -> `Show Turn Flight Path`.
* Added option to display selected autopilot altitude range as a dark green arc on the map. Enable
this in menu `View` -> `Show selected altitude range`. Note that some add-on aircraft misuse the
autopilot altitude which results in a wrong display. #247
* Added display on map and elevation profile for GLS/RNP paths. Showing information for these
virtual approach paths in tooltip and info window now. Enable RNP/GPS path display in menu `View`
-> `Navaids` -> `Show GLS/RNP Approach paths` or elevation profile context menu.
* New option to show aircraft endurance as circle around user aircraft. This is based on reserves,
contingency, fuel load, current fuel flow and ground speed (but not wind). Enable in menu `View` ->
`Show Aircraft Endurance`. Note that this shows the endurance based on current fuel flow. Numbers
on range ring shown in warning and error colors depending on endurance. #341
* Added forced navaid display for recommended navaids from used procedures including indication in
tooltip. This means that a related VOR being part of a procedure in a flight plan is shown even if
the display of VOR is disabled. This allows to have a clean map with only flight plan related
navaids.
* Added display of MSA (minimum sector altitude) diagrams on map similar to range rings. Can be set
by user in map, flight plan table, airport search and navaid search context menus. Enable display
of MSA icons in menu `View` -> `Navaids` -> `Show MSA Sectors`. Enable a larger scaled display by
right clicking on the MSA icon and selecting `Add MSA diagram at ...`. #498
* Added option for MSA diagram transparency and text size in options on page `Map Display User`.
* Added display of en-route holdings to map display, map context menu, information display and
tooltips. Old saved user defined holdings are discarded. #363
* Unpaved, heliports and water airports are now shown smaller than paved airports depending on zoom
level. Now adjusting airport label font size depending on zoom and minor airport status. Minor
airports have a smaller symbol and text on higher zoom distances.
* Added button and menu item to disable online aircraft and simulator AI separately. #754
* Added new range ring dialog allowing to add a label, change the coordinates or change the color.
Removed range ring setting from options dialog since radii can now be changed when adding rings.
* Display of a feature category is now automatically enabled on the map after adding an user
feature like range rings.
* Added function to zoom and jump to defined coordinates on map in main menu and map context menu.
See map context menu `More` -> `Jump to Coordinates ...`.
* Added `Go to User Aircraft` menu item in menu `Map` and toolbar plus keyboard shortcut
`Ctrl+PgUp`.
* Added tooltip for distance measurement lines showing distance, label, initial and final course.
* Outbound and inbound VOR calibrated declination now ignored per default in normal route leg
course shown in the moving labels.
* AI aircraft label visibility is now adjusted depending on aircraft ground status and details.
* Final course for measurement lines at VOR is now calculated based on VOR calibrated declination.
* Fixed issue where ILS heading was offset after switching scenery library databases.
* Moved whole map configuration to a file `maplayers.xml` embedded in program. This can be
overridden in configuration folder for a detailed map display customization. Program is watching
overloaded file in settings folder for changes and updates map accordingly. See file
`maplayers.xml` and embedded comments for more information here:
[maplayers.xml](https://github.com/albar965/littlenavmap/blob/release/2.8/resources/config/maplayers.xml).
### Map Display Options
* Added option on page `Map Display Labels` to show start and end course labels also considering
VOR calibrated declination. Useful when flying VOR to VOR. Labels are shown at a fixed position at
start or end of flight plan legs.
* Added option to show compass rose with true heading. See options on page `Map Display Labels` in
branch `Compass Rose`.
* Outline color (old and default style in *Little Navmap*) and semi-transparent (like SkyVector)
for flight plan can now be selected. Option for semi-transparent flight plan line also affects
logbook preview and procedure preview. See options on page `Map Display Flight Plan`.
* New options for semi-transparent highlight circles. Colors for highlights can now be changed.
Page `Map Display User`.
* Added option to disable magenta highlight for active leg in options on page `Map Display Flight
Plan` in checkbox `Highlight active leg`. #785
* Added optional label `Distance and Bearing from User` for AI aircraft. This can be enabled in
options on page `Map Display Labels`, branch `AI, Multiplayer and Online Client Aircraft` in line
`Distance and Bearing from User`. #708
* Added options for measurement lines thickness, color and font size. These can be changed in
options on page `Map Display User` -> `Distance measurements`.
* Added size option for highlight marks in options on page `Map Display User` -> `Circle Size`.
* Added option for navaid radial display when drawing a measurement line from a VOR, VORTAC or NDB.
Default is off. Enable this in options on page `Map Display Labels` branch `Measurement Lines`. #860
* Added options for display of user and AI aircraft coordinates on map. Page `Map Display Labels`.
#700
* Added AGL label option for user aircraft on map. See `Map Display Labels`.
* Added optional display of red ice warning labels on map (not in elevation profile) on page `Map
Display Labels`. #745
* Wind pointer is now kept when disabling aircraft display. Wind pointer can be disabled separately
in options on page `Map Display Labels` in branch `Top of Map`.
* Split delete options for user feature types like range rings or measurement lines for all feature
types in menu `Map` and `Reset all for a new Flight`. Holdings and traffic patterns can now deleted
independently, for example.
* New option for verbose tooltips on page `Map`. Default is enabled. Disable this to get brief
tooltips when hovering the mouse cursor over the map.
* Option to hide user feature tooltips (traffic patterns, measurement lines and others) on page
`Map` added.
* Added option to reverse all mouse wheel functions in map and elevation profile in options dialog
on page `User Interface`.
### Map Display Themes
* Added MapTiler, MapBox and Thunderforest map themes plus required API key and token assignments.
See
[Little Navmap User Manual - Map Display Keys](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/OPTIONS.html#map-display-keys)
for more information on using these maps.
* Themes requiring keys or tokens are marked with a `*` in menu and dropdown box. A dialog window
with more information is shown when selecting a map theme needs more information. See options on
page `Map Display Keys` for key or token input.
* Fixed graphical "smearing" issues with maps not covering the whole view like the
Norway N50 Topo Map.
### DGML for Map Theme Developers
* All themes are added to the drop-down list by name as extracted from the DGML files. Now checking
visibility flag in DGML. Themes having this set to `false` are excluded. All themes are now shown
without distinction between user or stock.
* Added option to pass key/value pairs to replace in DGML map configuration files. This is needed
for online maps requiring API keys or tokens. These keys are collected from DGML map configuration
files and can be edited in options on page `Map Display Keys`. #85
* Added new key `{language}` in DGML for custom map request URLs. This allows to fetch Google map
tiles using the user interface language instead of getting map labels in random languages. Append
`&hl={language}` to the download URL path in Google map themes to force map tiles in the user
interface language or `&hl=en` to force all maps in English. This fixes issue with random
language used for labels in some maps. Note that you have to clear the tile cache to see the
changes. See
[User Manual - Disk Cache](https://www.littlenavmap.org/manuals/littlenavmap/release/2.6/en/FILES.html#disk-cache).
* Added commented example for DGML configuration including new keys in
`data/maps/earth/example/example.dgml`.
### Airspaces
* Changed loading of user airspaces now by showing a separate loading dialog similar to the scenery
library dialog. Removed user airspace paths and patterns from options dialog. #490
* Added reader for IVAO and VATSIM JSON boundaries. You can now read IVAO JSON and VATSIM GeoJSON
files. Currently you can find IVAO boundaries here:
[Airspace Boundaries](https://www.littlenavmap.org/downloads/Airspace%20Boundaries/).
VATSIM boundaries are available here
[VATSPY Data Project](https://github.com/vatsimnetwork/vatspy-data-project).
* Added two sliders in airspace toolbar button dropdown menu for minimum and maximum altitude in
500 ft steps to show overlapping airspaces. #612
### Elevation Profile
* Added display of required (by approaches) or calculated optional vertical descent flight path
angle to elevation profile map and tooltip. Calculated vertical angle is shown with transparent
background and required angle is shown with yellow background. #803
* Showing optional vertical track line from user aircraft on the elevation profile. Enable this by
checking `Show Vertical Track` in the elevation profile context menu. #247
* Added options to display vertical path angle and speed to reach the next waypoint at the
calculated altitude. Can be shown in elevation profile (`Tools` -> `Elevation Profile Display
Options`) as aircraft label and in aircraft progress tab (`Tools` -> `Aircraft Progress Display
Options`). Made aircraft labels in elevation profile optional.
* Vertical paths in approaches are now considered like altitude restrictions and enforced while
calculating profile. Error messages can appear if altitude restrictions related to a vertical path
are violated by a too low cruise altitude.
* Added option to vertically and horizontally zoom to aircraft and destination point in elevation
profile. Enable this in context menu of the elevation profile (`Zoom to aircraft and destination`).
#868
* Added top header to elevation profile optionally showing course, distance and related navaid.
Optional flight plan line labels added to elevation profile. Profile labels can now be set in
options dialog. Added context menu item to disable top label in profile.
* Added display options for profile on options page `Map Display Labels` in branch `Elevation
Profile`.
* Added optional display of altitude and speed restriction labels in elevation profile. #601
* Moved elevation profile display settings from page `Map Display` in options dialog into a
separate configuration dialog. Added menu item in `Tools`, elevation profile context menu and a
button in elevation profile window for configuration options.
* Fixed several cases of wrong elevation profile errors where profile could not be calculated.
### Flight Plan Route Description
* Flight plan route description window is now non-blocking and allows to continue working with the
main window while opened. Note that the non-blocking dialog window can be put behind the main
window and shows up in the Windows or other task lists. Update description by clicking `Load from
Flight Plan` after changing plan on the map or flight plan table.
* Flight plan route description string is now saved independently from flight plan and reloaded on
startup.
* Changes done by clicking `Create Flight Plan` can now be undone in the tab `Flight Plan`.
* Enabled undo/redo in the description input field. Use keyboard shortcuts or the context menu to
undo changes.
* Removed `Read Route Description` button in route description window and replaced its
functionality with a delayed automatic update. Results updated while typing.
* Removed `IFR`/`VFR` selection box from route description window. The flight plan type is now
taken from the tab `Flight Plan`.
* Extended waypoint coordinate parser for all ARINC 424 Code Convention full degree waypoint
formats like `57N30`, `5730E` or `57S30`. Flight plan route description can now read these
waypoints independent if they are in the navdata or not.
* Added separate help area in route description window. Open or close the help area with the blue
help button at the right.
* Added new options to route string dialog: `Write STAR and transition reversed` (format
`TRANS.STAR` or `TRANS STAR`) and `Write SID/STAR and transition space separated`.
* Now reading both space and dot separated notation `SID TRANS`, `SID.TRANS` as well as
`STAR TRANS`, `TRANS STAR`, `STAR.TRANS` and `TRANS.STAR` in route description.
* Fixed issues where airways were wrongly detected in route description.
### Online Flying #761 and #754
* Completely reworked removal of duplicate aircraft (shadow aircraft) coming from both the
simulator and the online network. Registration/callsign match function is now replaced by a
distance and altitude match. There is no need to have matching registration/callsign values now.
This applies to the user aircraft as well as multiplayer aircraft.
* Added note for simulator and online shadow aircraft in tooltip and information window.
* Showing connected online network in main window title bar now.
* Moved option `Remove duplicate aircraft from online service and simulator` to page `Online
Flying` in options dialog.
### Logbook
* Added footer line to logbook search which shows summed up values for travel times and distances
for selected logbook entries.
* Added simulator and real travel time to logbook search result table.
* Logbook entry dialog is now pre-filled with all data (flight plan, performance and trail) from
current session. This can be removed by pressing reset.
* Added cleanup function for logbook which removes invalid logbook entries that can result from
pattern work or repeated approches. Main menu `Logbook` -> `Cleanup Logbook Entries` or logbook
table context menu.
### Flying and User Aircraft
See
[Little Navmap User Manual - User Aircraft Centering](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/AIRCRAFTCENTER.html)
for more explanations.
* Removed confusing move/zoom gesture when on ground with simple aircraft centering. Now keeping
current zoom value when jumping back to user aircraft.
* Added option to modify zoom for aircraft and next waypoint. Options on page `Simulator Aircraft`
input field `Zoom Distance`.
* Added zoom out on takeoff option. See `Options` on page `Simulator Aircraft` checkbox `Zoom out
on takeoff`.
* Added distance option to zoom in on aircraft touchdown in options on page `Simulator Aircraft`.
* Added separate timeout to jump back to current active leg for flight plan table on page
`Simulator Aircraft`.
### Search
* Added random destination finder in airport search tab to select a random departure and arrival
from the current search result. Enable this by checking `Random Flight` in the drop down menu
button. Thanks to [u-an-i](https://github.com/u-an-i) for implementing this.
* Added undo/redo functionality to logbook and userpoint search tabs. Can be accessed in main menu,
context menu or shortcuts. The undo/redo information is saved in the database and permanent between
restarts. Warning dialogs before deleting entries removed. #280
* Added literal search using double quotes for navaid and airport idents. Example: Search for "TAU"
including the double quotes to find exactly the two VORs with this id instead of waypoints like
`TAURA`.
* Idents in airport or navaid search can now be separated by space to search for a list. Example:
Enter `LIRF EDDF` without quotes to find these two airports.
### Procedures
* Added procedure preview showing all available procedures of an airport on the map. Enable with
new button in airport search tab on the top or from `Preview all procedures` context menu. View is
updated automatically when changing search parameters in procedure tab.
* Procedures can now be selected into flight plan by right-clicking on a waypoint or other fix of a
procedure preview in the map.
* Procedures and custom arrival and departures can now be deleted from the map context menu when
right-clicking on a flight plan procedure waypoint.
* Added name search filter in procedure search tab. This filters the procedures by the content of
the field `Ident`. The parameter is saved between sessions.
* Added separate procedure filters for STAR and all approach types like ILS, RNAV or VORDME.
* Added indicator for transitions `(T)` in procedure search tab for SID, STAR and approaches.
Number of transitions is shown in the remarks column.
* Added display of aircraft category and required navigation performance indicator to procedures
and procedure legs in flight plan table and procedure search.
* The vertical angle now shown in procedure leg restrictions in flight plan and procedure search.
#803
* Changed display of missed approaches in procedure preview. Missed approaches can now also be
disabled for the procedure preview on the toolbar or in view menu `Show missed approaches`.
### User Aircraft Progress
* Added user aircraft progress tab configuration using a tree control which allows to select data
fields to show. The dialog also shows a description for each progress data field. Open this
configuration dialog by clicking on the small button on the top right in the progress tab (gear
symbol) or by using the context menu. #768
* Added new data fields fuel load, gross weight, real time, top of climb and autopilot selected
altitude to aircraft progress.
* Showing vertical path and required descent rate in aircraft progress in descent and approach
phase.
* Endurance in progress tab now considers reserves and contingency fuel.
* Added options to display speeds, altitude and vertical speed in other than selected default
units. This is for indicated and actual altitude as well as indicated, ground and vertical speed in
the progress display tab. Enable this in menu `Tools` -> `Aircraft Progress Display Options`. #656
### Information
* Now showing the canonical path (i.e. symbolic links, Windows shortcuts and Windows junctions
resolved to the real path) for airport add-ons in information display. This means that the real
installation location of linked add-ons using symbolic links, shortcuts, junctions or aliases is
shown now.
* Added [ChartFox](https://chartfox.org) to airport information in link section. You have to be
logged into ChartFox to see charts.
* Added radial and distance to related navaid in waypoint information for special waypoints like
`D095J` which is 95°M and 10 nm from VOR SUM.
* Added display of transition level to information airport and weather tab. Only X-Plane or
Navigraph.
* Showing detailed waypoint description now if available (Navigraph and X-Plane). Examples are
`Named`, `RNAV`, `VFR` or `Off Airway`. #321
### Userpoints
* A userpoint category is now automatically enabled after adding one on the map. This helps to
avoid confusion when a userpoint is hidden right after adding.
* Added separate symbol size and text options for userpoints. See page `Map Display User`.
* Updated stock icon translations. Translated userpoint types are now shown in tooltip and
information tab. Note that translated types cannot be used in search.
### Scenery Library Database
* Now allowing a `no simulator` state of the program instead of always showing a X-Plane
installation. This avoids the confusing X-Plane state despite not having it installed.
* Now supporting symbolic links (all OS), Windows junctions and Windows shortcuts (`.lnk` files) as
well as macOS aliases in MSFS `Community` and X-Plane `Custom Scenery` folders.
* Fixed exclude file, exclude directory and exclude add-on recognition to work with symbolic links,
shortcuts or junctions.
* Scenery library database can now be loaded in background which allows the user to plan a flight
while loading. Progress dialog is not blocking access to the program now and can be brought into
background. Loading dialog now gives an option to use or discard a database after loading.
* Now notifying user about wrong scenery library modes after loading. Considers MSFS and Navigraph
special cases. Allows user to change to the recommended mode after loading.
* Now showing a warning dialog on startup and database switch if user has a stale simulator
database loaded. The warning shows if the scenery library database was created with a previous
*Little Navmap* version or if it is older than two months.
* Now adding suffix `... reload advised` to database in scenery library menu if a database was
loaded with a previous version of *Little Navmap* or if database was loaded two months ago. This is
a reminder for users to reload after simulator updates or updates of _Little Navmap_.
* Added `Validate Scenery Library Settings` in menu `Scenery Library` which helps to set the
correct scenery library mode.
* Now hiding artificial waypoints created internally for procedure or airway resolution from
search, information and tooltips.
* ILS and GLS/RNP information is now always taken from Navigraph database except when using `Do not
use Navigraph Database`. As a result ILS course might probably not match for older scenery data or
airport add-ons. Select `Do not use Navigraph Database` temporarily if this is an issue.
* Corrected issues with runways designated by true course like BGTL. Approaches were missing runway
assignments and could not be resolved before. #870
#### MSFS
* Changed handling for MSFS file `Content.xml` for SU10 and fixed crash when reading new file
layout. Corrected layer ordering for MSFS scenery library to adhere to priorities in file
`Content.xml`.
* Fixed issue where airport city names were missing since MSFS SU11 beta. Note that country names
are not available from the simulator.
* Changed fuel detection for MSFS. An airport now gets Avgas and Jet A availability assigned if it
has a fuel pad (which has no fuel type information). Now showing only `Fuel` for MSFS if both are
available. #918
* Now ignoring invalid waypoints with empty ICAO region code and invalid type as they appear in
some MSFS add-on sceneries. This fixes the exception `NOT NULL constraint failed:
tmp_waypoint.region ...` when loading. #910
* Now also loading BGL files from missions to catch respective airports.
* Fixed bug where Little Navmap would only read and display a single transition from add-on
(Community) SIDs and STARs, despite these procedures actually having more than one transition. This
happens when using the latest MSFS SDK (SU9 or later). Thanks a lot to
[flpduarte](https://github.com/flpduarte) at Github for the fix.
* Added notification message for encrypted MSFS add-ons when reading the scenery library. This
helps to identify unreadable airports where the layout in *Little Navmap* will not match the layout
in the simulator.
### Command Line #431
Start program with the help option `-h` from a terminal to see available command line options.
See
[Little Navmap User Manual - Command Line Options](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/COMMANDLINE.html)
for details.
* Added scripts for portable execution: `Little Navmap Portable.cmd` (Windows), `Little Navmap
Portable.command` (macOS) and `Little Navmap Portable.sh` (Linux). All settings, databases and
cache folders are saved to the installation folder when starting the program with these scripts.
See
[Little Navmap User Manual - Portable Execution](https://www.littlenavmap.org/manuals/littlenavmap/release/2.8/en/INSTALLATION.html#portable-execution).
=================================================================================
# Version 2.8.6.rc2
## Changes from 2.8.5.rc1 to 2.8.6.rc2
### General
* Fixed case of wrong elevation profile error if restrictions at end of STAR conflicts with restrictions at
beginning of an approach transition. Example: EHAM, arrive using STAR NORK2A via ARTIP and R18R.
* Now checking regularily for updates instead of only on startup. Update notification messages
might now also pop up after startup except when being connected to a simulator or having a dialog
window open. Not that the update check across the network is still done only every day, week or
month.
* Changed display of missed approaches in procedure preview. Missed approaches can now also be
disabled for the procedure preview on the toolbar or in view menu `Show missed approaches`.
* Fixes for approach transition and STAR procedures when drawing flight plan.
* Corrected display in airport information for missing paths.
### Little Xpconnect Version 1.0.33
* Added menu item `Load AI Aircraft Information` which allows to disable the background loading of
`.acf` files.
* Fixed an issue where ICAO type and other values of AI and multiplayer aircraft were messed up.
* Now detecting on-ground status correctly for AI or multiplayer aircraft.
=================================================================================
# Version 2.8.5.rc1
## Changes from 2.8.4.beta to 2.8.5.rc1
### Flight Plan, Export and Procedures
* Update flight plan saving to files. Changes are now kept in a background file without asking for
save. This is now also true if a plan was already saved to a file. You can disable this behavior on
options page `Startup and Updates` by disabling `Load last used flight plan`. The temporary plan is
stored in the settings folder as file `little_navmap.lnmpln` besides `little_navmap.ini`.
* Corrected export format MSFS IniBuilds A310 and updated default export paths.
* Fixed issues where the table layout in multi export options was lost at times.
* `Avoid overwriting Flight Plan with not matching departure and destination` now enabled per
default on new installations. You can disable this setting in the options dialog on page `Flight
Plan` if needed.
* Fixed regression where waypoint altitude was missing in X-Plane FMS flight plan export.
* Fixed safe altitude not updated in flight plan table if elevation profile window is hidden. Now
always calculating elevation data in background.
* Improved airport matching between simulator and navdata when selecting procedures. Example:
Scandinavian Mountains (ICAO ESKS) was not found since it has an internal X-Plane ident of XESV5
but its ICAO code is equal to the internal X-Plane ident ESKS for the closed Strängnäs Airbase.
Now relying more on coordinates when checking for airports using official ids.
* Fixes for flight plan export. Now saving display ident (ICAO, IATA or others) instead of X-Plane
internal for airport into LNMPLN files now. This eases exchange of plans with other simulators.
* Fixed export for X-Plane FMS to use ADEP/ADES keywords when using procedures at airport.
* Corrected display for procedures usable with all or parallel runways in procedure search tab.
The tree display now shows a list of runways or `All` again instead of a wrong single runway.
* Adjusted warning for descent fuel flow to allow slightly more fuel flow than in cruise phase.
### Map
* Adjusted airport drawing. Corrected size of minor airport symbols at higher zoom levels. Airports
are now shown up to zoomlevels of 8000 km for Spherical and 10000 km for Mercator projection.
* Smaller font for airport labels on large zoom levels.
* Adjusted size of airport add-on highlight on map.
* Now showing top of climb and top of descent on map and in elevation profile even if very close to
departure or destination.
### Weather
* Weather reading for X-Plane 12 fixed which failed to recognize new files if the weather folder
was intially empty. This affected METAR and GRIB (winds aloft) files.
* Added warning message if X-Plane 11 or 12 weather files cannot be read due to broken weather
paths or wrong simulator base path in dialog `Load Scenery Library`.
* Changes in display of wind barbs to avoid flooding the map with symbols. More optimizations to
speed up map rendering at high zoom levels.
### User Interface
* Fixed wrong display of airways in tooltip and information tab on NDB and VOR having no airways
attached.
* Changed status bar to avoid growing and shrinking fields. Now keeping maximum size to avoid jitter.
* Now keeping the undock map window state to avoid a messed up layout after a restart when using
`Restore Defaults`. The `Allow to undock the map window` option on page `Map` is now unchanged
after resetting settings.
* Simplified update notification dialog to show only HTML message from server. Removed `Download in
Browser` button as well as header information and `Download now`.
* Warning for performance file aircraft type mismatch is now reset to off on update since MSFS
causes too many issues. You can enable this again in menu `Aircraft` -> `Warning for aircraft type
mismatch` if you use another simulator than MSFS.
* Corrected logic for edit and save aircraft performance to avoid wrong questions to save file.
* Added changelog item to help menu.
* Enabled missing tooltips with full path on aircraft performance recent menu.
* Updated French translations by Patrick.
* Updated Italian translations by Flavio.
### Little Xpconnect Version 1.0.32
* Adapted new weather and environment datarefs to X-Plane 12 changes.
=================================================================================
# Version 2.8.4.beta
## Changes from 2.8.3.beta to 2.8.4.beta
* Flight plan is now saved to a temporary file on exit if created from scratch. This avoids the question
dialog when exiting the program after building a new plan. This means: You create a new flight plan from
scratch and Little Navmap will not ask to save the plan when exiting. Instead the same plan
is reloaded on next startup. Continue editing without saving and the changed plan will be
reloaded on next startup. You can still use the `Save` and `Save as` functions as before.
* Now allowing arbitrary points for departure and destination. This covers all navaids, user points
and coordinates which can be used as start or destination points. The elevation profile is now
calculated without error messages for these kind of flight plans. Note that you have to install the
GLOBE elevation data to get the correct elevations for these points. You have to use the `Add to
flight plan` menu item, the `Append to flight plan` menu item, the keyboard shortcut
`Ctrl+Alt+Click` (add), `Shift+Alt+Click` (append) or the drag and drop flight plan editing to add
arbitrary points as departure or destination. Note these flight plans are not supported by all
simulators or add-ons.
* Fixed for label placement on flight plan line. Label is now placed aside if the options
`Transparent line` or `Text background` are not used in options on page `Map Display Flight Plan`.
* Fixed performance issue when loading X-Plane 12 METAR and GRIB (wind) files resulting in temporary
program freezes. Now only reading the latest three METAR and the latest GRIB file.
* Now removing area/country codes from X-Plane country names.
* Now also taking userpoint names into flight plan waypoint if ident is missing.
* Reverted change "MSA, holdings and MORA grid are now shown when using MSFS and scenery library
mode `Do not use Navigraph Database`". The scenery library mode `Do not use Navigraph Database` now
strictly fetches all data from the simulator database which results in certain features being
disabled in this mode.
* Updated Italian translation by Flavio Borgna.
* More small text, translation and user interface fixes.
=================================================================================
# Version 2.8.3.beta
## Changes from 2.8.2.beta to 2.8.3.beta
### Flight Plan Export
* Fixed duplicate waypoints in some formats like FMS 3 with departure or destination runway selected.
* Fixed dot in GFP export separating waypoints wrongly.
* Waypoints resulting from departure and runway selection (extended runway center line and other points)