From 8c878b3718d718e7ff748221e4602a919be00d02 Mon Sep 17 00:00:00 2001 From: Dennis Landmann Date: Sun, 19 Apr 2026 20:02:44 +0200 Subject: [PATCH] fix(capabilities): allow stronghold operations --- apps/desktop/src-tauri/capabilities/default.json | 10 +++++++++- apps/desktop/src-tauri/tauri.conf.json | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src-tauri/capabilities/default.json b/apps/desktop/src-tauri/capabilities/default.json index abd2736..598cab3 100644 --- a/apps/desktop/src-tauri/capabilities/default.json +++ b/apps/desktop/src-tauri/capabilities/default.json @@ -15,6 +15,14 @@ "updater:allow-check", "updater:allow-download", "updater:allow-install", - "updater:allow-download-and-install" + "updater:allow-download-and-install", + "stronghold:default", + "stronghold:allow-initialize", + "stronghold:allow-load-client", + "stronghold:allow-create-client", + "stronghold:allow-save", + "stronghold:allow-get-store-record", + "stronghold:allow-save-store-record", + "stronghold:allow-remove-store-record" ] } diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index f789440..05a609a 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "ChatApp", - "version": "0.3.1", + "version": "0.3.2", "identifier": "com.meinname.chatapp", "build": { "beforeDevCommand": "pnpm vite:dev",