Allow disabling transcription history for privacy#121
Open
lucyfarnik wants to merge 2 commits intoStarmel:masterfrom
Open
Allow disabling transcription history for privacy#121lucyfarnik wants to merge 2 commits intoStarmel:masterfrom
lucyfarnik wants to merge 2 commits intoStarmel:masterfrom
Conversation
Add a "Save Transcription History" toggle under a new Privacy section in transcription settings. When disabled, audio files and transcription text are deleted immediately after use instead of being saved to disk. The transcription still works for pasting into the active window.
Starmel
reviewed
Mar 5, 2026
|
|
||
| func addFileToQueue(url: URL) async { | ||
| guard AppPreferences.shared.saveTranscriptionHistory else { | ||
| print("Transcription history disabled, skipping file queue") |
Owner
There was a problem hiding this comment.
Please add a dialog with an option to enable transcription saving.
Instead of silently returning when transcription history is disabled, show an NSAlert dialog asking the user if they want to enable transcription saving. If they confirm, enable the preference and proceed with queuing the file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan