Latest changes merged. Minor fixes to progress bar detection. Fixed my old habbit of camel case variable names. :)

This commit is contained in:
Storm Dragon
2025-08-23 12:20:05 -04:00
2 changed files with 3 additions and 3 deletions

View File

@@ -279,7 +279,7 @@ class command:
return return
# Pattern 6: Claude Code progress indicators # 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 claude_progress_match:
if current_time - self.env["commandBuffer"]["lastProgressTime"] >= 1.0: if current_time - self.env["commandBuffer"]["lastProgressTime"] >= 1.0:
self.play_activity_beep() self.play_activity_beep()

View File

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