Skip to content

Commit efa42fe

Browse files
committed
UI: Minor polish and Changelog update
- Removed misleading '(Slow)' label from export step. - Changed scan advisory asterisk to red for better visibility. - Updated CHANGELOG.md for v7.0.0-beta5.
1 parent 77c65fc commit efa42fe

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

dovi_convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)