From 208d1b82b57d258804a9affc2ae160bb1b3f44f0 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 22 Apr 2021 17:45:19 -0700 Subject: [PATCH] Show BARCAP commit ranges by default. BARCAP placement confuses a lot of people but this should make it more clear. --- changelog.md | 8 ++++++++ qt_ui/displayoptions.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index d9e6bbe9..5eef3f90 100644 --- a/changelog.md +++ b/changelog.md @@ -12,6 +12,14 @@ Saves from 2.5 are not compatible with 2.6. ## Fixes +# 2.5.1 + +## Features/Improvements + +* **[UI]** BARCAP commit ranges are now displayed by default. + +## Fixes + # 2.5.0 Saves from 2.4 are not compatible with 2.5. diff --git a/qt_ui/displayoptions.py b/qt_ui/displayoptions.py index 423fe77f..d3224a3c 100644 --- a/qt_ui/displayoptions.py +++ b/qt_ui/displayoptions.py @@ -103,7 +103,7 @@ class DisplayOptions: waypoint_info = DisplayRule("Waypoint Information", True) culling = DisplayRule("Display Culling Zones", False) actual_frontline_pos = DisplayRule("Display Actual Frontline Location", False) - barcap_commit_range = DisplayRule("Display selected BARCAP commit range", False) + barcap_commit_range = DisplayRule("Display selected BARCAP commit range", True) flight_paths = FlightPathOptions() blue_threat_zones = ThreatZoneOptions("Blue") red_threat_zones = ThreatZoneOptions("Red")