- Add missing build.rs (required by tauri_build crate) - Add capabilities/default.json (Tauri 2 mandatory permissions system) - Add default app icons (32x32, 128x128, 128x128@2x, ico, png) - Upgrade from pre-release 2.0.0-rc to stable Tauri 2.x - Fix tauri.conf.json: use frontendDist instead of deprecated devPath/distDir - Add tauri script to package.json
10 lines
198 B
JSON
10 lines
198 B
JSON
{
|
|
"$schema": "../gen/schemas/desktop-schema.json",
|
|
"identifier": "default",
|
|
"description": "Capability for the main window",
|
|
"windows": ["main"],
|
|
"permissions": [
|
|
"core:default"
|
|
]
|
|
}
|