From 5a20b23c0082a0d8b2e26ac4096b4f456bb0446d Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 12 Dec 2025 16:39:43 -0300 Subject: [PATCH] Update PROMPT.md --- PROMPT.md | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/PROMPT.md b/PROMPT.md index 446ea06..50a119b 100644 --- a/PROMPT.md +++ b/PROMPT.md @@ -212,29 +212,34 @@ use image; // Icon handling ## Tauri Configuration (tauri.conf.json) -Key settings: +Key settings (Tauri v2 format): ```json { + "$schema": "https://schema.tauri.app/config/2", + "productName": "General Bots", + "version": "6.1.0", + "identifier": "br.com.pragmatismo.botapp", "build": { - "devPath": "ui", - "distDir": "ui" + "devUrl": "http://localhost:3000", + "frontendDist": "../botui/ui/suite" }, - "package": { - "productName": "General Bots", - "version": "6.1.0" - }, - "tauri": { - "allowlist": { - "all": false, - "dialog": { "all": true }, - "fs": { "all": true, "scope": ["$HOME/**"] } + "app": { + "security": { + "csp": null }, "windows": [{ "title": "General Bots", "width": 1200, - "height": 800 + "height": 800, + "resizable": true, + "fullscreen": false }] + }, + "bundle": { + "active": true, + "targets": "all", + "icon": [] } } ``` @@ -350,4 +355,4 @@ cargo test - **Platform abstractions** - Use cfg for platform code - **Security** - Minimal allowlist in tauri.conf.json - **Zero warnings** - Clean compilation required -- **No cargo audit** - Exempt per project requirements \ No newline at end of file +- **No cargo audit** - Exempt per project requirements