Summary
Let users customize the saved output filename, instead of always <originalname>_redacted.<ext>.
Today
The save-to-folder flow writes the output as <originalname>_redacted.txt — the original base name + _redacted (see saveToFolder() in ui/src/main.ts). This is a good default and should stay the default (works with zero input).
Request
Optionally let the user:
- edit the base name (the part before
_redacted), and/or
- change the suffix — append their own marker instead of
redacted (e.g. _clean, _shared, _safe).
Notes
- Future work — not now.
- Keep it local-only (no network), consistent with the rest of the app.
Summary
Let users customize the saved output filename, instead of always
<originalname>_redacted.<ext>.Today
The save-to-folder flow writes the output as
<originalname>_redacted.txt— the original base name +_redacted(seesaveToFolder()inui/src/main.ts). This is a good default and should stay the default (works with zero input).Request
Optionally let the user:
_redacted), and/orredacted(e.g._clean,_shared,_safe).Notes