From 8ad3996b69adabf2b74c955db734a848b29b2fa4 Mon Sep 17 00:00:00 2001 From: Vasil Zakiev Date: Sat, 25 Apr 2026 18:48:58 +0300 Subject: [PATCH] Fix macOS markdown file associations --- src-tauri/tauri.conf.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2012ecb..3dfeb77 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -40,17 +40,22 @@ "fileAssociations": [ { "ext": ["md", "markdown"], + "contentTypes": [ + "net.daringfireball.markdown", + "public.markdown" + ], "mimeType": "text/markdown", "name": "Markdown File", "description": "Opens Markdown files with Markpad", - "role": "Viewer" + "role": "Editor" }, { "ext": ["txt"], + "contentTypes": ["public.plain-text"], "mimeType": "text/plain", "name": "Text File", "description": "Opens Text files with Markpad", - "role": "Viewer" + "role": "Editor" } ], "windows": {