-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: spotlight window on prod builds (#470)
* - refactor: permissions per window * - fix: vite entrypoint * - cicd: version bump
- Loading branch information
1 parent
2ecd6c3
commit 22eea30
Showing
6 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
apps/shinkai-desktop/src-tauri/capabilities/shinkai-node-manager.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"identifier": "shinkai-node-manager", | ||
"description": "permissions that were migrated from v1", | ||
"local": true, | ||
"windows": [ | ||
"shinkai-node-manager" | ||
], | ||
"permissions": [ | ||
"core:default", | ||
"core:window:allow-start-dragging", | ||
"log:default" | ||
], | ||
"commands.allow": [ | ||
"shinkai_node_is_running", | ||
"shinkai_node_get_last_n_logs", | ||
"shinkai_node_get_options", | ||
"shinkai_node_set_options", | ||
"shinkai_node_spawn", | ||
"shinkai_node_kill", | ||
"shinkai_node_remove_storage", | ||
"shinkai_node_set_default_options", | ||
"shinkai_node_get_ollama_api_url", | ||
"shinkai_node_get_default_model" | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
apps/shinkai-desktop/src-tauri/capabilities/spotlight.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"identifier": "spotlight", | ||
"description": "permissions for spotlight window", | ||
"local": true, | ||
"windows": [ | ||
"spotlight" | ||
], | ||
"permissions": [ | ||
"core:event:allow-listen", | ||
"core:event:allow-unlisten", | ||
"core:event:allow-emit", | ||
"log:default" | ||
], | ||
"commands.allow": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters