feat: add post-export action setting (keep/archive/trash)

This commit is contained in:
Linus Rath
2026-05-22 15:36:15 +02:00
parent e3f6ae874d
commit 58e4a3d117
20 changed files with 137 additions and 0 deletions
+2
View File
@@ -247,6 +247,7 @@ interface SettingsState {
filenameLowercase: boolean;
filenameStripDiacritics: boolean;
filenameCollapseSeparators: boolean;
postExportAction: 'keep' | 'archive' | 'trash';
// Advanced
debugMode: boolean;
@@ -441,6 +442,7 @@ const DEFAULT_SETTINGS = {
filenameLowercase: false,
filenameStripDiacritics: false,
filenameCollapseSeparators: true,
postExportAction: 'keep' as 'keep' | 'archive' | 'trash',
// Advanced
debugMode: false,