From e3052754b534c2a84d9aaecf4e0c93d6f1f3feee Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sat, 31 Jan 2026 00:36:51 +0100 Subject: [PATCH] Configure file associations for text documents --- src-tauri/tauri.conf.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index f0ed9c7..1f97915 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -46,6 +46,21 @@ "icons/icon.icns", "icons/icon.ico", "icons/icon.png" + ], + "fileAssociations": [ + { + "ext": [ + "txt" + ], + "name": "Text Document", + "description": "Plain text document", + "mimeType": "text/plain", + "role": "Editor", + "rank": "Default", + "contentTypes": [ + "public.plain-text" + ] + } ] } }