Update project files

This commit is contained in:
Thales Maciel 2026-02-10 11:01:36 -03:00
parent ad66a0d3cb
commit a17c234360
14 changed files with 952 additions and 529 deletions

View file

@ -28,12 +28,8 @@ class Tray:
def _icon_path(self, state: str) -> str:
if state == "recording":
return str(self.base / "recording.png")
if state == "editing":
return str(self.base / "recording.png")
if state == "transcribing":
return str(self.base / "transcribing.png")
if state == "edit_processing":
return str(self.base / "processing.png")
if state == "processing":
return str(self.base / "processing.png")
return str(self.base / "idle.png")
@ -41,12 +37,8 @@ class Tray:
def _title(self, state: str) -> str:
if state == "recording":
return "Recording"
if state == "editing":
return "Editing"
if state == "transcribing":
return "Transcribing"
if state == "edit_processing":
return "Edit Processing"
if state == "processing":
return "AI Processing"
return "Idle"