This file contains hidden or 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
- The `dialog` option has been removed. | |
- The `endpoints` option has been moved to `plugins > updater`. | |
## Cargo features | |
### Removed Cargo features | |
- reqwest-client: reqwest is now the only supported client. | |
- reqwest-native-tls-vendored: use `native-tls-vendored` instead. | |
- process-command-api: use the `shell` plugin instead, see instructions in the following section. |
This file contains hidden or 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
{ | |
"version": "1.2.3", | |
"notes": "See the assets to download this version and install.", | |
"pub_date": "2023-03-09T10:11:05.470Z", | |
"platforms": { | |
"windows-x86_64": { | |
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVSb21ocmFtUkR4Vy9VNk9qNWpLNXBnbC94YW5TQlRFYktOa1A5Qm9EdWRRL1JiSTFJdlZQMFY3TmFTUUhsRERLcUxJbCtZL1k5Y0gxUEpQWGs2MUdxUnRwOVl6UzI3a3dZPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjc4MzU2NDMyCWZpbGU6V2luZG93cy1zcGVjaWZpYyBOYW1lXzEuMi4zX3g2NF9lbi1VUy5tc2kuemlwCkJRdE5SSDg5RkVlMnh5R2xnNVF1ajFwODdKcGZGU2hmTEtJOTN4RW5qTm1CLzNrcEhRTWcwWWhybTNwMWo0ekZUajZka21QeDQzVzFvSVZmaHhmckFnPT0K", | |
"url": "https://api.github.com/repos/FabianLars/private-test-repo/releases/assets/101271890" | |
} | |
}, |
This file contains hidden or 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
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy | |
// SPDX-License-Identifier: Apache-2.0 | |
// SPDX-License-Identifier: MIT | |
use crate::{helpers::app_paths::tauri_dir, Result}; | |
use std::{ | |
collections::HashMap, | |
fs::{create_dir_all, File}, | |
io::BufWriter, |