From 91fbe888a5f66acd86f1720b5b1e4f55f1a47958 Mon Sep 17 00:00:00 2001 From: Alec Ames Date: Sat, 7 Feb 2026 11:33:03 -0500 Subject: [PATCH] (fix) added markdown and plaintext mimetype to build --- src-tauri/tauri.conf.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 4081f12..2012ecb 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -40,9 +40,17 @@ "fileAssociations": [ { "ext": ["md", "markdown"], + "mimeType": "text/markdown", "name": "Markdown File", "description": "Opens Markdown files with Markpad", "role": "Viewer" + }, + { + "ext": ["txt"], + "mimeType": "text/plain", + "name": "Text File", + "description": "Opens Text files with Markpad", + "role": "Viewer" } ], "windows": {