mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
f209b2f23c
* chore(deps): update tauri monorepo to v2.6.0 * Regenerate api-iife.js * Bump rust tauri * Tweak all examples to match the new features * Bump workspace min tauri version * Bump `@tauri-apps/api` to ^2.6 * Add change file * Update lock file * missing `"` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Tony <legendmastertony@gmail.com>
155 lines
1.6 KiB
Markdown
155 lines
1.6 KiB
Markdown
## Default Permission
|
|
|
|
This permission set configures which
|
|
shell functionality is exposed by default.
|
|
|
|
#### Granted Permissions
|
|
|
|
It allows to use the `open` functionality with a reasonable
|
|
scope pre-configured. It will allow opening `http(s)://`,
|
|
`tel:` and `mailto:` links.
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `allow-open`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:allow-execute`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the execute command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:deny-execute`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the execute command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:allow-kill`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the kill command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:deny-kill`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the kill command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:allow-open`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the open command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:deny-open`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the open command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:allow-spawn`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the spawn command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:deny-spawn`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the spawn command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:allow-stdin-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the stdin_write command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`shell:deny-stdin-write`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the stdin_write command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|