-
-
Notifications
You must be signed in to change notification settings - Fork 167
fix(about): say what actually failed when an update errors, in one sentence #440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1107,6 +1107,7 @@ export interface StenoaiBridge { | |
| updateDownloadProgress: Subscribe<UpdateProgressEvent>; | ||
| updateDownloaded: Subscribe<UpdateDownloadedEvent>; | ||
| updateError: Subscribe<UpdateErrorEvent>; | ||
| updateErrorCleared: Subscribe<void>; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: About now subscribes to this new event, but the E2E IPC mock does not expose Prompt for AI agents |
||
| googleAuthChanged: Subscribe<{ connected: boolean }>; | ||
| outlookAuthChanged: Subscribe<{ connected: boolean }>; | ||
| shortcutStartRecording: Subscribe<ShortcutStartRecordingEvent>; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: A successful download can still leave a previous failure banner visible.
update-downloadedclears main state but does not notify the mounted About tab's error state, so emitupdate-error-clearedwhen this transition clears an error (or clear/invalidate it inoffDownloaded).Prompt for AI agents