|
@@ -252,7 +252,7 @@ impl BundleTarget {
|
|
|
|
|
|
/// Configuration for AppImage bundles.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#appimageconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#appimageconfig>
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
@@ -265,7 +265,7 @@ pub struct AppImageConfig {
|
|
|
|
|
|
/// Configuration for Debian (.deb) bundles.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#debconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#debconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -295,7 +295,7 @@ where
|
|
|
|
|
|
/// Configuration for the macOS bundles.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#macconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#macconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -353,7 +353,7 @@ fn minimum_system_version() -> Option<String> {
|
|
|
|
|
|
/// Configuration for a target language for the WiX build.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#wixlanguageconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#wixlanguageconfig>
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
@@ -384,7 +384,7 @@ impl Default for WixLanguage {
|
|
|
|
|
|
/// Configuration for the MSI bundle using WiX.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#wixconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#wixconfig>
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
@@ -565,7 +565,7 @@ impl Default for WebviewInstallMode {
|
|
|
|
|
|
/// Windows bundler configuration.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#windowsconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#windowsconfig>
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
@@ -698,7 +698,7 @@ pub struct FileAssociation {
|
|
|
|
|
|
/// The Updater configuration object.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#updaterconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#updaterconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -757,7 +757,7 @@ impl Default for UpdaterConfig {
|
|
|
|
|
|
/// Configuration for tauri-bundler.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#bundleconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#bundleconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -862,7 +862,7 @@ pub struct WindowEffectsConfig {
|
|
|
|
|
|
/// The window configuration object.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#windowconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#windowconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -1011,7 +1011,7 @@ pub struct WindowConfig {
|
|
|
///
|
|
|
/// ## Platform-specific:
|
|
|
///
|
|
|
- /// - **Windows**: If using decorations or shadows, you may want to try this workaround https://github.com/tauri-apps/tao/issues/72#issuecomment-975607891
|
|
|
+ /// - **Windows**: If using decorations or shadows, you may want to try this workaround <https://github.com/tauri-apps/tao/issues/72#issuecomment-975607891>
|
|
|
/// - **Linux**: Unsupported
|
|
|
#[serde(default, alias = "window-effects")]
|
|
|
pub window_effects: Option<WindowEffectsConfig>,
|
|
@@ -1306,7 +1306,7 @@ impl FsScope {
|
|
|
|
|
|
/// Config for the asset custom protocol.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#assetprotocolconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#assetprotocolconfig>
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
@@ -1321,7 +1321,7 @@ pub struct AssetProtocolConfig {
|
|
|
|
|
|
/// Security configuration.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#securityconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#securityconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -1398,7 +1398,7 @@ impl Default for PatternKind {
|
|
|
|
|
|
/// The Tauri configuration object.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#tauriconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#tauriconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, Default, PartialEq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -1539,7 +1539,7 @@ impl<'de> Deserialize<'de> for WindowsUpdateInstallMode {
|
|
|
|
|
|
/// The updater configuration for Windows.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#updaterwindowsconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#updaterwindowsconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Serialize, Deserialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -1552,7 +1552,7 @@ pub struct UpdaterWindowsConfig {
|
|
|
|
|
|
/// Configuration for application tray icon.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#trayiconconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#trayiconconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, Default, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -1667,7 +1667,7 @@ pub enum HookCommand {
|
|
|
|
|
|
/// The Build configuration object.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#buildconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#buildconfig>
|
|
|
#[skip_serializing_none]
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
@@ -1802,7 +1802,7 @@ impl<'d> serde::Deserialize<'d> for PackageVersion {
|
|
|
|
|
|
/// The package configuration.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#packageconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#packageconfig>
|
|
|
#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
@@ -1926,7 +1926,7 @@ pub struct Config {
|
|
|
|
|
|
/// The plugin configs holds a HashMap mapping a plugin name to its configuration object.
|
|
|
///
|
|
|
-/// See more: https://tauri.app/v1/api/config#pluginconfig
|
|
|
+/// See more: <https://tauri.app/v1/api/config#pluginconfig>
|
|
|
#[derive(Debug, Clone, Default, PartialEq, Eq, Deserialize, Serialize)]
|
|
|
#[cfg_attr(feature = "schema", derive(JsonSchema))]
|
|
|
pub struct PluginConfig(pub HashMap<String, JsonValue>);
|