Minor updates to progress bar detection.

This commit is contained in:
Storm Dragon
2025-08-23 12:16:10 -04:00
parent b3d73102fc
commit 7f473b72a7
2 changed files with 2 additions and 2 deletions

View File

@@ -279,7 +279,7 @@ class command:
return
# Pattern 6: Claude Code progress indicators
claude_progress_match = re.search(r'^[·✶✢*]\s+\w+[…\.]*\s*\(esc to interrupt\)\s*$', text)
claude_progress_match = re.search(r'^[·✶✢*]\s+[\w\s-]+[…\.]*\s*\(esc to interrupt\)\s*$', text)
if claude_progress_match:
if current_time - self.env["commandBuffer"]["lastProgressTime"] >= 1.0:
self.play_activity_beep()

View File

@@ -4,6 +4,6 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributors.
version = "2025.08.21"
version = "2025.08.23"
codeName = "testing"
code_name = "testing"