File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
1313### Changed
1414- ** Internal Optimization:** Refactored core analysis commands to improve stability and make future feature updates safer.
15+ - ** Error Handling:** Improved detection and handling of MediaInfo-related issues.
16+ - ** Windows:** Added a startup warning if the input file path exceeds the OS limit (255 characters).
17+ - ** UI:** Removed misleading "(Slow)" label from export step and improved color contrast in scan advisory.
1518
1619## [ v7.0.0-beta4] - 2026-01-01
1720### Changed
Original file line number Diff line number Diff line change @@ -1679,7 +1679,7 @@ def cmd_check_all(self, max_depth: int = 1) -> None:
16791679 def _print_simple_fel_advisory (self ) -> None :
16801680 """Print the Simple FEL advisory block."""
16811681 print ("=" * 96 )
1682- print (f"{ CYAN } *{ RESET } { BOLD } ADVISORY: UNDERSTANDING 'SIMPLE' (CYAN) VERDICTS{ RESET } " )
1682+ print (f"{ RED } *{ RESET } { BOLD } ADVISORY: UNDERSTANDING 'SIMPLE' (CYAN) VERDICTS{ RESET } " )
16831683 print ("-" * 96 )
16841684 print (f"{ BOLD } What is 'Simple FEL'?{ RESET } " )
16851685 print ("It means the scan detected no active brightness expansion over the Base Layer. This" )
@@ -2260,7 +2260,7 @@ def cmd_inspect(self, filepath: Path) -> None:
22602260 return
22612261
22622262 # 3. Export Metadata
2263- spinner = Spinner ("Exporting Metadata (Slow) ... " )
2263+ spinner = Spinner ("Exporting Metadata... " )
22642264 spinner .start ()
22652265
22662266 ret , _ , _ = self .media .run_logged (
You can’t perform that action at this time.
0 commit comments