mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-09 12:36:07 +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>
131 lines
1.4 KiB
Markdown
131 lines
1.4 KiB
Markdown
## Default Permission
|
|
|
|
This permission set configures which kind of
|
|
updater functions are exposed to the frontend.
|
|
|
|
#### Granted Permissions
|
|
|
|
The full workflow from checking for updates to installing them
|
|
is enabled.
|
|
|
|
#### This default permission set includes the following:
|
|
|
|
- `allow-check`
|
|
- `allow-download`
|
|
- `allow-install`
|
|
- `allow-download-and-install`
|
|
|
|
## Permission Table
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Identifier</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:allow-check`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the check command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:deny-check`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the check command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:allow-download`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the download command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:deny-download`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the download command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:allow-download-and-install`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the download_and_install command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:deny-download-and-install`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the download_and_install command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:allow-install`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Enables the install command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
|
|
`updater:deny-install`
|
|
|
|
</td>
|
|
<td>
|
|
|
|
Denies the install command without any pre-configured scope.
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|