mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 05:10:42 -07:00
- Added a new UpdateNotification component to inform users about available updates and facilitate installation. - Integrated useAutoUpdater hook for managing update checks and installations. - Updated package.json with new build and generate scripts for release preparation and key generation. - Enhanced tauri configuration to support autoupdater with signing keys and endpoints. - Created scripts for preparing signed releases and updating icons, ensuring a streamlined workflow for asset management. - Added detailed documentation for autoupdater setup and icon update workflow.
17 lines
427 B
JSON
17 lines
427 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"identifier": "default",
|
|
"description": "Default permissions for voicebox",
|
|
"platforms": ["linux", "macOS", "windows"],
|
|
"permissions": [
|
|
"core:default",
|
|
"core:window:default",
|
|
"core:webview:default",
|
|
"core:webview:allow-internal-toggle-devtools",
|
|
"shell:allow-open",
|
|
"shell:allow-execute",
|
|
"shell:allow-spawn",
|
|
"updater:default"
|
|
]
|
|
}
|