mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-25 11:43:06 +03:00
fix(core): documentation links
This commit is contained in:
parent
d5400a3d62
commit
8562706428
@ -988,7 +988,7 @@ pub struct ShellAllowlistConfig {
|
||||
pub execute: bool,
|
||||
/// Enable sidecar execution, allowing the JavaScript layer to spawn a sidecar command,
|
||||
/// an executable that is shipped with the application.
|
||||
/// For more information see <https://tauri.studio/en/docs/usage/guides/bundler/sidecar>.
|
||||
/// For more information see <https://tauri.studio/docs/guides/bundler/sidecar/>.
|
||||
#[serde(default)]
|
||||
pub sidecar: bool,
|
||||
/// Open URL with the user's default application.
|
||||
|
@ -101,8 +101,8 @@ macro_rules! file_dialog_builder {
|
||||
/// The blocking APIs will block the current thread to execute instead of relying on callback closures,
|
||||
/// which makes them easier to use.
|
||||
///
|
||||
/// **NOTE:** You cannot block the main thread when executing the dialog APIs, so you must use the [`tauri::api::dialog`] methods instead.
|
||||
/// Examples of main thread context are the [`tauri::App::run`] closure and non-async commmands.
|
||||
/// **NOTE:** You cannot block the main thread when executing the dialog APIs, so you must use the [`crate::api::dialog`] methods instead.
|
||||
/// Examples of main thread context are the [`crate::App::run`] closure and non-async commmands.
|
||||
pub mod blocking {
|
||||
use crate::{Runtime, Window};
|
||||
use std::path::{Path, PathBuf};
|
||||
|
Loading…
Reference in New Issue
Block a user